s4-drs: fixed updating of uSNChanged in replmd_modify
[Samba.git] / source4 / torture / util.h
blob35662416b5ab274e7531e7ce2cfb4d4d8de39f26
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_W2K8(_tctx) (torture_setting_bool(_tctx, "w2k8", false))
32 #define TARGET_IS_WIN7(_tctx) (torture_setting_bool(_tctx, "win7", false))
33 #define TARGET_IS_SAMBA3(_tctx) (torture_setting_bool(_tctx, "samba3", false))
34 #define TARGET_IS_SAMBA4(_tctx) (torture_setting_bool(_tctx, "samba4", false))
36 /**
37 setup a directory ready for a test
39 _PUBLIC_ bool torture_setup_dir(struct smbcli_state *cli, const char *dname);
40 NTSTATUS create_directory_handle(struct smbcli_tree *tree, const char *dname, int *fnum);
42 /**
43 sometimes we need a fairly complex file to work with, so we can test
44 all possible attributes.
46 _PUBLIC_ int create_complex_file(struct smbcli_state *cli, TALLOC_CTX *mem_ctx, const char *fname);
47 int create_complex_dir(struct smbcli_state *cli, TALLOC_CTX *mem_ctx, const char *dname);
48 void *shm_setup(int size);
50 /**
51 check that a wire string matches the flags specified
52 not 100% accurate, but close enough for testing
54 bool wire_bad_flags(struct smb_wire_string *str, int flags,
55 struct smbcli_transport *transport);
56 void dump_all_info(TALLOC_CTX *mem_ctx, union smb_fileinfo *finfo);
57 void torture_all_info(struct smbcli_tree *tree, const char *fname);
58 bool torture_set_file_attribute(struct smbcli_tree *tree, const char *fname, uint16_t attrib);
59 NTSTATUS torture_set_sparse(struct smbcli_tree *tree, int fnum);
60 NTSTATUS torture_check_ea(struct smbcli_state *cli,
61 const char *fname, const char *eaname, const char *value);
62 _PUBLIC_ bool torture_open_connection_share(TALLOC_CTX *mem_ctx,
63 struct smbcli_state **c,
64 struct torture_context *tctx,
65 const char *hostname,
66 const char *sharename,
67 struct tevent_context *ev);
68 _PUBLIC_ bool torture_get_conn_index(int conn_index,
69 TALLOC_CTX *mem_ctx,
70 struct torture_context *tctx,
71 char **host, char **share);
72 _PUBLIC_ bool torture_open_connection_ev(struct smbcli_state **c,
73 int conn_index,
74 struct torture_context *tctx,
75 struct tevent_context *ev);
76 _PUBLIC_ bool torture_open_connection(struct smbcli_state **c, struct torture_context *tctx, int conn_index);
77 _PUBLIC_ bool torture_close_connection(struct smbcli_state *c);
78 _PUBLIC_ bool check_error(const char *location, struct smbcli_state *c,
79 uint8_t eclass, uint32_t ecode, NTSTATUS nterr);
80 double torture_create_procs(struct torture_context *tctx,
81 bool (*fn)(struct torture_context *, struct smbcli_state *, int), bool *result);
82 _PUBLIC_ struct torture_test *torture_suite_add_smb_multi_test(
83 struct torture_suite *suite,
84 const char *name,
85 bool (*run) (struct torture_context *,
86 struct smbcli_state *,
87 int i));
88 _PUBLIC_ struct torture_test *torture_suite_add_2smb_test(
89 struct torture_suite *suite,
90 const char *name,
91 bool (*run) (struct torture_context *,
92 struct smbcli_state *,
93 struct smbcli_state *));
94 _PUBLIC_ struct torture_test *torture_suite_add_1smb_test(
95 struct torture_suite *suite,
96 const char *name,
97 bool (*run) (struct torture_context *, struct smbcli_state *));
98 NTSTATUS torture_second_tcon(TALLOC_CTX *mem_ctx,
99 struct smbcli_session *session,
100 const char *sharename,
101 struct smbcli_tree **res);
104 NTSTATUS torture_check_privilege(struct smbcli_state *cli,
105 const char *sid_str,
106 const char *privilege);
108 #endif /* _TORTURE_UTIL_H_ */