aba35341b64f65137b58cc7f12b50f46a4cb6fce
[mat/samba.git] / source4 / torture / drs / drs_init.c
1 /*
2    Unix SMB/CIFS implementation.
3
4    DRSUAPI utility functions to be used in torture tests
5
6    Copyright (C) Kamen Mazdrashki <kamen.mazdrashki@postpath.com> 2009
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #include "includes.h"
23 #include "torture/smbtorture.h"
24 #include "torture/rpc/drsuapi.h"
25 #include "dsdb/samdb/samdb.h"
26 #include "torture/drs/proto.h"
27
28 /**
29  * DRSUAPI tests to be executed remotely
30  */
31 static struct torture_suite * torture_drs_rpc_suite(TALLOC_CTX *mem_ctx)
32 {
33         struct torture_suite *suite = torture_suite_create(
34                 talloc_autofree_context(),
35                 "RPC");
36
37         torture_drs_rpc_dssync_tcase(suite);
38
39         return suite;
40 }
41
42 /**
43  * DRSUAPI tests to be executed remotely
44  */
45 static struct torture_suite * torture_drs_unit_suite(TALLOC_CTX *mem_ctx)
46 {
47         struct torture_suite *suite = torture_suite_create(
48                 talloc_autofree_context(),
49                 "UNIT");
50
51         torture_drs_unit_prefixmap(suite);
52         torture_drs_unit_schemainfo(suite);
53
54         return suite;
55 }
56
57 /**
58  * DRSUAPI torture module initialization
59  */
60 NTSTATUS torture_drs_init(void)
61 {
62         struct torture_suite *suite = torture_suite_create(
63                 talloc_autofree_context(),
64                 "DRS");
65
66         torture_suite_add_suite(suite, torture_drs_rpc_suite(suite));
67         torture_suite_add_suite(suite, torture_drs_unit_suite(suite));
68
69         suite->description = talloc_strdup(suite,
70                                            "DRSUAPI related tests - Remote and Local");
71
72         torture_register_suite(suite);
73
74         return NT_STATUS_OK;
75 }