2 Unix SMB/CIFS implementation.
3 reproducer for bug 8042
4 Copyright (C) Volker Lendecke 2011
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "torture/proto.h"
22 #include "system/filesys.h"
23 #include "libsmb/libsmb.h"
26 * Regression test file creates on case insensitive file systems (e.g. OS/X)
27 * https://bugzilla.samba.org/show_bug.cgi?id=8042
30 bool run_case_insensitive_create(int dummy
)
32 struct cli_state
*cli
;
36 printf("Starting case_insensitive_create\n");
38 if (!torture_open_connection(&cli
, 0)) {
42 status
= cli_mkdir(cli
, "x");
43 if (!NT_STATUS_IS_OK(status
)) {
44 printf("cli_mkdir failed: %s\n", nt_errstr(status
));
47 status
= cli_chkpath(cli
, "X");
48 if (!NT_STATUS_IS_OK(status
)) {
49 printf("cli_chkpath failed: %s\n", nt_errstr(status
));
52 status
= cli_open(cli
, "x\\y", O_RDWR
|O_CREAT
, 0, &fnum
);
53 if (!NT_STATUS_IS_OK(status
)) {
54 printf("cli_open failed: %s\n", nt_errstr(status
));
56 if (NT_STATUS_EQUAL(status
, NT_STATUS_FILE_IS_A_DIRECTORY
)) {
57 printf("Bug 8042 reappeared!!\n");
61 status
= cli_close(cli
, fnum
);
62 if (!NT_STATUS_IS_OK(status
)) {
63 printf("cli_close failed: %s\n", nt_errstr(status
));
67 status
= cli_unlink(cli
, "x\\y", 0);
68 if (!NT_STATUS_IS_OK(status
)) {
69 printf("cli_unlink failed: %s\n", nt_errstr(status
));
73 status
= cli_rmdir(cli
, "x");
74 if (!NT_STATUS_IS_OK(status
)) {
75 printf("cli_close failed: %s\n", nt_errstr(status
));
78 torture_close_connection(cli
);
79 return NT_STATUS_IS_OK(status
);