summaryrefslogtreecommitdiff
path: root/nsswitch
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2018-07-06 14:07:37 +0200
committerAndreas Schneider <asn@cryptomilk.org>2018-07-06 17:14:44 +0200
commit77be96379bcef56ea580010f1d60fe54e5647ff4 (patch)
tree7c5d04343284fff8a86270b8d06797364cea6882 /nsswitch
parenta30ac853ff9bca023c53ad98775eabb23156c566 (diff)
downloadsamba-77be96379bcef56ea580010f1d60fe54e5647ff4.tar.gz
nsswitch: Use a swtich in the wbinfo test to lookup users
BUG: https://bugzilla.samba.org/show_bug.cgi?id=13503 Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org> Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org> Autobuild-Date(master): Fri Jul 6 17:14:44 CEST 2018 on sn-devel-144
Diffstat (limited to 'nsswitch')
-rwxr-xr-xnsswitch/tests/test_wbinfo_user_info.sh19
1 files changed, 11 insertions, 8 deletions
diff --git a/nsswitch/tests/test_wbinfo_user_info.sh b/nsswitch/tests/test_wbinfo_user_info.sh
index da30f97be74..8158ead5a4b 100755
--- a/nsswitch/tests/test_wbinfo_user_info.sh
+++ b/nsswitch/tests/test_wbinfo_user_info.sh
@@ -118,18 +118,21 @@ testit "getpwnam.domain.$DOMAIN.$USERNAME1" test_getpwnam "$DOMAIN/$USERNAME1" 0
testit "getpwnam.upn.$UPN_NAME1" test_getpwnam "$UPN1" 0 "$DOMAIN/$USERNAME1" || failed=$(expr $failed + 1)
-# We should not be able to lookup the user just by the name
-test_ret=0
-test_output="$DOMAIN/$USERNAME1"
-
-if [ "$ENVNAME" = "ad_member" ]; then
+case ${ENVNAME} in
+ ad_member*)
+ # We should not be able to lookup the user just by the name
test_ret=2
test_output=""
-fi
-if [ "$ENVNAME" = "fl2008r2dc" ]; then
+ ;;
+ fl2008r2dc*)
test_ret=0
test_output="$OWN_DOMAIN/$USERNAME1"
-fi
+ ;;
+ *)
+ test_ret=0
+ test_output="$DOMAIN/$USERNAME1"
+ ;;
+esac
testit "getpwnam.local.$USERNAME1" test_getpwnam "$USERNAME1" $test_ret $test_output || failed=$(expr $failed + 1)