set the ldapGroupMemberAssocAttr for group tests
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
parent
3372bcc7fc
commit
54299f4e66
|
@ -42,8 +42,9 @@ Feature: LDAP
|
|||
|
||||
Scenario: Test group filter with one specific group
|
||||
Given modify LDAP configuration
|
||||
| ldapGroupFilter | cn=RedGroup |
|
||||
| ldapBaseGroups | ou=Groups,ou=Ordinary,dc=nextcloud,dc=ci |
|
||||
| ldapGroupFilter | cn=RedGroup |
|
||||
| ldapGroupMemberAssocAttr | member |
|
||||
| ldapBaseGroups | ou=Groups,ou=Ordinary,dc=nextcloud,dc=ci |
|
||||
And As an "admin"
|
||||
And sending "GET" to "/cloud/groups"
|
||||
Then the OCS status code should be "200"
|
||||
|
@ -55,8 +56,9 @@ Feature: LDAP
|
|||
|
||||
Scenario: Test group filter with two specific groups
|
||||
Given modify LDAP configuration
|
||||
| ldapGroupFilter | (\|(cn=RedGroup)(cn=GreenGroup)) |
|
||||
| ldapBaseGroups | ou=Groups,ou=Ordinary,dc=nextcloud,dc=ci |
|
||||
| ldapGroupFilter | (\|(cn=RedGroup)(cn=GreenGroup)) |
|
||||
| ldapGroupMemberAssocAttr | member |
|
||||
| ldapBaseGroups | ou=Groups,ou=Ordinary,dc=nextcloud,dc=ci |
|
||||
And As an "admin"
|
||||
And sending "GET" to "/cloud/groups"
|
||||
Then the OCS status code should be "200"
|
||||
|
@ -68,8 +70,9 @@ Feature: LDAP
|
|||
|
||||
Scenario: Test group filter ruling out a group from a different base
|
||||
Given modify LDAP configuration
|
||||
| ldapGroupFilter | (objectClass=groupOfNames) |
|
||||
| ldapBaseGroups | ou=Groups,ou=Ordinary,dc=nextcloud,dc=ci |
|
||||
| ldapGroupFilter | (objectClass=groupOfNames) |
|
||||
| ldapGroupMemberAssocAttr | member |
|
||||
| ldapBaseGroups | ou=Groups,ou=Ordinary,dc=nextcloud,dc=ci |
|
||||
And As an "admin"
|
||||
And sending "GET" to "/cloud/groups"
|
||||
Then the OCS status code should be "200"
|
||||
|
|
|
@ -35,6 +35,7 @@ Scenario: Test LDAP group retrieval with numeric group ids and nesting
|
|||
Given modify LDAP configuration
|
||||
| ldapBaseGroups | ou=NumericGroups,dc=nextcloud,dc=ci |
|
||||
| ldapGroupFilter | (objectclass=groupOfNames) |
|
||||
| ldapGroupMemberAssocAttr | member |
|
||||
| ldapNestedGroups | 1 |
|
||||
| useMemberOfToDetectMembership | 1 |
|
||||
And As an "admin"
|
||||
|
|
Loading…
Reference in New Issue