From 8d11a54e3707e77c78a2f0005c9f4b1922a791b1 Mon Sep 17 00:00:00 2001 From: Samuel Cabrero Date: Fri, 31 Aug 2018 17:46:59 +0200 Subject: [PATCH] tests/ntlm_auth: Port ntlm_auth tests to python: ntlm_auth with NTLMSSP gss-spnego-client and gss-spnego server against winbind with require-membership-of Port ntlm_auth bash script tests to python Signed-off-by: Samuel Cabrero Reviewed-by: Noel Power Reviewed-by: Andrew Bartlett --- python/samba/tests/ntlm_auth.py | 13 +++++++++++++ source3/script/tests/test_ntlm_auth_s3.sh | 2 -- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/python/samba/tests/ntlm_auth.py b/python/samba/tests/ntlm_auth.py index cc7f5b1da4e..8a4d211c4f7 100644 --- a/python/samba/tests/ntlm_auth.py +++ b/python/samba/tests/ntlm_auth.py @@ -148,3 +148,16 @@ class NTLMAuthHelpersTests(NTLMAuthTestCase): require_membership=self.group_sid, server_use_winbind=True) self.assertTrue(ret) + + def test_require_membership_gss_spnego(self): + """ ntlm_auth with NTLMSSP gss-spnego-client and gss-spnego server + against winbind with require-membership-of """ + + ret = self.run_helper(client_username=self.username, + client_password=self.password, + client_domain=self.domain, + require_membership=self.group_sid, + client_helper="gss-spnego-client", + server_helper="gss-spnego", + server_use_winbind=True) + self.assertTrue(ret) diff --git a/source3/script/tests/test_ntlm_auth_s3.sh b/source3/script/tests/test_ntlm_auth_s3.sh index 9ca123f96d6..3a411e0d2b0 100755 --- a/source3/script/tests/test_ntlm_auth_s3.sh +++ b/source3/script/tests/test_ntlm_auth_s3.sh @@ -269,8 +269,6 @@ EOF } # This should work even with NTLMv2 -testit "ntlm_auth with NTLMSSP gss-spnego-client and gss-spnego server against winbind with require-membership-of" $PYTHON $SRC3DIR/torture/test_ntlm_auth.py $NTLM_AUTH --client-username=$USERNAME --client-domain=$DOMAIN --client-password=$PASSWORD --server-use-winbindd --client-helper=gss-spnego-client --server-helper=gss-spnego $ADDARGS --require-membership-of=$SID || failed=`expr $failed + 1` - testit_expect_failure "ntlm_auth against winbindd with failed require-membership-of" $PYTHON $SRC3DIR/torture/test_ntlm_auth.py $NTLM_AUTH --client-username=$USERNAME --client-domain=$DOMAIN --client-password=$PASSWORD --server-use-winbindd $ADDARGS --require-membership-of=$BADSID && failed=`expr $failed + 1` testit_expect_failure "ntlm_auth with NTLMSSP gss-spnego-client and gss-spnego server against winbind with failed require-membership-of" $PYTHON $SRC3DIR/torture/test_ntlm_auth.py $NTLM_AUTH --client-username=$USERNAME --client-domain=$DOMAIN --client-password=$PASSWORD --server-use-winbindd --client-helper=gss-spnego-client --server-helper=gss-spnego $ADDARGS --require-membership-of=$BADSID && failed=`expr $failed + 1`