s4-smbtorture: add NetRemoteTOD libnetapi torture test.
authorGünther Deschner <gd@samba.org>
Mon, 20 Sep 2010 20:53:09 +0000 (13:53 -0700)
committerGünther Deschner <gd@samba.org>
Mon, 20 Sep 2010 20:53:09 +0000 (13:53 -0700)
Guenther

source4/torture/libnetapi/config.mk
source4/torture/libnetapi/libnetapi.c
source4/torture/libnetapi/libnetapi_server.c [new file with mode: 0644]
source4/torture/libnetapi/wscript_build

index 2ac506e1b2b4f8a90911ff2b73d117faee3625bd..0cd485e44a61c1c12c2abf78e0d2b8e2b657206e 100644 (file)
@@ -12,6 +12,7 @@ PRIVATE_DEPENDENCIES = \
 
 TORTURE_LIBNETAPI_OBJ_FILES = $(addprefix $(torturesrcdir)/libnetapi/, libnetapi.o \
                                        libnetapi_user.o \
-                                       libnetapi_group.o)
+                                       libnetapi_group.o
+                                       libnetapi_server.o)
 
 $(eval $(call proto_header_template,$(torturesrcdir)/libnetapi/proto.h,$(TORTURE_LIBNETAPI_OBJ_FILES:.o=.c)))
index c3a27eba0c04f762faea70166032b9bd2d52aa3c..6854bf84440fd2c909bd3a8e574aac24a0b4d39d 100644 (file)
@@ -68,6 +68,7 @@ NTSTATUS torture_libnetapi_init(void)
 
        suite = torture_suite_create(talloc_autofree_context(), "NETAPI");
 
+       torture_suite_add_simple_test(suite, "SERVER", torture_libnetapi_server);
        torture_suite_add_simple_test(suite, "GROUP", torture_libnetapi_group);
        torture_suite_add_simple_test(suite, "USER", torture_libnetapi_user);
        torture_suite_add_simple_test(suite, "INITIALIZE", torture_libnetapi_initialize);
diff --git a/source4/torture/libnetapi/libnetapi_server.c b/source4/torture/libnetapi/libnetapi_server.c
new file mode 100644 (file)
index 0000000..1888009
--- /dev/null
@@ -0,0 +1,76 @@
+/*
+   Unix SMB/CIFS implementation.
+   SMB torture tester
+   Copyright (C) Guenther Deschner 2010
+
+   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 <netapi.h>
+#include "torture/libnetapi/proto.h"
+
+#define NETAPI_STATUS(tctx, x,y,fn) \
+       torture_warning(tctx, "FAILURE: line %d: %s failed with status: %s (%d)\n", \
+               __LINE__, fn, libnetapi_get_error_string(x,y), y);
+
+bool torture_libnetapi_server(struct torture_context *tctx)
+{
+       NET_API_STATUS status = 0;
+       uint8_t *buffer = NULL;
+       int i;
+
+       const char *hostname = torture_setting_string(tctx, "host", NULL);
+       struct libnetapi_ctx *ctx;
+
+       torture_assert(tctx, torture_libnetapi_init_context(tctx, &ctx),
+                      "failed to initialize libnetapi");
+
+       torture_comment(tctx, "NetServer tests\n");
+
+       torture_comment(tctx, "Testing NetRemoteTOD\n");
+
+       status = NetRemoteTOD(hostname, &buffer);
+       if (status) {
+               NETAPI_STATUS(tctx, ctx, status, "NetRemoteTOD");
+               goto out;
+       }
+       NetApiBufferFree(buffer);
+
+       torture_comment(tctx, "Testing NetRemoteTOD 10 times\n");
+
+       for (i=0; i<10; i++) {
+               status = NetRemoteTOD(hostname, &buffer);
+               if (status) {
+                       NETAPI_STATUS(tctx, ctx, status, "NetRemoteTOD");
+                       goto out;
+               }
+               NetApiBufferFree(buffer);
+       }
+
+       status = 0;
+
+       torture_comment(tctx, "NetServer tests succeeded\n");
+ out:
+       if (status != 0) {
+               torture_comment(tctx, "NetServer testsuite failed with: %s\n",
+                       libnetapi_get_error_string(ctx, status));
+               libnetapi_free(ctx);
+               return false;
+       }
+
+       libnetapi_free(ctx);
+       return true;
+}
index ddcc602f88088b624d2c22cc7cad08c5d6873868..a087c96662d2211d0838082eee3a8b43415d2b98 100644 (file)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 
 bld.SAMBA_MODULE('TORTURE_LIBNETAPI',
-       source='libnetapi.c libnetapi_user.c libnetapi_group.c',
+       source='libnetapi.c libnetapi_user.c libnetapi_group.c libnetapi_server.c',
        autoproto='proto.h',
        subsystem='smbtorture',
        init_function='torture_libnetapi_init',