s3:winbindd: s/struct event_context/struct tevent_context
[Samba/gebeck_regimport.git] / source4 / torture / util.h
blob3c72309b236ab4600f42d74760fa4db7452aa3c3
1 /*
2 Unix SMB/CIFS implementation.
3 Samba utility functions
4 Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008
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.
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.
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/>.
20 #ifndef _TORTURE_UTIL_H_
21 #define _TORTURE_UTIL_H_
23 #include "lib/torture/torture.h"
25 struct smbcli_state;
26 struct smbcli_tree;
28 /**
29 * Useful target macros for handling server bugs in torture tests.
31 #define TARGET_IS_WINXP(_tctx) (torture_setting_bool(_tctx, "winxp", false))
32 #define TARGET_IS_W2K3(_tctx) (torture_setting_bool(_tctx, "w2k3", false))
33 #define TARGET_IS_W2K8(_tctx) (torture_setting_bool(_tctx, "w2k8", false))
34 #define TARGET_IS_WIN7(_tctx) (torture_setting_bool(_tctx, "win7", false))
35 #define TARGET_IS_SAMBA3(_tctx) (torture_setting_bool(_tctx, "samba3", false))
36 #define TARGET_IS_SAMBA4(_tctx) (torture_setting_bool(_tctx, "samba4", false))
38 /**
39 setup a directory ready for a test
41 _PUBLIC_ bool torture_setup_dir(struct smbcli_state *cli, const char *dname);
42 NTSTATUS create_directory_handle(struct smbcli_tree *tree, const char *dname, int *fnum);
44 /**
45 sometimes we need a fairly complex file to work with, so we can test
46 all possible attributes.
48 _PUBLIC_ int create_complex_file(struct smbcli_state *cli, TALLOC_CTX *mem_ctx, const char *fname);
49 int create_complex_dir(struct smbcli_state *cli, TALLOC_CTX *mem_ctx, const char *dname);
51 /**
52 check that a wire string matches the flags specified
53 not 100% accurate, but close enough for testing
55 bool wire_bad_flags(struct smb_wire_string *str, int flags,
56 struct smbcli_transport *transport);
57 void dump_all_info(TALLOC_CTX *mem_ctx, union smb_fileinfo *finfo);
58 void torture_all_info(struct smbcli_tree *tree, const char *fname);
59 bool torture_set_file_attribute(struct smbcli_tree *tree, const char *fname, uint16_t attrib);
60 NTSTATUS torture_set_sparse(struct smbcli_tree *tree, int fnum);
61 NTSTATUS torture_check_ea(struct smbcli_state *cli,
62 const char *fname, const char *eaname, const char *value);
63 _PUBLIC_ bool torture_open_connection_share(TALLOC_CTX *mem_ctx,
64 struct smbcli_state **c,
65 struct torture_context *tctx,
66 const char *hostname,
67 const char *sharename,
68 struct tevent_context *ev);
69 _PUBLIC_ bool torture_get_conn_index(int conn_index,
70 TALLOC_CTX *mem_ctx,
71 struct torture_context *tctx,
72 char **host, char **share);
73 _PUBLIC_ bool torture_open_connection_ev(struct smbcli_state **c,
74 int conn_index,
75 struct torture_context *tctx,
76 struct tevent_context *ev);
77 _PUBLIC_ bool torture_open_connection(struct smbcli_state **c, struct torture_context *tctx, int conn_index);
78 _PUBLIC_ bool torture_close_connection(struct smbcli_state *c);
79 _PUBLIC_ bool check_error(const char *location, struct smbcli_state *c,
80 uint8_t eclass, uint32_t ecode, NTSTATUS nterr);
81 double torture_create_procs(struct torture_context *tctx,
82 bool (*fn)(struct torture_context *, struct smbcli_state *, int), bool *result);
83 _PUBLIC_ struct torture_test *torture_suite_add_smb_multi_test(
84 struct torture_suite *suite,
85 const char *name,
86 bool (*run) (struct torture_context *,
87 struct smbcli_state *,
88 int i));
89 _PUBLIC_ struct torture_test *torture_suite_add_2smb_test(
90 struct torture_suite *suite,
91 const char *name,
92 bool (*run) (struct torture_context *,
93 struct smbcli_state *,
94 struct smbcli_state *));
95 _PUBLIC_ struct torture_test *torture_suite_add_1smb_test(
96 struct torture_suite *suite,
97 const char *name,
98 bool (*run) (struct torture_context *, struct smbcli_state *));
99 NTSTATUS torture_second_tcon(TALLOC_CTX *mem_ctx,
100 struct smbcli_session *session,
101 const char *sharename,
102 struct smbcli_tree **res);
105 NTSTATUS torture_check_privilege(struct smbcli_state *cli,
106 const char *sid_str,
107 const char *privilege);
110 #endif /* _TORTURE_UTIL_H_ */