s4-tests Workaround new default of 'client ntlmv2 auth = yes' in tests
authorAndrew Bartlett <abartlet@samba.org>
Sat, 4 Dec 2010 06:02:49 +0000 (17:02 +1100)
committerAndrew Bartlett <abartlet@samba.org>
Thu, 9 Dec 2010 07:01:56 +0000 (18:01 +1100)
The new default breaks some tests that were assuming LM or NTLM auth

Andrew Bartlett

source4/client/tests/test_smbclient.sh
source4/torture/rpc/netlogon.c

index 2fd5b56ca0336ccc86f4d487936bf45620cced18..66cc2d9d9c4858dae68170f5f34bfb59b3e5e4e8 100755 (executable)
@@ -116,8 +116,8 @@ runcmd "Lookup name" "lookup $DOMAIN\\$USERNAME" || failed=`expr $failed + 1`
 #runcmd "Lookup privs of name" "privileges $DOMAIN\\$USERNAME" || failed=`expr $failed + 1`
 
 # do some simple operations using old protocol versions
-runcmd "List directory with LANMAN1" 'ls' -m LANMAN1 || failed=`expr $failed + 1`
-runcmd "List directory with LANMAN2" 'ls' -m LANMAN2 || failed=`expr $failed + 1`
+runcmd "List directory with LANMAN1" 'ls' -m LANMAN1 --option=clientntlmv2auth=no || failed=`expr $failed + 1`
+runcmd "List directory with LANMAN2" 'ls' -m LANMAN2 --option=clientntlmv2auth=no || failed=`expr $failed + 1`
 
 runcmd "Print current working directory" 'pwd'|| failed=`expr $failed + 1`
 
index b1739a015c11dc0b4585c07c06846fe481287c72..457d38e82d33a0cb16b40cdea28866e26dfb20ce 100644 (file)
@@ -702,7 +702,7 @@ static bool test_netlogon_ops_args(struct dcerpc_pipe *p, struct torture_context
                flags |= CLI_CRED_LANMAN_AUTH;
        }
 
-       if (lpcfg_client_ntlmv2_auth(tctx->lp_ctx)) {
+       if (lpcfg_client_ntlmv2_auth(tctx->lp_ctx) && !null_domain) {
                flags |= CLI_CRED_NTLMv2_AUTH;
        }