70f8c99dde3ce5cd2d271767954b3e6cbac73524
[jelmer/samba4-debian.git] / source / 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 "torture/torture.h"
25 #include "librpc/gen_ndr/ndr_dssetup.h"
26 #include "torture/rpc/rpc.h"
27
28
29 BOOL test_DsRoleGetPrimaryDomainInformation(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
30 {
31         struct dssetup_DsRoleGetPrimaryDomainInformation r;
32         NTSTATUS status;
33         BOOL ret = True;
34         int i;
35
36         printf("\ntesting DsRoleGetPrimaryDomainInformation\n");
37
38         for (i=DS_ROLE_BASIC_INFORMATION; i <= DS_ROLE_OP_STATUS; i++) {
39                 r.in.level = i;
40
41                 status = dcerpc_dssetup_DsRoleGetPrimaryDomainInformation(p, mem_ctx, &r);
42                 if (!NT_STATUS_IS_OK(status)) {
43                         const char *errstr = nt_errstr(status);
44                         if (NT_STATUS_EQUAL(status, NT_STATUS_NET_WRITE_FAULT)) {
45                                 errstr = dcerpc_errstr(mem_ctx, p->last_fault_code);
46                         }
47                         printf("dcerpc_dssetup_DsRoleGetPrimaryDomainInformation level %d failed - %s\n",
48                                 i, errstr);
49                         ret = False;
50                 } else if (!W_ERROR_IS_OK(r.out.result)) {
51                         printf("DsRoleGetPrimaryDomainInformation level %d failed - %s\n",
52                                 i, win_errstr(r.out.result));
53                         ret = False;
54                 }
55         }
56
57         return ret;
58 }
59
60 BOOL torture_rpc_dssetup(void)
61 {
62         NTSTATUS status;
63         struct dcerpc_pipe *p;
64         TALLOC_CTX *mem_ctx;
65         BOOL ret = True;
66
67         mem_ctx = talloc_init("torture_rpc_dssetup");
68
69         status = torture_rpc_connection(mem_ctx, &p, &dcerpc_table_dssetup);
70         if (!NT_STATUS_IS_OK(status)) {
71                 talloc_free(mem_ctx);
72
73                 return False;
74         }
75
76         ret &= test_DsRoleGetPrimaryDomainInformation(p, mem_ctx);
77
78         talloc_free(mem_ctx);
79
80         return ret;
81 }