r12510: Change the DCE/RPC interfaces to take a pointer to a
[kai/samba.git] / source4 / torture / rpc / dssetup.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    test suite for dssetup rpc operations
5
6    Copyright (C) Andrew Tridgell 2004
7    
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 2 of the License, or
11    (at your option) any later version.
12    
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.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24 #include "librpc/gen_ndr/ndr_dssetup.h"
25
26
27 BOOL test_DsRoleGetPrimaryDomainInformation(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
28 {
29         struct dssetup_DsRoleGetPrimaryDomainInformation r;
30         NTSTATUS status;
31         BOOL ret = True;
32         int i;
33
34         printf("\ntesting DsRoleGetPrimaryDomainInformation\n");
35
36         for (i=DS_ROLE_BASIC_INFORMATION; i <= DS_ROLE_OP_STATUS; i++) {
37                 r.in.level = i;
38
39                 status = dcerpc_dssetup_DsRoleGetPrimaryDomainInformation(p, mem_ctx, &r);
40                 if (!NT_STATUS_IS_OK(status)) {
41                         const char *errstr = nt_errstr(status);
42                         if (NT_STATUS_EQUAL(status, NT_STATUS_NET_WRITE_FAULT)) {
43                                 errstr = dcerpc_errstr(mem_ctx, p->last_fault_code);
44                         }
45                         printf("dcerpc_dssetup_DsRoleGetPrimaryDomainInformation level %d failed - %s\n",
46                                 i, errstr);
47                         ret = False;
48                 } else if (!W_ERROR_IS_OK(r.out.result)) {
49                         printf("DsRoleGetPrimaryDomainInformation level %d failed - %s\n",
50                                 i, win_errstr(r.out.result));
51                         ret = False;
52                 }
53         }
54
55         return ret;
56 }
57
58 BOOL torture_rpc_dssetup(void)
59 {
60         NTSTATUS status;
61         struct dcerpc_pipe *p;
62         TALLOC_CTX *mem_ctx;
63         BOOL ret = True;
64
65         mem_ctx = talloc_init("torture_rpc_dssetup");
66
67         status = torture_rpc_connection(mem_ctx, &p, &dcerpc_table_dssetup);
68         if (!NT_STATUS_IS_OK(status)) {
69                 talloc_free(mem_ctx);
70
71                 return False;
72         }
73
74         ret &= test_DsRoleGetPrimaryDomainInformation(p, mem_ctx);
75
76         talloc_free(mem_ctx);
77
78         return ret;
79 }