010ca382a59efce4f1538342d927eb66f471c029
[sfrench/samba-autobuild/.git] / testsuite / libsmbclient / src / lseekdir / lseekdir_1.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 #include <errno.h>
5 #include <libsmbclient.h>
6
7 #define MAX_BUFF_SIZE   255
8 char g_workgroup[MAX_BUFF_SIZE];
9 char g_username[MAX_BUFF_SIZE];
10 char g_password[MAX_BUFF_SIZE];
11 char g_server[MAX_BUFF_SIZE];
12 char g_share[MAX_BUFF_SIZE];
13
14
15 void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, 
16                 char *username, int unmaxlen, char *password, int pwmaxlen)
17 {
18
19         strncpy(workgroup, g_workgroup, wgmaxlen - 1);
20
21         strncpy(username, g_username, unmaxlen - 1);
22
23         strncpy(password, g_password, pwmaxlen - 1);
24
25         strcpy(g_server, server);
26         strcpy(g_share, share);
27
28 }
29
30 int main(int argc, char** argv)
31 {
32         int err = -1;
33         int fd = 0;
34         int dh = 0; 
35         int entry_num = 0;
36         int i = 0;
37         char *file_name;
38         char *tmp_file_ptr;
39
40         char buff[MAX_BUFF_SIZE];
41         char url[MAX_BUFF_SIZE];
42         char file_url[MAX_BUFF_SIZE];
43         char dir_url[MAX_BUFF_SIZE];
44
45         bzero(g_workgroup,MAX_BUFF_SIZE);
46         bzero(url,MAX_BUFF_SIZE);
47         bzero(file_url,MAX_BUFF_SIZE);
48         bzero(dir_url,MAX_BUFF_SIZE);
49         bzero(buff,MAX_BUFF_SIZE);
50
51         if ( argc == 6 )
52         {
53
54                 strncpy(g_workgroup,argv[1],strlen(argv[1]));
55                 strncpy(g_username,argv[2],strlen(argv[2]));
56                 strncpy(g_password,argv[3],strlen(argv[3]));
57                 strncpy(url,argv[4],strlen(argv[4]));
58                 smbc_init(auth_fn, 0);
59
60                 strncpy(file_url,"tempfile-",9);
61                 tmp_file_ptr = file_url;
62                 tmp_file_ptr += 9;
63
64                 smbc_rmdir(url);
65                 smbc_mkdir(url,0666);
66
67                 entry_num = atoi(argv[5]);
68                 strcat(dir_url,url);
69                 strcat(dir_url,"/");
70
71                 file_name = dir_url;
72                 file_name += strlen(dir_url);
73
74                 for ( i = 0; i < entry_num; i++ )
75                 {
76                         sprintf(buff,"%d",i);
77                         memcpy(tmp_file_ptr,buff,strlen(buff)+4);       
78                         strncat(tmp_file_ptr,".txt",4);
79                         strcpy(file_name,file_url);
80                         fd = smbc_open(dir_url,O_RDWR | O_CREAT, 0666);
81                         smbc_close(fd);
82
83                 }
84
85                 dh = smbc_opendir(url);
86                 /* printf("directory handle: %i\n",dh); */
87                 err = smbc_lseekdir(dh,0);
88                 /* printf("err: %i\n",err); */
89
90                 if ( err < 0 )  
91
92                         err = 1;
93
94                 else
95                         err = 0;
96
97         }
98
99         return err;
100
101 }
102