Skip to content

Commit

Permalink
try1
Browse files Browse the repository at this point in the history
  • Loading branch information
kiranparajuli589 committed Feb 10, 2020
1 parent 8ba1ab4 commit 711663e
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions tests/acceptance/features/cliProvisioning/userSync.feature
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -43,15 +41,23 @@ 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
And user "regularuser" should exist
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"

0 comments on commit 711663e

Please sign in to comment.