diff options
author | Volker Lendecke <vl@samba.org> | 2017-04-06 12:50:08 +0200 |
---|---|---|
committer | Christof Schmitt <cs@samba.org> | 2017-05-08 21:08:23 +0200 |
commit | ee3b17ba4674a17a411c9ec4271e087c8cd7dad1 (patch) | |
tree | 01b8f31250f5f6f2b9e39d9092cb61ffeb8b9856 /nsswitch | |
parent | da7481f835ddc1fab16d11ccbaf7f33c213af23a (diff) | |
download | samba-ee3b17ba4674a17a411c9ec4271e087c8cd7dad1.tar.gz |
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 <vl@samba.org>
Reviewed-by: Christof Schmitt <cs@samba.org>
Diffstat (limited to 'nsswitch')
-rwxr-xr-x | nsswitch/tests/test_idmap_rfc2307.sh | 14 |
1 files changed, 14 insertions, 0 deletions
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/" |