Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review 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
Christopher Ng
OpenLDAP
Commits
09ae896b
Commit
09ae896b
authored
19 years ago
by
Howard Chu
Browse files
Options
Downloads
Patches
Plain Diff
ITS#3657 add test with newSuperior as child of target entry
parent
46bea913
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/scripts/test005-modrdn
+16
-5
16 additions, 5 deletions
tests/scripts/test005-modrdn
with
16 additions
and
5 deletions
tests/scripts/test005-modrdn
+
16
−
5
View file @
09ae896b
...
...
@@ -179,6 +179,8 @@ if test $? != 0 ; then
exit
1
fi
# Test that you can use modrdn with an attribute value which was previously
# present
echo
"Testing modrdn(deleteoldrdn=1), modrdn with new rdn already an att val..."
$LDAPMODRDN
-D
"
$MANAGERDN
"
-r
-h
$LOCALHOST
-p
$PORT1
-w
$PASSWD
>
\
...
...
@@ -191,16 +193,11 @@ if test $RC != 0 ; then
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
-S
""
-b
"
$BASEDN
"
-h
$LOCALHOST
-p
$PORT1
\
'cn=James A Jones 1'
>
$SEARCHOUT
2>&1
RC
=
$?
test
$KILLSERVERS
!=
no
&&
kill
-HUP
$KILLPIDS
if
test
$RC
!=
0
;
then
echo
"ldapsearch failed (
$RC
)!"
exit
$RC
...
...
@@ -220,5 +217,19 @@ if test $? != 0 ; then
exit
1
fi
echo
"Testing modrdn with newSuperior as child of target "
$LDAPMODRDN
-D
"
$MANAGERDN
"
-h
$LOCALHOST
-p
$PORT1
-w
$PASSWD
>
\
/dev/null 2>&1
-s
'cn=Sub1, ou=FooBar, cn=James A Jones 1, ou=Alumni Association, ou=People, dc=example, dc=com'
'cn=James A Jones 1'
\
'cn=James A Jones 1, ou=Alumni Association, ou=People, dc=example, dc=com'
'cn=James A Jones 1'
RC
=
$?
if
test
$RC
==
0
;
then
echo
"ldapmodrdn succeeded, should have failed!"
test
$KILLSERVERS
!=
no
&&
kill
-HUP
$KILLPIDS
exit
1
fi
test
$KILLSERVERS
!=
no
&&
kill
-HUP
$KILLPIDS
echo
">>>>> Test succeeded"
exit
0
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