s4-torture: validate owf password hash and negotiate AES in forest trust test.
[Samba/gebeck_regimport.git] / source4 / torture / rpc / initshutdown.c
blob28eaacd5e5fd828d098bb44bafdebaaea72a8b92
1 /*
2 Unix SMB/CIFS implementation.
3 test suite for initshutdown operations
5 Copyright (C) Tim Potter 2003
6 Copyright (C) Jelmer Vernooij 2004-2005
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.
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.
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/>.
22 #include "includes.h"
23 #include "librpc/gen_ndr/ndr_initshutdown_c.h"
24 #include "torture/rpc/torture_rpc.h"
26 static void init_lsa_StringLarge(struct lsa_StringLarge *name, const char *s)
28 name->string = s;
32 static bool test_Abort(struct torture_context *tctx,
33 struct dcerpc_pipe *p)
35 struct initshutdown_Abort r;
36 NTSTATUS status;
37 uint16_t server = 0x0;
38 struct dcerpc_binding_handle *b = p->binding_handle;
40 r.in.server = &server;
42 status = dcerpc_initshutdown_Abort_r(b, tctx, &r);
44 torture_assert_ntstatus_ok(tctx, status,
45 "initshutdown_Abort failed");
47 torture_assert_werr_ok(tctx, r.out.result, "initshutdown_Abort failed");
49 return true;
52 static bool test_Init(struct torture_context *tctx,
53 struct dcerpc_pipe *p)
55 struct initshutdown_Init r;
56 NTSTATUS status;
57 uint16_t hostname = 0x0;
58 struct dcerpc_binding_handle *b = p->binding_handle;
60 r.in.hostname = &hostname;
61 r.in.message = talloc(tctx, struct lsa_StringLarge);
62 init_lsa_StringLarge(r.in.message, "spottyfood");
63 r.in.force_apps = 1;
64 r.in.timeout = 30;
65 r.in.do_reboot = 1;
67 status = dcerpc_initshutdown_Init_r(b, tctx, &r);
69 torture_assert_ntstatus_ok(tctx, status, "initshutdown_Init failed");
70 torture_assert_werr_ok(tctx, r.out.result, "initshutdown_Init failed");
72 return test_Abort(tctx, p);
75 static bool test_InitEx(struct torture_context *tctx,
76 struct dcerpc_pipe *p)
78 struct initshutdown_InitEx r;
79 NTSTATUS status;
80 uint16_t hostname = 0x0;
81 struct dcerpc_binding_handle *b = p->binding_handle;
83 r.in.hostname = &hostname;
84 r.in.message = talloc(tctx, struct lsa_StringLarge);
85 init_lsa_StringLarge(r.in.message, "spottyfood");
86 r.in.force_apps = 1;
87 r.in.timeout = 30;
88 r.in.do_reboot = 1;
89 r.in.reason = 0;
91 status = dcerpc_initshutdown_InitEx_r(b, tctx, &r);
93 torture_assert_ntstatus_ok(tctx, status, "initshutdown_InitEx failed");
95 torture_assert_werr_ok(tctx, r.out.result, "initshutdown_InitEx failed");
97 return test_Abort(tctx, p);
101 struct torture_suite *torture_rpc_initshutdown(TALLOC_CTX *mem_ctx)
103 struct torture_suite *suite = torture_suite_create(mem_ctx, "initshutdown");
104 struct torture_rpc_tcase *tcase;
105 struct torture_test *test;
107 tcase = torture_suite_add_rpc_iface_tcase(suite, "initshutdown",
108 &ndr_table_initshutdown);
110 test = torture_rpc_tcase_add_test(tcase, "Init", test_Init);
111 test->dangerous = true;
112 test = torture_rpc_tcase_add_test(tcase, "InitEx", test_InitEx);
113 test->dangerous = true;
115 return suite;