Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
James Lowden
OpenLDAP
Commits
81f47aba
Commit
81f47aba
authored
25 years ago
by
Juan Gomez
Browse files
Options
Downloads
Patches
Plain Diff
Add special case tests to avoid regressions.
parent
ae2fa909
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/scripts/test005-modrdn
+115
-1
115 additions, 1 deletion
tests/scripts/test005-modrdn
with
115 additions
and
1 deletion
tests/scripts/test005-modrdn
+
115
−
1
View file @
81f47aba
...
...
@@ -73,12 +73,83 @@ if test $RC != 0 ; then
exit
$RC
fi
# Ensure the new rdn's can be found
echo
"Using ldapsearch to retrieve entries using new rdn (cn=James A Jones III)..."
$LDAPSEARCH
-L
-S
""
-b
"
$BASEDN
"
-h
localhost
-p
$PORT
\
'cn=James A Jones III'
| egrep
-iv
'^createtimestamp:|^modifytimestamp:'
\
>
$SEARCHOUT
2>&1
RC
=
$?
if
test
$RC
!=
0
;
then
echo
"ldapsearch failed!"
kill
-HUP
$PID
exit
$RC
fi
LDIF
=
$MODRDNOUTMASTER1
echo
"Filtering ldapsearch results..."
.
$SRCDIR
/scripts/acfilter.sh <
$SEARCHOUT
>
$SEARCHFLT
echo
"Filtering original ldif used to create database..."
.
$SRCDIR
/scripts/acfilter.sh <
$LDIF
>
$LDIFFLT
echo
"Comparing filter output..."
cmp
$SEARCHFLT
$LDIFFLT
if
test
$?
!=
0
;
then
echo
"comparison failed - modrdn operations did not complete correctly"
kill
-HUP
$PID
exit
1
fi
echo
"Using ldapsearch to retrieve entries using new rdn (cn=James A Jones II)..."
$LDAPSEARCH
-L
-S
""
-b
"
$BASEDN
"
-h
localhost
-p
$PORT
\
'cn=James A Jones II'
| egrep
-iv
'^createtimestamp:|^modifytimestamp:'
\
>
$SEARCHOUT
2>&1
RC
=
$?
if
test
$RC
!=
0
;
then
echo
"ldapsearch failed!"
kill
-HUP
$PID
exit
$RC
fi
LDIF
=
$MODRDNOUTMASTER2
echo
"Filtering ldapsearch results..."
.
$SRCDIR
/scripts/acfilter.sh <
$SEARCHOUT
>
$SEARCHFLT
echo
"Filtering original ldif used to create database..."
.
$SRCDIR
/scripts/acfilter.sh <
$LDIF
>
$LDIFFLT
echo
"Comparing filter output..."
cmp
$SEARCHFLT
$LDIFFLT
if
test
$?
!=
0
;
then
echo
"comparison failed - modrdn operations did not complete correctly"
kill
-HUP
$PID
exit
1
fi
# Ensure that you cannot find the entry for which the rdn was deleted as
# an attribute.
echo
"Using ldapsearch to retrieve entries using removed rdn (cn=James A Jones 2)..."
$LDAPSEARCH
-L
-S
""
-b
"
$BASEDN
"
-h
localhost
-p
$PORT
\
'cn=James A Jones 2'
| egrep
-iv
'^createtimestamp:|^modifytimestamp:'
\
>
/dev/null 2>&1
RC
=
$?
if
test
$RC
=
0
;
then
echo
"failure: ldapsearch found attribute that was to be removed!"
kill
-HUP
$PID
exit
$RC
fi
echo
"Using ldapsearch to retrieve all the entries..."
$LDAPSEARCH
-L
-S
""
-b
"
$BASEDN
"
-h
localhost
-p
$PORT
\
'objectClass=*'
>
$SEARCHOUT
2>&1
RC
=
$?
kill
-HUP
$PID
if
test
$RC
!=
0
;
then
kill
-HUP
$PID
echo
"ldapsearch failed!"
exit
$RC
fi
...
...
@@ -92,6 +163,49 @@ echo "Filtering original ldif used to create database..."
echo
"Comparing filter output..."
cmp
$SEARCHFLT
$LDIFFLT
if
test
$?
!=
0
;
then
echo
"comparison failed - modrdn operations did not complete correctly"
kill
-HUP
$PID
exit
1
fi
echo
"Testing modrdn(deleteoldrdn=1), modrdn with new rdn already an att val..."
$LDAPMODRDN
-v
-D
"
$MANAGERDN
"
-r
-h
localhost
-p
$PORT
-w
$PASSWD
>
\
/dev/null 2>&1
'cn=James A Jones III, ou=Alumni Association, ou=People, o=University of Michigan, c=US'
'cn=James A Jones 1'
RC
=
$?
if
test
$RC
!=
0
;
then
echo
"ldapmodrdn failed!"
kill
-HUP
$PID
exit
$RC
fi
# Test that you can use modrdn with an attribute value which was previously
# present
echo
"Using ldapsearch to retrieve entries using new rdn (cn=James A Jones 1)..."
$LDAPSEARCH
-L
-S
""
-b
"
$BASEDN
"
-h
localhost
-p
$PORT
\
'cn=James A Jones 1'
| egrep
-iv
'^createtimestamp:|^modifytimestamp:'
\
>
$SEARCHOUT
2>&1
RC
=
$?
if
test
$RC
!=
0
;
then
echo
"ldapsearch failed!"
kill
-HUP
$PID
exit
$RC
fi
LDIF
=
$MODRDNOUTMASTER3
echo
"Filtering ldapsearch results..."
.
$SRCDIR
/scripts/acfilter.sh <
$SEARCHOUT
>
$SEARCHFLT
echo
"Filtering original ldif used to create database..."
.
$SRCDIR
/scripts/acfilter.sh <
$LDIF
>
$LDIFFLT
echo
"Comparing filter output..."
cmp
$SEARCHFLT
$LDIFFLT
kill
-HUP
$PID
if
test
$?
!=
0
;
then
echo
"comparison failed - modrdn operations did not complete correctly"
exit
1
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment