From 0e2e6352054a9b4f2c211e9fa3ca3563421e792b Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 21 Dec 2018 11:49:33 +0100 Subject: selftest: Test sids-to-xids with one failing sid Pair-Programmed-With: Stefan Metzmacher Signed-off-by: Volker Lendecke Signed-off-by: Stefan Metzmacher --- nsswitch/tests/test_wbinfo_sids_to_xids.sh | 32 ++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 nsswitch/tests/test_wbinfo_sids_to_xids.sh (limited to 'nsswitch') diff --git a/nsswitch/tests/test_wbinfo_sids_to_xids.sh b/nsswitch/tests/test_wbinfo_sids_to_xids.sh new file mode 100755 index 00000000000..a3ab404f644 --- /dev/null +++ b/nsswitch/tests/test_wbinfo_sids_to_xids.sh @@ -0,0 +1,32 @@ +#!/bin/sh + +incdir=`dirname $0`/../../testprogs/blackbox +. $incdir/subunit.sh + +# +# S-1-5-123456789 fails, but S-1-5-11 succeeds. Check that S-1-5-11 is +# mapped successfully with a GID in the 1000x range +# +wbinfo_some_mapped() +{ + output=`$VALGRIND $BINDIR/wbinfo --sids-to-unix-ids=S-1-5-123456789,S-1-5-11` + test x"$?" = x"0" || { + return 1 + } + + printf '%s' "$output" | grep -q 'S-1-5-123456789 -> unmapped' || { + printf '%s' "$output" + return 1 + } + + printf '%s' "$output" | grep -q 'S-1-5-11 -> gid 10000' || { + printf '%s' "$output" + return 1 + } + + return 0 +} + +testit "wbinfo some mapped" wbinfo_some_mapped || failed=`expr $failed + 1` + +testok $0 $failed -- cgit v1.2.1