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-52831-master-emptynames' of git://github.com/mudrd8…
…mz/moodle
- Loading branch information
Showing
6 changed files
with
77 additions
and
1 deletion.
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
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
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,50 @@ | ||
@core @core_user | ||
Feature: Both first name and surname are always available for every user | ||
In order to easily identify and display users on Moodle pages | ||
As any user | ||
I need to rely on both first name and surname are always available | ||
|
||
Scenario: Attempting to self-register as a new user with empty names | ||
Given the following config values are set as admin: | ||
| registerauth | email | | ||
| passwordpolicy | 0 | | ||
And I am on site homepage | ||
And I follow "Log in" | ||
And I follow "New Account" | ||
When I set the following fields to these values: | ||
| Username | mrwhitespace | | ||
| Password | Gue$$m3ifY0uC&n | | ||
| Email address | mrwhitespace@nas.ty | | ||
| Email (again) | mrwhitespace@nas.ty | | ||
And I set the field "First name" to " " | ||
And I set the field "Surname" to " " | ||
And I click on "Create my new account" "button" | ||
Then I should see "Missing given name" | ||
And I should see "Missing surname" | ||
|
||
Scenario: Attempting to change own names to whitespace | ||
Given the following "users" exist: | ||
| username | firstname | lastname | email | | ||
| foobar | Foo | Bar | foo@bar.com | | ||
And I log in as "foobar" | ||
And I follow "Profile" in the user menu | ||
And I follow "Edit profile" | ||
When I set the field "First name" to " " | ||
And I set the field "Surname" to " " | ||
And I click on "Update profile" "button" | ||
Then I should see "Missing given name" | ||
And I should see "Missing surname" | ||
|
||
Scenario: Attempting to change someone else's names to whitespace | ||
Given the following "users" exist: | ||
| username | firstname | lastname | email | | ||
| foobar | Foo | Bar | foo@bar.com | | ||
And I log in as "admin" | ||
And I navigate to "Browse list of users" node in "Site administration > Users > Accounts" | ||
And I follow "Foo Bar" | ||
And I follow "Edit profile" | ||
When I set the field "First name" to " " | ||
And I set the field "Surname" to " " | ||
And I click on "Update profile" "button" | ||
Then I should see "Missing given name" | ||
And I should see "Missing surname" |