mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
d42f08d16b
shfmt -f nsswitch/ | xargs shfmt -w -p -i 0 -fn Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
65 lines
1.6 KiB
Bash
Executable File
65 lines
1.6 KiB
Bash
Executable File
#!/bin/sh
|
|
# Blackbox test for wbinfo name lookup
|
|
if [ $# -lt 3 ]; then
|
|
cat <<EOF
|
|
Usage: test_wbinfo.sh DOMAIN REALM DC_USERNAME
|
|
EOF
|
|
exit 1
|
|
fi
|
|
|
|
DOMAIN=$1
|
|
REALM=$2
|
|
DC_USERNAME=$3
|
|
shift 3
|
|
|
|
failed=0
|
|
sambabindir="$BINDIR"
|
|
wbinfo="$VALGRIND $sambabindir/wbinfo"
|
|
|
|
. $(dirname $0)/../../testprogs/blackbox/subunit.sh
|
|
|
|
# Correct query is expected to work
|
|
testit "name-to-sid.single-separator" \
|
|
$wbinfo -n $DOMAIN/$DC_USERNAME ||
|
|
failed=$(expr $failed + 1)
|
|
|
|
testit "name-to-sid.at_domain" \
|
|
$wbinfo -n $DOMAIN/ ||
|
|
failed=$(expr $failed + 1)
|
|
|
|
testit "name-to-sid.upn" \
|
|
$wbinfo -n $DC_USERNAME@$REALM ||
|
|
failed=$(expr $failed + 1)
|
|
|
|
testit "name-to-sid.realm-user" \
|
|
$wbinfo -n $REALM/$DC_USERNAME ||
|
|
failed=$(expr $failed + 1)
|
|
|
|
# For the name-to-sid.realm-user query, ensure
|
|
# that this does not change subsequent sid-to-name
|
|
# queries.
|
|
sid=$($wbinfo -n $REALM/$DC_USERNAME | sed -e 's/ .*//')
|
|
out=$($wbinfo -s $sid | sed -e 's/ .//')
|
|
# winbindd returns usernames in lowercase
|
|
lcuser=$(echo $DC_USERNAME | tr A-Z a-z)
|
|
testit "Verify DOMAIN/USER output" \
|
|
test "$out" = "$DOMAIN/$lcuser" ||
|
|
failed=$(expr $failed + 1)
|
|
|
|
# Two separator characters should fail
|
|
testit_expect_failure "name-to-sid.double-separator" \
|
|
$wbinfo -n $DOMAIN//$DC_USERNAME ||
|
|
failed=$(expr $failed + 1)
|
|
|
|
# Invalid domain is expected to fail
|
|
testit_expect_failure "name-to-sid.invalid-domain" \
|
|
$wbinfo -n INVALID/$DC_USERNAME ||
|
|
failed=$(expr $failed + 1)
|
|
|
|
# Invalid domain with two separator characters is expected to fail
|
|
testit_expect_failure "name-to-sid.double-separator-invalid-domain" \
|
|
$wbinfo -n INVALID//$DC_USERNAME ||
|
|
failed=$(expr $failed + 1)
|
|
|
|
exit $failed
|