forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'MDL-61203_m35v3' of git://github.com/sbourget/moodle
- Loading branch information
Showing
3 changed files
with
48 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
@core @core_badges @_file_upload | ||
Feature: Award badges based on user profile field | ||
In order to award badges to users based on completion of their user profile | ||
As an admin | ||
I need to add profile completion criteria to badges in the system | ||
|
||
@javascript | ||
Scenario: Award badge for a uploading a profile picture. | ||
Given the following "users" exist: | ||
| username | firstname | lastname | email | | ||
| user1 | First | User | first@example.com | | ||
And I log in as "admin" | ||
And I navigate to "Add a new badge" node in "Site administration > Badges" | ||
And I set the following fields to these values: | ||
| Name | Site Badge | | ||
| Description | Site badge description | | ||
| issuername | Tester of site badge | | ||
And I upload "badges/tests/behat/badge.png" file to "Image" filemanager | ||
And I press "Create badge" | ||
And I set the field "type" to "Profile completion" | ||
And I set the field "id_field_picture" to "1" | ||
And I press "Save" | ||
And I press "Enable access" | ||
And I press "Continue" | ||
And I log out | ||
When I log in as "user1" | ||
And I follow "Profile" in the user menu | ||
And I click on "Edit profile" "link" in the "region-main" "region" | ||
And I upload "badges/tests/behat/badge.png" file to "New picture" filemanager | ||
And I press "Update profile" | ||
Then I should see "Site Badge" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters