summaryrefslogtreecommitdiff
path: root/source4/torture/drs/drs_init.c
diff options
context:
space:
mode:
authorKamen Mazdrashki <kamen.mazdrashki@postpath.com>2009-10-05 18:39:13 +0300
committerAnatoliy Atanasov <anatoliy.atanasov@postpath.com>2009-10-16 12:54:14 +0300
commit6a680cea6a58f4a0d980be8ba47286293ab6f9ab (patch)
tree50f4ec711b2b6be24728b2817ffccc60545aec96 /source4/torture/drs/drs_init.c
parent40a8a2268454a55103c5c675d6fc07efa3cb6f31 (diff)
downloadsamba-6a680cea6a58f4a0d980be8ba47286293ab6f9ab.tar.gz
samba-6a680cea6a58f4a0d980be8ba47286293ab6f9ab.tar.bz2
samba-6a680cea6a58f4a0d980be8ba47286293ab6f9ab.zip
s4/drs(tort): TORTURE_DRS torture module - initial implementation
Drsuapi tests module registers two suites: - DRS-RPC - tests to be executed against remote machine - DRS-UNIT - unit test for internal testing
Diffstat (limited to 'source4/torture/drs/drs_init.c')
-rw-r--r--source4/torture/drs/drs_init.c68
1 files changed, 68 insertions, 0 deletions
diff --git a/source4/torture/drs/drs_init.c b/source4/torture/drs/drs_init.c
new file mode 100644
index 0000000000..f26a66818a
--- /dev/null
+++ b/source4/torture/drs/drs_init.c
@@ -0,0 +1,68 @@
+/*
+ Unix SMB/CIFS implementation.
+
+ DRSUAPI utility functions to be used in torture tests
+
+ Copyright (C) Kamen Mazdrashki <kamen.mazdrashki@postpath.com> 2009
+
+ 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 3 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, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "includes.h"
+#include "torture/smbtorture.h"
+#include "torture/drs/proto.h"
+
+/**
+ * DRSUAPI tests to be executed remotely
+ */
+static struct torture_suite * torture_drs_rpc_suite(TALLOC_CTX *mem_ctx)
+{
+ struct torture_suite *suite = torture_suite_create(
+ talloc_autofree_context(),
+ "RPC");
+
+ return suite;
+}
+
+/**
+ * DRSUAPI tests to be executed remotely
+ */
+static struct torture_suite * torture_drs_unit_suite(TALLOC_CTX *mem_ctx)
+{
+ struct torture_suite *suite = torture_suite_create(
+ talloc_autofree_context(),
+ "UNIT");
+
+ return suite;
+}
+
+/**
+ * DRSUAPI torture module initialization
+ */
+NTSTATUS torture_drs_init(void)
+{
+ struct torture_suite *suite = torture_suite_create(
+ talloc_autofree_context(),
+ "DRS");
+
+ torture_suite_add_suite(suite, torture_drs_rpc_suite(suite));
+ torture_suite_add_suite(suite, torture_drs_unit_suite(suite));
+
+ suite->description = talloc_strdup(suite,
+ "DRSUAPI related tests - Remote and Local");
+
+ torture_register_suite(suite);
+
+ return NT_STATUS_OK;
+}