s3-selftest: Remove some unnecessary comma
[Samba/gebeck_regimport.git] / source4 / torture / basic / rename.c
bloba80dd6e4950292ca9b827c964195e7974881d8e8
1 /*
2 Unix SMB/CIFS implementation.
4 rename testing
6 Copyright (C) Andrew Tridgell 2003
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "includes.h"
23 #include "libcli/libcli.h"
24 #include "torture/util.h"
25 #include "torture/basic/proto.h"
28 Test rename on files open with share delete and no share delete.
30 bool torture_test_rename(struct torture_context *tctx,
31 struct smbcli_state *cli1)
33 const char *fname = "\\test.txt";
34 const char *fname1 = "\\test1.txt";
35 int fnum1;
37 smbcli_unlink(cli1->tree, fname);
38 smbcli_unlink(cli1->tree, fname1);
39 fnum1 = smbcli_nt_create_full(cli1->tree, fname, 0,
40 SEC_RIGHTS_FILE_READ,
41 FILE_ATTRIBUTE_NORMAL,
42 NTCREATEX_SHARE_ACCESS_READ,
43 NTCREATEX_DISP_OVERWRITE_IF, 0, 0);
45 torture_assert(tctx, fnum1 != -1, talloc_asprintf(tctx, "First open failed - %s",
46 smbcli_errstr(cli1->tree)));
48 torture_assert(tctx, NT_STATUS_IS_ERR(smbcli_rename(cli1->tree, fname, fname1)),
49 "First rename succeeded - this should have failed !");
51 torture_assert_ntstatus_ok(tctx, smbcli_close(cli1->tree, fnum1),
52 talloc_asprintf(tctx, "close - 1 failed (%s)", smbcli_errstr(cli1->tree)));
54 smbcli_unlink(cli1->tree, fname);
55 smbcli_unlink(cli1->tree, fname1);
56 fnum1 = smbcli_nt_create_full(cli1->tree, fname, 0,
57 SEC_RIGHTS_FILE_READ,
58 FILE_ATTRIBUTE_NORMAL,
59 NTCREATEX_SHARE_ACCESS_DELETE|NTCREATEX_SHARE_ACCESS_READ,
60 NTCREATEX_DISP_OVERWRITE_IF, 0, 0);
62 torture_assert(tctx, fnum1 != -1, talloc_asprintf(tctx,
63 "Second open failed - %s", smbcli_errstr(cli1->tree)));
65 torture_assert_ntstatus_ok(tctx, smbcli_rename(cli1->tree, fname, fname1),
66 talloc_asprintf(tctx,
67 "Second rename failed - this should have succeeded - %s",
68 smbcli_errstr(cli1->tree)));
70 torture_assert_ntstatus_ok(tctx, smbcli_close(cli1->tree, fnum1),
71 talloc_asprintf(tctx,
72 "close - 2 failed (%s)", smbcli_errstr(cli1->tree)));
74 smbcli_unlink(cli1->tree, fname);
75 smbcli_unlink(cli1->tree, fname1);
77 fnum1 = smbcli_nt_create_full(cli1->tree, fname, 0,
78 SEC_STD_READ_CONTROL,
79 FILE_ATTRIBUTE_NORMAL,
80 NTCREATEX_SHARE_ACCESS_NONE,
81 NTCREATEX_DISP_OVERWRITE_IF, 0, 0);
83 torture_assert(tctx, fnum1 != -1, talloc_asprintf(tctx, "Third open failed - %s",
84 smbcli_errstr(cli1->tree)));
86 torture_assert_ntstatus_ok(tctx, smbcli_rename(cli1->tree, fname, fname1),
87 talloc_asprintf(tctx, "Third rename failed - this should have succeeded - %s",
88 smbcli_errstr(cli1->tree)));
90 torture_assert_ntstatus_ok(tctx, smbcli_close(cli1->tree, fnum1),
91 talloc_asprintf(tctx, "close - 3 failed (%s)", smbcli_errstr(cli1->tree)));
93 smbcli_unlink(cli1->tree, fname);
94 smbcli_unlink(cli1->tree, fname1);
96 return true;