diff --git a/tests/acceptance/features/cliProvisioning/userSync.feature b/tests/acceptance/features/cliProvisioning/userSync.feature index 6ced25c73..c41a981a1 100644 --- a/tests/acceptance/features/cliProvisioning/userSync.feature +++ b/tests/acceptance/features/cliProvisioning/userSync.feature @@ -10,8 +10,6 @@ Feature: sync a user using occ command | username | | user0 | | user1 | - | regularuser | - | regular | @skipOnOcV10.3 Scenario: admin deletes ldap users and syncs only one of them @@ -43,6 +41,10 @@ Feature: sync a user using occ command """ Scenario: sync a ldap user that is substring of some other ldap users + Given these users have been created with default attributes and without skeleton files: + | username | + | regularuser | + | regular | When the administrator sets the ldap attribute "displayname" of the entry "uid=regular,ou=TestUsers" to "Test User" And LDAP user "regular" is resynced And user "regular" should exist @@ -50,8 +52,12 @@ Feature: sync a user using occ command And the display name of user "regular" should be "Test User" Scenario: sync a ldap user that is superstring of some other ldap users + Given these users have been created with default attributes and without skeleton files: + | username | + | regularuser | + | regular | When the administrator sets the ldap attribute "displayname" of the entry "uid=regularuser,ou=TestUsers" to "Test User" And LDAP user "regularuser" is resynced And user "regular" should exist And user "regularuser" should exist - And the display name of user "regularuser" should be "User Zero" + And the display name of user "regularuser" should be "Test User"