2 Unix SMB/CIFS implementation.
4 directory scanning tests
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/>.
23 #include "libcli/libcli.h"
24 #include "torture/util.h"
25 #include "system/filesys.h"
26 #include "torture/basic/proto.h"
28 static void list_fn(struct clilist_file_info
*finfo
, const char *name
, void *state
)
34 test directory listing speed
36 bool torture_dirtest1(struct torture_context
*tctx
,
37 struct smbcli_state
*cli
)
42 extern int torture_numops
;
45 torture_comment(tctx
, "Creating %d random filenames\n", torture_numops
);
48 tv
= timeval_current();
49 for (i
=0;i
<torture_numops
;i
++) {
51 asprintf(&fname
, "\\%x", (int)random());
52 fnum
= smbcli_open(cli
->tree
, fname
, O_RDWR
|O_CREAT
, DENY_NONE
);
54 fprintf(stderr
,"(%s) Failed to open %s\n",
58 smbcli_close(cli
->tree
, fnum
);
62 torture_comment(tctx
, "Matched %d\n", smbcli_list(cli
->tree
, "a*.*", 0, list_fn
, NULL
));
63 torture_comment(tctx
, "Matched %d\n", smbcli_list(cli
->tree
, "b*.*", 0, list_fn
, NULL
));
64 torture_comment(tctx
, "Matched %d\n", smbcli_list(cli
->tree
, "xyzabc", 0, list_fn
, NULL
));
66 torture_comment(tctx
, "dirtest core %g seconds\n", timeval_elapsed(&tv
));
69 for (i
=0;i
<torture_numops
;i
++) {
71 asprintf(&fname
, "\\%x", (int)random());
72 smbcli_unlink(cli
->tree
, fname
);
79 bool torture_dirtest2(struct torture_context
*tctx
,
80 struct smbcli_state
*cli
)
85 extern int torture_entries
;
87 if (!torture_setup_dir(cli
, "\\LISTDIR")) {
91 torture_comment(tctx
, "Creating %d files\n", torture_entries
);
93 /* Create torture_entries files and torture_entries directories. */
94 for (i
=0;i
<torture_entries
;i
++) {
96 asprintf(&fname
, "\\LISTDIR\\f%d", i
);
97 fnum
= smbcli_nt_create_full(cli
->tree
, fname
, 0,
99 FILE_ATTRIBUTE_ARCHIVE
,
100 NTCREATEX_SHARE_ACCESS_READ
|NTCREATEX_SHARE_ACCESS_WRITE
,
101 NTCREATEX_DISP_OVERWRITE_IF
, 0, 0);
103 fprintf(stderr
,"(%s) Failed to open %s, error=%s\n",
104 __location__
, fname
, smbcli_errstr(cli
->tree
));
108 smbcli_close(cli
->tree
, fnum
);
110 for (i
=0;i
<torture_entries
;i
++) {
112 asprintf(&fname
, "\\LISTDIR\\d%d", i
);
113 if (NT_STATUS_IS_ERR(smbcli_mkdir(cli
->tree
, fname
))) {
114 fprintf(stderr
,"(%s) Failed to open %s, error=%s\n",
115 __location__
, fname
, smbcli_errstr(cli
->tree
));
121 /* Now ensure that doing an old list sees both files and directories. */
122 num_seen
= smbcli_list_old(cli
->tree
, "\\LISTDIR\\*", FILE_ATTRIBUTE_DIRECTORY
, list_fn
, NULL
);
123 torture_comment(tctx
, "num_seen = %d\n", num_seen
);
124 /* We should see (torture_entries) each of files & directories + . and .. */
125 if (num_seen
!= (2*torture_entries
)+2) {
127 fprintf(stderr
,"(%s) entry count mismatch, should be %d, was %d\n",
128 __location__
, (2*torture_entries
)+2, num_seen
);
132 /* Ensure if we have the "must have" bits we only see the
135 num_seen
= smbcli_list_old(cli
->tree
, "\\LISTDIR\\*", (FILE_ATTRIBUTE_DIRECTORY
<<8)|FILE_ATTRIBUTE_DIRECTORY
, list_fn
, NULL
);
136 torture_comment(tctx
, "num_seen = %d\n", num_seen
);
137 if (num_seen
!= torture_entries
+2) {
139 fprintf(stderr
,"(%s) entry count mismatch, should be %d, was %d\n",
140 __location__
, torture_entries
+2, num_seen
);
143 num_seen
= smbcli_list_old(cli
->tree
, "\\LISTDIR\\*", (FILE_ATTRIBUTE_ARCHIVE
<<8)|FILE_ATTRIBUTE_DIRECTORY
, list_fn
, NULL
);
144 torture_comment(tctx
, "num_seen = %d\n", num_seen
);
145 if (num_seen
!= torture_entries
) {
147 fprintf(stderr
,"(%s) entry count mismatch, should be %d, was %d\n",
148 __location__
, torture_entries
, num_seen
);
151 /* Delete everything. */
152 if (smbcli_deltree(cli
->tree
, "\\LISTDIR") == -1) {
153 fprintf(stderr
,"(%s) Failed to deltree %s, error=%s\n", "\\LISTDIR",
154 __location__
, smbcli_errstr(cli
->tree
));
159 torture_comment(tctx
, "Matched %d\n", smbcli_list(cli
->tree
, "a*.*", 0, list_fn
, NULL
));
160 torture_comment(tctx
, "Matched %d\n", smbcli_list(cli
->tree
, "b*.*", 0, list_fn
, NULL
));
161 torture_comment(tctx
, "Matched %d\n", smbcli_list(cli
->tree
, "xyzabc", 0, list_fn
, NULL
));