s4:torture:smb2: fix durable-open lease tests to pass against windows.
authorMichael Adam <obnox@samba.org>
Tue, 24 Sep 2013 23:25:49 +0000 (01:25 +0200)
committerStefan Metzmacher <metze@samba.org>
Sat, 5 Oct 2013 12:04:07 +0000 (14:04 +0200)
Fix is: reconnect with same client-guid as on the first connection.

Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source4/torture/smb2/durable_open.c

index f4822f6a11ae2f72fab7177e6142f2f552df35b1..3bc012edfa0dbcb066069c0a0e94592b409f8c99 100644 (file)
@@ -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;