s3:winbindd: s/struct event_context/struct tevent_context
[Samba/gebeck_regimport.git] / source4 / torture / libnetapi / libnetapi.c
blobc5169760aaa97125004e533df020a35e436b2b75
1 /*
2 Unix SMB/CIFS implementation.
3 SMB torture tester
4 Copyright (C) Guenther Deschner 2009
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "source3/include/includes.h"
21 #include "torture/smbtorture.h"
22 #include "auth/credentials/credentials.h"
23 #include "lib/cmdline/popt_common.h"
24 #include "source3/lib/netapi/netapi.h"
25 #include "source3/lib/netapi/netapi_private.h"
26 #include "lib/param/param.h"
27 #include "torture/libnetapi/proto.h"
29 bool torture_libnetapi_init_context(struct torture_context *tctx,
30 struct libnetapi_ctx **ctx_p)
32 NET_API_STATUS status;
33 struct libnetapi_ctx *ctx;
34 TALLOC_CTX *frame = talloc_stackframe();
36 if (!lp_load(lpcfg_configfile(tctx->lp_ctx), true, false, false, true)) {
37 fprintf(stderr, "error loading %s\n", lpcfg_configfile(tctx->lp_ctx));
38 return W_ERROR_V(WERR_GENERAL_FAILURE);
41 init_names();
42 load_interfaces();
44 status = libnetapi_net_init(&ctx);
45 if (status != 0) {
46 talloc_free(frame);
47 return false;
50 libnetapi_set_username(ctx,
51 cli_credentials_get_username(cmdline_credentials));
52 libnetapi_set_password(ctx,
53 cli_credentials_get_password(cmdline_credentials));
55 *ctx_p = ctx;
57 talloc_free(frame);
58 return true;
61 static bool torture_libnetapi_initialize(struct torture_context *tctx)
63 NET_API_STATUS status;
64 struct libnetapi_ctx *ctx;
66 /* We must do this first, as otherwise we fail if we don't
67 * have an smb.conf in the default path (we need to use the
68 * torture smb.conf */
69 torture_assert(tctx, torture_libnetapi_init_context(tctx, &ctx),
70 "failed to initialize libnetapi");
72 status = libnetapi_init(&ctx);
74 torture_assert(tctx, ctx != NULL, "Failed to get a libnetapi_ctx");
75 torture_assert_int_equal(tctx, status, 0, "libnetapi_init failed despite alredy being set up");
77 libnetapi_free(ctx);
79 return true;
82 NTSTATUS torture_libnetapi_init(void)
84 struct torture_suite *suite;
86 suite = torture_suite_create(talloc_autofree_context(), "netapi");
88 torture_suite_add_simple_test(suite, "server", torture_libnetapi_server);
89 torture_suite_add_simple_test(suite, "group", torture_libnetapi_group);
90 torture_suite_add_simple_test(suite, "user", torture_libnetapi_user);
91 torture_suite_add_simple_test(suite, "initialize", torture_libnetapi_initialize);
93 suite->description = talloc_strdup(suite, "libnetapi convenience interface tests");
95 torture_register_suite(suite);
97 return NT_STATUS_OK;