summaryrefslogtreecommitdiffstats
path: root/source4/torture/local/local.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 17:20:00 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 17:20:00 +0000
commit8daa83a594a2e98f39d764422bfbdbc62c9efd44 (patch)
tree4099e8021376c7d8c05bdf8503093d80e9c7bad0 /source4/torture/local/local.c
parentInitial commit. (diff)
downloadsamba-8daa83a594a2e98f39d764422bfbdbc62c9efd44.tar.xz
samba-8daa83a594a2e98f39d764422bfbdbc62c9efd44.zip
Adding upstream version 2:4.20.0+dfsg.upstream/2%4.20.0+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'source4/torture/local/local.c')
-rw-r--r--source4/torture/local/local.c105
1 files changed, 105 insertions, 0 deletions
diff --git a/source4/torture/local/local.c b/source4/torture/local/local.c
new file mode 100644
index 0000000..95417ef
--- /dev/null
+++ b/source4/torture/local/local.c
@@ -0,0 +1,105 @@
+/*
+ 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 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/local/proto.h"
+#include "torture/ndr/proto.h"
+#include "torture/auth/proto.h"
+#include "../lib/crypto/test_proto.h"
+#include "lib/registry/tests/proto.h"
+#include "lib/replace/replace-testsuite.h"
+
+/* ignore me */ static struct torture_suite *
+ (*suite_generators[]) (TALLOC_CTX *mem_ctx) =
+{
+ torture_local_binding_string,
+ torture_ntlmssp,
+ torture_smbencrypt,
+ torture_local_messaging,
+ torture_local_irpc,
+ torture_local_util_strlist,
+ torture_local_util_file,
+ torture_local_util_str,
+ torture_local_util_time,
+ torture_local_util_data_blob,
+ torture_local_util_binsearch,
+ torture_local_util_asn1,
+ torture_local_util_anonymous_shared,
+ torture_local_util_strv,
+ torture_local_util_strv_util,
+ torture_local_util,
+ torture_local_idtree,
+ torture_local_dlinklist,
+ torture_local_genrand,
+ torture_local_iconv,
+ torture_local_socket,
+ torture_pac,
+ torture_local_resolve,
+ torture_local_ndr,
+ torture_local_tdr,
+ torture_local_share,
+ torture_local_loadparm,
+ torture_local_charset,
+ torture_local_convert_string_handle,
+ torture_local_convert_string,
+ torture_local_string_case_handle,
+ torture_local_string_case,
+ torture_local_util_unistr,
+ torture_local_event,
+ torture_local_tevent_req,
+ torture_local_torture,
+ torture_local_dbspeed,
+ torture_ldb,
+ torture_dsdb_dn,
+ torture_dsdb_syntax,
+ torture_registry,
+ torture_local_verif_trailer,
+ torture_local_nss,
+ torture_local_fsrvp,
+ torture_local_util_str_escape,
+ torture_local_tfork,
+ torture_local_mdspkt,
+ torture_local_smbtorture,
+ NULL
+};
+
+NTSTATUS torture_local_init(TALLOC_CTX *ctx)
+{
+ int i;
+ struct torture_suite *suite = torture_suite_create(
+ ctx, "local");
+
+ torture_suite_add_simple_test(suite, "talloc", torture_local_talloc);
+ torture_suite_add_simple_test(suite, "replace", torture_local_replace);
+
+ torture_suite_add_simple_test(suite,
+ "crypto.md4", torture_local_crypto_md4);
+
+ for (i = 0; suite_generators[i]; i++)
+ torture_suite_add_suite(suite,
+ suite_generators[i](ctx));
+
+ suite->description = talloc_strdup(suite,
+ "Local, Samba-specific tests");
+
+ torture_register_suite(ctx, suite);
+
+ return NT_STATUS_OK;
+}