Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
fixup for full test script
- Loading branch information
Showing
11 changed files
with
344 additions
and
56 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
dn: cn=admin,dc=internet2,dc=edu | ||
objectClass: simpleSecurityObject | ||
objectClass: organizationalRole | ||
cn: admin | ||
userPassword: password | ||
description: LDAP administrator | ||
|
||
dn: uid=banderson,ou=People,dc=internet2,dc=edu | ||
objectClass: eduPerson | ||
objectClass: inetOrgPerson | ||
objectClass: organizationalPerson | ||
objectClass: person | ||
objectClass: top | ||
cn: Bob Anderson | ||
sn: Anderson | ||
givenName: Bob | ||
userPassword: password | ||
description: LDAP administrator | ||
|
||
dn: ou=Affiliations,ou=Groups,dc=internet2,dc=edu | ||
objectClass: top | ||
objectClass: organizationalUnit | ||
ou: Affiliations | ||
|
||
dn: ou=Courses,ou=Groups,dc=internet2,dc=edu | ||
objectClass: top | ||
objectClass: organizationalUnit | ||
ou: Courses | ||
|
||
dn: ou=midpoint,ou=Groups,dc=internet2,dc=edu | ||
objectClass: top | ||
objectClass: organizationalUnit | ||
ou: midpoint | ||
|
||
dn: ou=Generic,ou=Groups,dc=internet2,dc=edu | ||
objectClass: top | ||
objectClass: organizationalUnit | ||
ou: Generic | ||
|
||
dn: cn=users,ou=Groups,dc=internet2,dc=edu | ||
objectClass: groupOfUniqueNames | ||
objectClass: top | ||
uniqueMember: uid=banderson,ou=People,dc=internet2,dc=edu | ||
cn: users | ||
|
||
dn: cn=sysadmingroup,ou=midpoint,ou=Groups,dc=internet2,dc=edu | ||
objectClass: groupOfUniqueNames | ||
objectClass: top | ||
uniqueMember: uid=banderson,ou=People,dc=internet2,dc=edu | ||
cn: sysadmingroup | ||
|
||
dn: ou=Guests,dc=internet2,dc=edu | ||
objectClass: top | ||
objectClass: organizationalUnit | ||
ou: Guests | ||
|
||
dn: uid=aguest,ou=Guests,dc=internet2,dc=edu | ||
objectClass: eduPerson | ||
objectClass: inetOrgPerson | ||
objectClass: organizationalPerson | ||
objectClass: person | ||
objectClass: top | ||
cn: Andy Guest | ||
sn: Aguest | ||
mail: andyaguestcspuser@workbench.incommon.org | ||
givenName: Andy | ||
userPassword: password | ||
description: A guest user | ||
|
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
30 changes: 30 additions & 0 deletions
30
test-compose/data/container_files/seed-data/edumember-obj.ldif
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,30 @@ | ||
# | ||
# eduMember Objectclass | ||
# | ||
# | ||
# "eduMember" attributes | ||
# | ||
dn: cn=schema | ||
changetype: modify | ||
# | ||
add: attributetypes | ||
attributeTypes: ( 1.3.6.1.4.1.5923.1.5.1.1 | ||
NAME 'isMemberOf' | ||
DESC 'identifiers for groups to which containing entity belongs' | ||
EQUALITY caseExactMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
attributeTypes: ( 1.3.6.1.4.1.5923.1.5.1.2 | ||
NAME 'hasMember' | ||
DESC 'identifiers for entities that are members of the group' | ||
EQUALITY caseExactMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
- | ||
# | ||
add: objectclasses | ||
objectClasses: ( 1.3.6.1.4.1.5923.1.5.2 NAME 'eduMember' | ||
AUXILIARY | ||
MAY ( isMemberOf $ hasMember ) | ||
) | ||
# | ||
# end of LDIF | ||
# |
29 changes: 29 additions & 0 deletions
29
test-compose/data/container_files/seed-data/ldappublickey-obj.ldif
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,29 @@ | ||
# | ||
# ldapPublicKey Objectclass | ||
# | ||
# | ||
# ldapPublicKey attribute | ||
# | ||
dn: cn=schema | ||
changetype: modify | ||
# | ||
add: attributetypes | ||
attributeTypes: ( 1.3.6.1.4.1.24552.500.1.1.1.13 | ||
NAME 'sshPublicKey' | ||
DESC 'MANDATORY: OpenSSH Public key' | ||
EQUALITY octetStringMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 ) | ||
- | ||
# | ||
add: objectclasses | ||
objectClasses: ( 1.3.6.1.4.1.24552.500.1.1.2.0 | ||
NAME 'ldapPublicKey' | ||
DESC 'MANDATORY: OpenSSH LPK objectclass' | ||
SUP top | ||
AUXILIARY | ||
MUST ( sshPublicKey $ uid ) | ||
) | ||
# | ||
# end of LDIF | ||
# | ||
|
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
113 changes: 113 additions & 0 deletions
113
test-compose/data/container_files/seed-data/voperson-obj.ldif
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,113 @@ | ||
# | ||
# voPerson Objectclass | ||
# | ||
# | ||
# "voPerson" attributes | ||
# | ||
objectIdentifier: voPersonRoot 1.3.6.1.4.1.25178.4 | ||
objectIdentifier: voPersonObjectClass voPersonRoot:1 | ||
dn: cn=schema | ||
changetype: modify | ||
# | ||
add: attributetypes | ||
attributeTypes: ( voPersonObjectClass:10 | ||
NAME 'voPersonAffiliation' | ||
DESC 'voPerson Affiliation Within Local Scope' | ||
EQUALITY caseIgnoreMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
attributeTypes: ( voPersonObjectClass:13 | ||
NAME 'voPersonApplicationPassword' | ||
DESC 'voPerson Application-Specific Password' | ||
EQUALITY octetStringMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.40{128} ) | ||
attributeTypes: ( voPersonObjectClass:1 | ||
NAME 'voPersonApplicationUID' | ||
DESC 'voPerson Application-Specific User Identifier' | ||
EQUALITY caseIgnoreMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
attributeTypes: ( voPersonObjectClass:2 | ||
NAME 'voPersonAuthorName' | ||
DESC 'voPerson Author Name' | ||
EQUALITY caseIgnoreMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
attributeTypes: ( voPersonObjectClass:3 | ||
NAME 'voPersonCertificateDN' | ||
DESC 'voPerson Certificate Distinguished Name' | ||
EQUALITY distinguishedNameMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 ) | ||
attributeTypes: ( voPersonObjectClass:4 | ||
NAME 'voPersonCertificateIssuerDN' | ||
DESC 'voPerson Certificate Issuer DN' | ||
EQUALITY distinguishedNameMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 ) | ||
attributeTypes: ( voPersonObjectClass:11 | ||
NAME 'voPersonExternalAffiliation' | ||
DESC 'voPerson Scoped External Affiliation' | ||
EQUALITY caseIgnoreMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
attributeTypes: ( voPersonObjectClass:5 | ||
NAME 'voPersonExternalID' | ||
DESC 'voPerson Scoped External Identifier' | ||
EQUALITY caseIgnoreMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
attributeTypes: ( voPersonObjectClass:6 | ||
NAME 'voPersonID' | ||
DESC 'voPerson Unique Identifier' | ||
EQUALITY caseIgnoreMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
attributeTypes: ( voPersonObjectClass:7 | ||
NAME 'voPersonPolicyAgreement' | ||
DESC 'voPerson Policy Agreement Indicator' | ||
EQUALITY caseIgnoreMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
attributeTypes: ( voPersonObjectClass:12 | ||
NAME 'voPersonScopedAffiliation' | ||
DESC 'voPerson Affiliation With Explicit Local Scope' | ||
EQUALITY caseIgnoreMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
attributeTypes: ( voPersonObjectClass:8 | ||
NAME 'voPersonSoRID' | ||
DESC 'voPerson External Identifier' | ||
EQUALITY caseIgnoreMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
attributeTypes: ( voPersonObjectClass:9 | ||
NAME 'voPersonStatus' | ||
DESC 'voPerson Status' | ||
EQUALITY caseIgnoreMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
attributeTypes: ( voPersonObjectClass:15 | ||
NAME 'voPersonToken' | ||
DESC 'voPerson Token' | ||
EQUALITY caseExactMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
attributeTypes: ( voPersonObjectClass:14 | ||
NAME 'voPersonVerifiedEmail' | ||
DESC 'voPerson Verified Email Address' | ||
EQUALITY caseIgnoreMatch | ||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) | ||
- | ||
# | ||
add: objectclasses | ||
objectClasses: ( voPersonObjectClass | ||
NAME 'voPerson' | ||
AUXILIARY | ||
MAY ( voPersonAffiliation $ | ||
voPersonApplicationPassword $ | ||
voPersonApplicationUID $ | ||
voPersonAuthorName $ | ||
voPersonCertificateDN $ | ||
voPersonCertificateIssuerDN $ | ||
voPersonExternalAffiliation $ | ||
voPersonExternalID $ | ||
voPersonID $ | ||
voPersonPolicyAgreement $ | ||
voPersonScopedAffiliation $ | ||
voPersonSoRID $ | ||
voPersonStatus $ | ||
voPersonToken $ | ||
voPersonVerifiedEmail ) | ||
) | ||
# | ||
# end of LDIF | ||
# | ||
|
Oops, something went wrong.