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"
27 static void list_fn(struct clilist_file_info
*finfo
, const char *name
, void *state
)
33 test directory listing speed
35 bool torture_dirtest1(struct torture_context
*tctx
,
36 struct smbcli_state
*cli
)
41 extern int torture_numops
;
44 torture_comment(tctx
, "Creating %d random filenames\n", torture_numops
);
47 tv
= timeval_current();
48 for (i
=0;i
<torture_numops
;i
++) {
50 asprintf(&fname
, "\\%x", (int)random());
51 fnum
= smbcli_open(cli
->tree
, fname
, O_RDWR
|O_CREAT
, DENY_NONE
);
53 fprintf(stderr
,"(%s) Failed to open %s\n",
57 smbcli_close(cli
->tree
, fnum
);
61 torture_comment(tctx
, "Matched %d\n", smbcli_list(cli
->tree
, "a*.*", 0, list_fn
, NULL
));
62 torture_comment(tctx
, "Matched %d\n", smbcli_list(cli
->tree
, "b*.*", 0, list_fn
, NULL
));
63 torture_comment(tctx
, "Matched %d\n", smbcli_list(cli
->tree
, "xyzabc", 0, list_fn
, NULL
));
65 torture_comment(tctx
, "dirtest core %g seconds\n", timeval_elapsed(&tv
));
68 for (i
=0;i
<torture_numops
;i
++) {
70 asprintf(&fname
, "\\%x", (int)random());
71 smbcli_unlink(cli
->tree
, fname
);
78 bool torture_dirtest2(struct torture_context
*tctx
,
79 struct smbcli_state
*cli
)
84 extern int torture_entries
;
86 if (!torture_setup_dir(cli
, "\\LISTDIR")) {
90 torture_comment(tctx
, "Creating %d files\n", torture_entries
);
92 /* Create torture_entries files and torture_entries directories. */
93 for (i
=0;i
<torture_entries
;i
++) {
95 asprintf(&fname
, "\\LISTDIR\\f%d", i
);
96 fnum
= smbcli_nt_create_full(cli
->tree
, fname
, 0,
98 FILE_ATTRIBUTE_ARCHIVE
,
99 NTCREATEX_SHARE_ACCESS_READ
|NTCREATEX_SHARE_ACCESS_WRITE
,
100 NTCREATEX_DISP_OVERWRITE_IF
, 0, 0);
102 fprintf(stderr
,"(%s) Failed to open %s, error=%s\n",
103 __location__
, fname
, smbcli_errstr(cli
->tree
));
107 smbcli_close(cli
->tree
, fnum
);
109 for (i
=0;i
<torture_entries
;i
++) {
111 asprintf(&fname
, "\\LISTDIR\\d%d", i
);
112 if (NT_STATUS_IS_ERR(smbcli_mkdir(cli
->tree
, fname
))) {
113 fprintf(stderr
,"(%s) Failed to open %s, error=%s\n",
114 __location__
, fname
, smbcli_errstr(cli
->tree
));
120 /* Now ensure that doing an old list sees both files and directories. */
121 num_seen
= smbcli_list_old(cli
->tree
, "\\LISTDIR\\*", FILE_ATTRIBUTE_DIRECTORY
, list_fn
, NULL
);
122 torture_comment(tctx
, "num_seen = %d\n", num_seen
);
123 /* We should see (torture_entries) each of files & directories + . and .. */
124 if (num_seen
!= (2*torture_entries
)+2) {
126 fprintf(stderr
,"(%s) entry count mismatch, should be %d, was %d\n",
127 __location__
, (2*torture_entries
)+2, num_seen
);
131 /* Ensure if we have the "must have" bits we only see the
134 num_seen
= smbcli_list_old(cli
->tree
, "\\LISTDIR\\*", (FILE_ATTRIBUTE_DIRECTORY
<<8)|FILE_ATTRIBUTE_DIRECTORY
, list_fn
, NULL
);
135 torture_comment(tctx
, "num_seen = %d\n", num_seen
);
136 if (num_seen
!= torture_entries
+2) {
138 fprintf(stderr
,"(%s) entry count mismatch, should be %d, was %d\n",
139 __location__
, torture_entries
+2, num_seen
);
142 num_seen
= smbcli_list_old(cli
->tree
, "\\LISTDIR\\*", (FILE_ATTRIBUTE_ARCHIVE
<<8)|FILE_ATTRIBUTE_DIRECTORY
, list_fn
, NULL
);
143 torture_comment(tctx
, "num_seen = %d\n", num_seen
);
144 if (num_seen
!= torture_entries
) {
146 fprintf(stderr
,"(%s) entry count mismatch, should be %d, was %d\n",
147 __location__
, torture_entries
, num_seen
);
150 /* Delete everything. */
151 if (smbcli_deltree(cli
->tree
, "\\LISTDIR") == -1) {
152 fprintf(stderr
,"(%s) Failed to deltree %s, error=%s\n", "\\LISTDIR",
153 __location__
, smbcli_errstr(cli
->tree
));
158 torture_comment(tctx
, "Matched %d\n", smbcli_list(cli
->tree
, "a*.*", 0, list_fn
, NULL
));
159 torture_comment(tctx
, "Matched %d\n", smbcli_list(cli
->tree
, "b*.*", 0, list_fn
, NULL
));
160 torture_comment(tctx
, "Matched %d\n", smbcli_list(cli
->tree
, "xyzabc", 0, list_fn
, NULL
));