Merge commit 'release-4-0-0alpha1' into v4-0-test
[kai/samba.git] / source / torture / libnet / libnet.c
1 /* 
2    Unix SMB/CIFS implementation.
3    SMB torture tester
4    Copyright (C) Jelmer Vernooij 2006
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 #include "includes.h"
21 #include "torture/torture.h"
22 #include "torture/libnet/proto.h"
23
24 NTSTATUS torture_net_init(void)
25 {
26         struct torture_suite *suite = torture_suite_create(talloc_autofree_context(), "NET");
27
28         torture_suite_add_simple_test(suite, "USERINFO", torture_userinfo);
29         torture_suite_add_simple_test(suite, "USERADD", torture_useradd);
30         torture_suite_add_simple_test(suite, "USERDEL", torture_userdel);
31         torture_suite_add_simple_test(suite, "USERMOD", torture_usermod);
32         torture_suite_add_simple_test(suite, "DOMOPEN", torture_domainopen);
33         torture_suite_add_simple_test(suite, "GROUPINFO", torture_groupinfo);
34         torture_suite_add_simple_test(suite, "GROUPADD", torture_groupadd);
35         torture_suite_add_simple_test(suite, "API-LOOKUP", torture_lookup);
36         torture_suite_add_simple_test(suite, "API-LOOKUPHOST", torture_lookup_host);
37         torture_suite_add_simple_test(suite, "API-LOOKUPPDC", torture_lookup_pdc);
38         torture_suite_add_simple_test(suite, "API-LOOKUPNAME", torture_lookup_sam_name);
39         torture_suite_add_simple_test(suite, "API-CREATEUSER", torture_createuser);
40         torture_suite_add_simple_test(suite, "API-DELETEUSER", torture_deleteuser);
41         torture_suite_add_simple_test(suite, "API-MODIFYUSER", torture_modifyuser);
42         torture_suite_add_simple_test(suite, "API-USERINFO", torture_userinfo_api);
43         torture_suite_add_simple_test(suite, "API-USERLIST", torture_userlist);
44         torture_suite_add_simple_test(suite, "API-GROUPINFO", torture_groupinfo_api);
45         torture_suite_add_simple_test(suite, "API-RPCCONN-BIND", torture_rpc_connect_binding);
46         torture_suite_add_simple_test(suite, "API-RPCCONN-SRV", torture_rpc_connect_srv);
47         torture_suite_add_simple_test(suite, "API-RPCCONN-PDC", torture_rpc_connect_pdc);
48         torture_suite_add_simple_test(suite, "API-RPCCONN-DC", torture_rpc_connect_dc);
49         torture_suite_add_simple_test(suite, "API-RPCCONN-DCINFO", torture_rpc_connect_dc_info);
50         torture_suite_add_simple_test(suite, "API-LISTSHARES", torture_listshares);
51         torture_suite_add_simple_test(suite, "API-DELSHARE", torture_delshare);
52         torture_suite_add_simple_test(suite, "API-DOMOPENLSA", torture_domain_open_lsa);
53         torture_suite_add_simple_test(suite, "API-DOMCLOSELSA", torture_domain_close_lsa);
54         torture_suite_add_simple_test(suite, "API-DOMOPENSAMR", torture_domain_open_samr);
55         torture_suite_add_simple_test(suite, "API-DOMCLOSESAMR", torture_domain_close_samr);
56         torture_suite_add_simple_test(suite, "API-BECOME-DC", torture_net_become_dc);
57         torture_suite_add_simple_test(suite, "API-DOMLIST", torture_domain_list);
58
59         suite->description = talloc_strdup(suite, "libnet convenience interface tests");
60
61         torture_register_suite(suite);
62
63         return NT_STATUS_OK;
64 }