r4461: finished the remaining information levels in the DSSETUP pipe. The pipe is...
[samba.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 "librpc/gen_ndr/ndr_dssetup.h"
25
26
27 static BOOL test_RolerGetPrimaryDomainInformation(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
28 {
29         struct ds_RolerGetPrimaryDomainInformation r;
30         NTSTATUS status;
31         BOOL ret = True;
32         int i;
33
34         printf("\ntesting RolerGetPrimaryDomainInformation\n");
35
36         for (i=DS_BASIC_INFORMATION;i<=DS_ROLE_OP_STATUS;i++) {
37                 r.in.level = i;
38
39                 status = dcerpc_ds_RolerGetPrimaryDomainInformation(p, mem_ctx, &r);
40                 if (!NT_STATUS_IS_OK(status)) {
41                         printf("RolerGetPrimaryDomainInformation level %d failed - %s\n",
42                                i, nt_errstr(status));
43                         ret = False;
44                 }
45         }
46
47         return ret;
48 }
49
50 BOOL torture_rpc_dssetup(void)
51 {
52         NTSTATUS status;
53         struct dcerpc_pipe *p;
54         TALLOC_CTX *mem_ctx;
55         BOOL ret = True;
56
57         mem_ctx = talloc_init("torture_rpc_dssetup");
58
59         status = torture_rpc_connection(&p, 
60                                         DCERPC_DSSETUP_NAME, 
61                                         DCERPC_DSSETUP_UUID, 
62                                         DCERPC_DSSETUP_VERSION);
63         if (!NT_STATUS_IS_OK(status)) {
64                 return False;
65         }
66
67         ret &= test_RolerGetPrimaryDomainInformation(p, mem_ctx);
68
69         talloc_destroy(mem_ctx);
70
71         torture_rpc_close(p);
72
73         return ret;
74 }