mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
25e468e83f
metze
(This used to be commit 0359d9a00b
)
62 lines
3.1 KiB
C
62 lines
3.1 KiB
C
/*
|
|
Unix SMB/CIFS implementation.
|
|
SMB torture tester
|
|
Copyright (C) Jelmer Vernooij 2006
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#include "includes.h"
|
|
#include "torture/torture.h"
|
|
#include "torture/libnet/proto.h"
|
|
|
|
NTSTATUS torture_net_init(void)
|
|
{
|
|
struct torture_suite *suite = torture_suite_create(talloc_autofree_context(), "NET");
|
|
|
|
torture_suite_add_simple_test(suite, "USERINFO", torture_userinfo);
|
|
torture_suite_add_simple_test(suite, "USERADD", torture_useradd);
|
|
torture_suite_add_simple_test(suite, "USERDEL", torture_userdel);
|
|
torture_suite_add_simple_test(suite, "USERMOD", torture_usermod);
|
|
torture_suite_add_simple_test(suite, "DOMOPEN", torture_domainopen);
|
|
torture_suite_add_simple_test(suite, "API-LOOKUP", torture_lookup);
|
|
torture_suite_add_simple_test(suite, "API-LOOKUPHOST", torture_lookup_host);
|
|
torture_suite_add_simple_test(suite, "API-LOOKUPPDC", torture_lookup_pdc);
|
|
torture_suite_add_simple_test(suite, "API-LOOKUPNAME", torture_lookup_sam_name);
|
|
torture_suite_add_simple_test(suite, "API-CREATEUSER", torture_createuser);
|
|
torture_suite_add_simple_test(suite, "API-DELETEUSER", torture_deleteuser);
|
|
torture_suite_add_simple_test(suite, "API-MODIFYUSER", torture_modifyuser);
|
|
torture_suite_add_simple_test(suite, "API-USERINFO", torture_userinfo_api);
|
|
torture_suite_add_simple_test(suite, "API-USERLIST", torture_userlist);
|
|
torture_suite_add_simple_test(suite, "API-RPCCONN-BIND", torture_rpc_connect_binding);
|
|
torture_suite_add_simple_test(suite, "API-RPCCONN-SRV", torture_rpc_connect_srv);
|
|
torture_suite_add_simple_test(suite, "API-RPCCONN-PDC", torture_rpc_connect_pdc);
|
|
torture_suite_add_simple_test(suite, "API-RPCCONN-DC", torture_rpc_connect_dc);
|
|
torture_suite_add_simple_test(suite, "API-RPCCONN-DCINFO", torture_rpc_connect_dc_info);
|
|
torture_suite_add_simple_test(suite, "API-LISTSHARES", torture_listshares);
|
|
torture_suite_add_simple_test(suite, "API-DELSHARE", torture_delshare);
|
|
torture_suite_add_simple_test(suite, "API-DOMOPENLSA", torture_domain_open_lsa);
|
|
torture_suite_add_simple_test(suite, "API-DOMCLOSELSA", torture_domain_close_lsa);
|
|
torture_suite_add_simple_test(suite, "API-DOMOPENSAMR", torture_domain_open_samr);
|
|
torture_suite_add_simple_test(suite, "API-DOMCLOSESAMR", torture_domain_close_samr);
|
|
torture_suite_add_simple_test(suite, "API-BECOME-DC", torture_net_become_dc);
|
|
|
|
suite->description = talloc_strdup(suite, "libnet convenience interface tests");
|
|
|
|
torture_register_suite(suite);
|
|
|
|
return NT_STATUS_OK;
|
|
}
|