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
a5b07597
Commit
a5b07597
authored
23 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Basic extensible matching test
parent
3a5c4e9e
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/test015-xsearch
+124
-0
124 additions, 0 deletions
tests/scripts/test015-xsearch
with
124 additions
and
0 deletions
tests/scripts/test015-xsearch
0 → 100755
+
124
−
0
View file @
a5b07597
#! /bin/sh
# $OpenLDAP$
SRCDIR
=
"."
if
test
$#
-ge
1
;
then
SRCDIR
=
$1
;
shift
fi
BACKEND
=
bdb
if
test
$#
-ge
1
;
then
BACKEND
=
$1
;
shift
fi
WAIT
=
0
if
test
$#
-ge
1
;
then
WAIT
=
1
;
shift
fi
echo
"running defines.sh"
.
$SRCDIR
/scripts/defines.sh
echo
"Cleaning up in
$DBDIR
..."
rm
-f
$DBDIR
/[!C]
*
echo
"Running slapadd to build slapd database..."
.
$CONFFILTER
$BACKEND
<
$MCONF
>
$ADDCONF
$SLAPADD
-f
$ADDCONF
-l
$LDIFORDERED
RC
=
$?
if
test
$RC
!=
0
;
then
echo
"slapadd failed (
$RC
)!"
exit
$RC
fi
echo
"Running slapindex to index slapd database..."
.
$CONFFILTER
$BACKEND
<
$CONF
>
$DBCONF
$SLAPINDEX
-f
$DBCONF
RC
=
$?
if
test
$RC
!=
0
;
then
echo
"warning: slapindex failed (
$RC
)"
echo
" assuming no indexing support"
fi
echo
"Starting slapd on TCP/IP port
$PORT
..."
$SLAPD
-f
$DBCONF
-h
$MASTERURI
-d
$LVL
$TIMING
>
$MASTERLOG
2>&1 &
PID
=
$!
if
test
$WAIT
!=
0
;
then
echo
PID
$PID
read
foo
fi
echo
"Testing slapd searching..."
for
i
in
0 1 2 3 4 5
;
do
$LDAPSEARCH
-s
base
-b
"
$MONITOR
"
-h
$LOCALHOST
-p
$PORT
\
'objectclass=*'
>
/dev/null 2>&1
RC
=
$?
if
test
$RC
=
1
;
then
echo
"Waiting 5 seconds for slapd to start..."
sleep
5
fi
done
if
test
$RC
!=
0
;
then
echo
"ldapsearch failed (
$RC
)!"
kill
-HUP
$PID
exit
$RC
fi
cat
/dev/null
>
$SEARCHOUT
echo
"Testing exact searching..."
$LDAPSEARCH
-S
""
-b
"
$BASEDN
"
-h
$LOCALHOST
-p
$PORT
\
'(sn:=jensen)'
>>
$SEARCHOUT
2>&1
if
test
$RC
!=
0
;
then
echo
"ldapsearch failed (
$RC
)!"
kill
-HUP
$PID
exit
$RC
fi
echo
"Testing OR searching..."
$LDAPSEARCH
-S
""
-b
"
$BASEDN
"
-h
$LOCALHOST
-p
$PORT
\
'(|(givenName=XX*YY*Z)(cn=)(undef=*)(objectclass=groupofnames)(sn:caseExactMatch:=Jones))'
>>
$SEARCHOUT
2>&1
if
test
$RC
!=
0
;
then
echo
"ldapsearch failed (
$RC
)!"
kill
-HUP
$PID
exit
$RC
fi
echo
"Testing AND matching and ends-with searching..."
$LDAPSEARCH
-S
""
-b
"
$BASEDN
"
-h
$LOCALHOST
-p
$PORT
\
'(&(objectclass=groupofnames)(cn=A*))'
>>
$SEARCHOUT
2>&1
if
test
$RC
!=
0
;
then
echo
"ldapsearch failed (
$RC
)!"
kill
-HUP
$PID
exit
$RC
fi
echo
"Testing NOT searching..."
$LDAPSEARCH
-S
""
-b
"
$BASEDN
"
-h
$LOCALHOST
-p
$PORT
\
'(!(objectclass=pilotPerson))'
>>
$SEARCHOUT
2>&1
if
test
$RC
!=
0
;
then
echo
"ldapsearch failed (
$RC
)!"
kill
-HUP
$PID
exit
$RC
fi
kill
-HUP
$PID
LDIF
=
$SEARCHOUTMASTER
echo
"Filtering ldapsearch results..."
.
$LDIFFILTER
<
$SEARCHOUT
>
$SEARCHFLT
echo
"Filtering original ldif used to create database..."
.
$LDIFFILTER
<
$LDIF
>
$LDIFFLT
echo
"Comparing filter output..."
$CMP
$SEARCHFLT
$LDIFFLT
>
$CMPOUT
if
test
$?
!=
0
;
then
echo
"Comparison failed"
exit
1
fi
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