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