Merge branch 'v4-0-test' of git://git.samba.org/samba into 4-0-local
[samba.git] / source4 / torture / util.h
1 /* 
2    Unix SMB/CIFS implementation.
3    Samba utility functions
4    Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008
5    
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.
10    
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.
15    
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/>.
18 */
19
20 #ifndef _TORTURE_PROVISION_H_
21 #define _TORTURE_PROVISION_H_
22
23 struct provision_settings {
24         const char *dns_name;
25         const char *site_name;
26         const char *root_dn_str; 
27         const char *domain_dn_str;
28         const char *config_dn_str;
29         const char *schema_dn_str;
30         const struct GUID *invocation_id;
31         const char *netbios_name;
32         const char *host_ip;
33         const char *realm;
34         const char *domain;
35         const struct GUID *ntds_guid;
36         const char *ntds_dn_str;
37         const char *machine_password;
38         const char *targetdir;
39 };
40
41 NTSTATUS provision_bare(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx,
42                                                 struct provision_settings *settings);
43
44
45 /**
46   setup a directory ready for a test
47 */
48 _PUBLIC_ bool torture_setup_dir(struct smbcli_state *cli, const char *dname);
49 NTSTATUS create_directory_handle(struct smbcli_tree *tree, const char *dname, int *fnum);
50
51 /**
52   sometimes we need a fairly complex file to work with, so we can test
53   all possible attributes. 
54 */
55 _PUBLIC_ int create_complex_file(struct smbcli_state *cli, TALLOC_CTX *mem_ctx, const char *fname);
56 int create_complex_dir(struct smbcli_state *cli, TALLOC_CTX *mem_ctx, const char *dname);
57 void *shm_setup(int size);
58
59 /**
60   check that a wire string matches the flags specified 
61   not 100% accurate, but close enough for testing
62 */
63 bool wire_bad_flags(struct smb_wire_string *str, int flags, 
64                     struct smbcli_transport *transport);
65 void dump_all_info(TALLOC_CTX *mem_ctx, union smb_fileinfo *finfo);
66 void torture_all_info(struct smbcli_tree *tree, const char *fname);
67 bool torture_set_file_attribute(struct smbcli_tree *tree, const char *fname, uint16_t attrib);
68 NTSTATUS torture_set_sparse(struct smbcli_tree *tree, int fnum);
69 NTSTATUS torture_check_ea(struct smbcli_state *cli, 
70                           const char *fname, const char *eaname, const char *value);
71 _PUBLIC_ bool torture_open_connection_share(TALLOC_CTX *mem_ctx,
72                                    struct smbcli_state **c, 
73                                    struct torture_context *tctx,
74                                    const char *hostname, 
75                                    const char *sharename,
76                                    struct event_context *ev);
77 _PUBLIC_ bool torture_get_conn_index(int conn_index,
78                                      TALLOC_CTX *mem_ctx,
79                                      struct torture_context *tctx,
80                                      char **host, char **share);
81 _PUBLIC_ bool torture_open_connection_ev(struct smbcli_state **c,
82                                          int conn_index,
83                                          struct torture_context *tctx,
84                                          struct event_context *ev);
85 _PUBLIC_ bool torture_open_connection(struct smbcli_state **c, struct torture_context *tctx, int conn_index);
86 _PUBLIC_ bool torture_close_connection(struct smbcli_state *c);
87 _PUBLIC_ bool check_error(const char *location, struct smbcli_state *c, 
88                  uint8_t eclass, uint32_t ecode, NTSTATUS nterr);
89 double torture_create_procs(struct torture_context *tctx, 
90                                                         bool (*fn)(struct torture_context *, struct smbcli_state *, int), bool *result);
91 _PUBLIC_ struct torture_test *torture_suite_add_smb_multi_test(
92                                                                         struct torture_suite *suite,
93                                                                         const char *name,
94                                                                         bool (*run) (struct torture_context *,
95                                                                                                  struct smbcli_state *,
96                                                                                                 int i));
97 _PUBLIC_ struct torture_test *torture_suite_add_2smb_test(
98                                                                         struct torture_suite *suite,
99                                                                         const char *name,
100                                                                         bool (*run) (struct torture_context *,
101                                                                                                 struct smbcli_state *,
102                                                                                                 struct smbcli_state *));
103 _PUBLIC_ struct torture_test *torture_suite_add_1smb_test(
104                                 struct torture_suite *suite,
105                                 const char *name,
106                                 bool (*run) (struct torture_context *, struct smbcli_state *));
107 NTSTATUS torture_second_tcon(TALLOC_CTX *mem_ctx,
108                              struct smbcli_session *session,
109                              const char *sharename,
110                              struct smbcli_tree **res);
111
112
113
114 #endif /* _TORTURE_PROVISION_H_ */