From 6c6643c36496f6ab691efaf818d0538e6f1b0de2 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 25 Sep 2013 01:25:49 +0200 Subject: s4:torture:smb2: fix durable-open lease tests to pass against windows. Fix is: reconnect with same client-guid as on the first connection. Signed-off-by: Michael Adam Reviewed-by: Stefan Metzmacher Reviewed-by: Jeremy Allison --- source4/torture/smb2/durable_open.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'source4') diff --git a/source4/torture/smb2/durable_open.c b/source4/torture/smb2/durable_open.c index f4822f6a11..3bc012edfa 100644 --- a/source4/torture/smb2/durable_open.c +++ b/source4/torture/smb2/durable_open.c @@ -1316,6 +1316,9 @@ static bool test_durable_open_lock_lease(struct torture_context *tctx, bool ret = true; uint64_t lease; uint32_t caps; + struct smbcli_options options; + + options = tree->session->transport->options; caps = smb2cli_conn_server_capabilities(tree->session->transport->conn); if (!(caps & SMB2_CAP_LEASING)) { @@ -1367,7 +1370,7 @@ static bool test_durable_open_lock_lease(struct torture_context *tctx, talloc_free(tree); tree = NULL; - if (!torture_smb2_connection(tctx, &tree)) { + if (!torture_smb2_connection_ext(tctx, 0, &options, &tree)) { torture_warning(tctx, "couldn't reconnect, bailing\n"); ret = false; goto done; @@ -1416,6 +1419,9 @@ static bool test_durable_open_open2_lease(struct torture_context *tctx, bool ret = true; uint64_t lease; uint32_t caps; + struct smbcli_options options; + + options = tree1->session->transport->options; caps = smb2cli_conn_server_capabilities(tree1->session->transport->conn); if (!(caps & SMB2_CAP_LEASING)) { @@ -1465,7 +1471,7 @@ static bool test_durable_open_open2_lease(struct torture_context *tctx, CHECK_CREATED(&io1, CREATED, FILE_ATTRIBUTE_ARCHIVE); /* Reconnect */ - if (!torture_smb2_connection(tctx, &tree1)) { + if (!torture_smb2_connection_ext(tctx, 0, &options, &tree1)) { torture_warning(tctx, "couldn't reconnect, bailing\n"); ret = false; goto done; -- cgit