From ee3b17ba4674a17a411c9ec4271e087c8cd7dad1 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 6 Apr 2017 12:50:08 +0200 Subject: idmap_rfc2307: Test unix-ids-to-sids with 35 groups BUG: https://bugzilla.samba.org/show_bug.cgi?id=12757 Signed-off-by: Volker Lendecke Reviewed-by: Christof Schmitt --- nsswitch/tests/test_idmap_rfc2307.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'nsswitch') diff --git a/nsswitch/tests/test_idmap_rfc2307.sh b/nsswitch/tests/test_idmap_rfc2307.sh index 5fabdc650d2..c62da5d3061 100755 --- a/nsswitch/tests/test_idmap_rfc2307.sh +++ b/nsswitch/tests/test_idmap_rfc2307.sh @@ -176,6 +176,20 @@ EOF i=$(expr "$i" + 1) done +# Test whether wbinfo --xids-to-sids finds everything + +GIDS="" +i=0 +while [ ${i} -lt ${NUMGROUPS} ] ; do + GIDS="$GIDS g$(expr ${i} + ${GID_START})" + i=$(expr "$i" + 1) +done +NUM_VALID_SIDS=$($wbinfo --unix-ids-to-sids="$GIDS" | grep -v ^S-0-0 | wc -l) + +testit "Count number of valid sids found" \ + test ${NUM_VALID_SIDS} = ${NUMGROUPS} || + failed=$(expr $failed + 1) + # Test whether wbinfo -r shows all groups EXPECTED_USERGROUPS="1000000/1000001/2000002/" -- cgit v1.2.1