diff options
author | Greta Doci <gretadoci@gmail.com> | 2019-09-23 13:00:04 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2019-12-12 12:25:13 +0100 |
commit | c864bc832172dfc3696c4873fd7021bf5f981836 (patch) | |
tree | 206391723972dd28b14e080361dd438338c34ac5 /tests/acceptance/features/users.feature | |
parent | c6e51924c8615166c2533f83ecc6399d9cc56cbd (diff) | |
download | nextcloud-server-c864bc832172dfc3696c4873fd7021bf5f981836.tar.gz nextcloud-server-c864bc832172dfc3696c4873fd7021bf5f981836.zip |
Move users management to multi line
Signed-off-by: Greta Doci <gretadoci@gmail.com>
Diffstat (limited to 'tests/acceptance/features/users.feature')
-rw-r--r-- | tests/acceptance/features/users.feature | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/tests/acceptance/features/users.feature b/tests/acceptance/features/users.feature index 263e9fddfc0..c4cfa3b69bf 100644 --- a/tests/acceptance/features/users.feature +++ b/tests/acceptance/features/users.feature @@ -63,18 +63,20 @@ Feature: users And I am logged in as the admin And I open the User settings And I see that the list of users contains the user user0 - # disabled because we need the TAB patch: + When I toggle the edit mode for the user user0 + Then I see that the edit mode is on for user user0 + # disabled because we need the TAB patch: # https://github.com/minkphp/MinkSelenium2Driver/pull/244 # When I assign the user user0 to the group admin # Then I see that the section Admins is shown # And I see that the section Admins has a count of 2 - + Scenario: create and delete a group Given I act as Jane And I am logged in as the admin And I open the User settings And I see that the list of users contains the user user0 - # disabled because we need the TAB patch: + # disabled because we need the TAB patch: # https://github.com/minkphp/MinkSelenium2Driver/pull/244 # And I assign the user user0 to the group Group1 # And I see that the section Group1 is shown @@ -112,7 +114,7 @@ Feature: users Then I see that the "Storage location" column is shown When I toggle the showUserBackend checkbox in the settings Then I see that the "User backend" column is shown - + # Scenario: change display name # Given I act as Jane # And I am logged in as the admin @@ -128,6 +130,8 @@ Feature: users And I am logged in as the admin And I open the User settings And I see that the list of users contains the user user0 + When I toggle the edit mode for the user user0 + Then I see that the edit mode is on for user user0 And I see that the password of user0 is "" When I set the password for user0 to 123456 And I see that the password cell for user user0 is done loading @@ -149,8 +153,10 @@ Feature: users And I am logged in as the admin And I open the User settings And I see that the list of users contains the user user0 + When I toggle the edit mode for the user user0 + Then I see that the edit mode is on for user user0 And I see that the user quota of user0 is Unlimited - # disabled because we need the TAB patch: + # disabled because we need the TAB patch: # https://github.com/minkphp/MinkSelenium2Driver/pull/244 # When I set the user user0 quota to 1GB # And I see that the quota cell for user user0 is done loading @@ -163,4 +169,4 @@ Feature: users # Then I see that the user quota of user0 is "0 B" # When I set the user user0 quota to Default # And I see that the quota cell for user user0 is done loading - # Then I see that the user quota of user0 is "Default quota"
\ No newline at end of file + # Then I see that the user quota of user0 is "Default quota" |