2 Unix SMB/CIFS implementation.
3 test suite for spoolss rpc operations
5 Copyright (C) Tim Potter 2003
6 Copyright (C) Stefan Metzmacher 2005
7 Copyright (C) Jelmer Vernooij 2007
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "torture/torture.h"
25 #include "torture/rpc/rpc.h"
26 #include "librpc/gen_ndr/ndr_spoolss_c.h"
28 struct test_spoolss_context
{
29 /* print server handle */
30 struct policy_handle server_handle
;
33 uint32_t port_count
[3];
34 union spoolss_PortInfo
*ports
[3];
36 /* for EnumPrinterDrivers */
37 uint32_t driver_count
[7];
38 union spoolss_DriverInfo
*drivers
[7];
40 /* for EnumMonitors */
41 uint32_t monitor_count
[3];
42 union spoolss_MonitorInfo
*monitors
[3];
44 /* for EnumPrintProcessors */
45 uint32_t print_processor_count
[2];
46 union spoolss_PrintProcessorInfo
*print_processors
[2];
48 /* for EnumPrinters */
49 uint32_t printer_count
[6];
50 union spoolss_PrinterInfo
*printers
[6];
53 #define COMPARE_STRING(tctx, c,r,e) \
54 torture_assert_str_equal(tctx, c.e, r.e, "invalid value")
56 /* not every compiler supports __typeof__() */
58 #define _CHECK_FIELD_SIZE(c,r,e,type) do {\
59 if (sizeof(__typeof__(c.e)) != sizeof(type)) { \
60 torture_fail(tctx, #c "." #e "field is not " #type "\n"); \
62 if (sizeof(__typeof__(r.e)) != sizeof(type)) { \
63 torture_fail(tctx, #r "." #e "field is not " #type "\n"); \
67 #define _CHECK_FIELD_SIZE(c,r,e,type) do {} while(0)
70 #define COMPARE_UINT32(tctx, c, r, e) do {\
71 _CHECK_FIELD_SIZE(c, r, e, uint32_t); \
72 torture_assert_int_equal(tctx, c.e, r.e, "invalid value"); \
75 #define COMPARE_STRING_ARRAY(tctx, c,r,e)
77 static bool test_OpenPrinter_server(struct torture_context
*tctx
, struct dcerpc_pipe
*p
, struct test_spoolss_context
*ctx
)
80 struct spoolss_OpenPrinter op
;
82 op
.in
.printername
= talloc_asprintf(ctx
, "\\\\%s", dcerpc_server_name(p
));
83 op
.in
.datatype
= NULL
;
84 op
.in
.devmode_ctr
.devmode
= NULL
;
85 op
.in
.access_mask
= 0;
86 op
.out
.handle
= &ctx
->server_handle
;
88 torture_comment(tctx
, "Testing OpenPrinter(%s)\n", op
.in
.printername
);
90 status
= dcerpc_spoolss_OpenPrinter(p
, ctx
, &op
);
91 torture_assert_ntstatus_ok(tctx
, status
, "dcerpc_spoolss_OpenPrinter failed");
92 torture_assert_werr_ok(tctx
, op
.out
.result
, "dcerpc_spoolss_OpenPrinter failed");
97 static bool test_EnumPorts(struct torture_context
*tctx
,
98 struct dcerpc_pipe
*p
,
99 struct test_spoolss_context
*ctx
)
102 struct spoolss_EnumPorts r
;
103 uint16_t levels
[] = { 1, 2 };
106 for (i
=0;i
<ARRAY_SIZE(levels
);i
++) {
107 int level
= levels
[i
];
111 union spoolss_PortInfo
*info
;
113 r
.in
.servername
= "";
117 r
.out
.needed
= &needed
;
118 r
.out
.count
= &count
;
121 torture_comment(tctx
, "Testing EnumPorts level %u\n", r
.in
.level
);
123 status
= dcerpc_spoolss_EnumPorts(p
, ctx
, &r
);
124 torture_assert_ntstatus_ok(tctx
, status
, "dcerpc_spoolss_EnumPorts failed");
125 if (W_ERROR_IS_OK(r
.out
.result
)) {
126 /* TODO: do some more checks here */
129 torture_assert_werr_equal(tctx
, r
.out
.result
, WERR_INSUFFICIENT_BUFFER
,
130 "EnumPorts unexpected return code");
132 blob
= data_blob_talloc(ctx
, NULL
, needed
);
133 data_blob_clear(&blob
);
135 r
.in
.offered
= needed
;
137 status
= dcerpc_spoolss_EnumPorts(p
, ctx
, &r
);
138 torture_assert_ntstatus_ok(tctx
, status
, "dcerpc_spoolss_EnumPorts failed");
140 torture_assert_werr_ok(tctx
, r
.out
.result
, "EnumPorts failed");
142 torture_assert(tctx
, info
, "EnumPorts returned no info");
144 ctx
->port_count
[level
] = count
;
145 ctx
->ports
[level
] = info
;
148 for (i
=1;i
<ARRAY_SIZE(levels
);i
++) {
149 int level
= levels
[i
];
150 int old_level
= levels
[i
-1];
151 torture_assert_int_equal(tctx
, ctx
->port_count
[level
], ctx
->port_count
[old_level
],
152 "EnumPorts invalid value");
154 /* if the array sizes are not the same we would maybe segfault in the following code */
156 for (i
=0;i
<ARRAY_SIZE(levels
);i
++) {
157 int level
= levels
[i
];
158 for (j
=0;j
<ctx
->port_count
[level
];j
++) {
159 union spoolss_PortInfo
*cur
= &ctx
->ports
[level
][j
];
160 union spoolss_PortInfo
*ref
= &ctx
->ports
[2][j
];
163 COMPARE_STRING(tctx
, cur
->info1
, ref
->info2
, port_name
);
166 /* level 2 is our reference, and it makes no sense to compare it to itself */
175 static bool test_GetPrintProcessorDirectory(struct torture_context
*tctx
,
176 struct dcerpc_pipe
*p
,
177 struct test_spoolss_context
*ctx
)
180 struct spoolss_GetPrintProcessorDirectory r
;
195 .server
= talloc_asprintf(ctx
, "\\\\%s", dcerpc_server_name(p
))
198 .server
= talloc_asprintf(ctx
, "\\\\%s", dcerpc_server_name(p
))
204 for (i
=0;i
<ARRAY_SIZE(levels
);i
++) {
205 int level
= levels
[i
].level
;
208 r
.in
.server
= levels
[i
].server
;
209 r
.in
.environment
= SPOOLSS_ARCHITECTURE_NT_X86
;
213 r
.out
.needed
= &needed
;
215 torture_comment(tctx
, "Testing GetPrintProcessorDirectory level %u\n", r
.in
.level
);
217 status
= dcerpc_spoolss_GetPrintProcessorDirectory(p
, ctx
, &r
);
218 torture_assert_ntstatus_ok(tctx
, status
,
219 "dcerpc_spoolss_GetPrintProcessorDirectory failed");
220 torture_assert_werr_equal(tctx
, r
.out
.result
, WERR_INSUFFICIENT_BUFFER
,
221 "GetPrintProcessorDirectory unexpected return code");
223 blob
= data_blob_talloc(ctx
, NULL
, needed
);
224 data_blob_clear(&blob
);
226 r
.in
.offered
= needed
;
228 status
= dcerpc_spoolss_GetPrintProcessorDirectory(p
, ctx
, &r
);
229 torture_assert_ntstatus_ok(tctx
, status
, "dcerpc_spoolss_GetPrintProcessorDirectory failed");
231 torture_assert_werr_ok(tctx
, r
.out
.result
, "GetPrintProcessorDirectory failed");
238 static bool test_GetPrinterDriverDirectory(struct torture_context
*tctx
,
239 struct dcerpc_pipe
*p
,
240 struct test_spoolss_context
*ctx
)
243 struct spoolss_GetPrinterDriverDirectory r
;
258 .server
= talloc_asprintf(ctx
, "\\\\%s", dcerpc_server_name(p
))
261 .server
= talloc_asprintf(ctx
, "\\\\%s", dcerpc_server_name(p
))
267 for (i
=0;i
<ARRAY_SIZE(levels
);i
++) {
268 int level
= levels
[i
].level
;
271 r
.in
.server
= levels
[i
].server
;
272 r
.in
.environment
= SPOOLSS_ARCHITECTURE_NT_X86
;
276 r
.out
.needed
= &needed
;
278 torture_comment(tctx
, "Testing GetPrinterDriverDirectory level %u\n", r
.in
.level
);
280 status
= dcerpc_spoolss_GetPrinterDriverDirectory(p
, ctx
, &r
);
281 torture_assert_ntstatus_ok(tctx
, status
,
282 "dcerpc_spoolss_GetPrinterDriverDirectory failed");
283 torture_assert_werr_equal(tctx
, r
.out
.result
, WERR_INSUFFICIENT_BUFFER
,
284 "GetPrinterDriverDirectory unexpected return code");
286 blob
= data_blob_talloc(ctx
, NULL
, needed
);
287 data_blob_clear(&blob
);
289 r
.in
.offered
= needed
;
291 status
= dcerpc_spoolss_GetPrinterDriverDirectory(p
, ctx
, &r
);
292 torture_assert_ntstatus_ok(tctx
, status
, "dcerpc_spoolss_GetPrinterDriverDirectory failed");
294 torture_assert_werr_ok(tctx
, r
.out
.result
, "GetPrinterDriverDirectory failed");
300 static bool test_EnumPrinterDrivers(struct torture_context
*tctx
,
301 struct dcerpc_pipe
*p
,
302 struct test_spoolss_context
*ctx
)
305 struct spoolss_EnumPrinterDrivers r
;
306 uint16_t levels
[] = { 1, 2, 3, 4, 5, 6 };
308 const char *architectures
[] = {
309 SPOOLSS_ARCHITECTURE_NT_X86
,
310 SPOOLSS_ARCHITECTURE_ALL
313 for (i
=0;i
<ARRAY_SIZE(levels
);i
++) {
314 for (a
=0;a
<ARRAY_SIZE(architectures
);a
++) {
315 int level
= levels
[i
];
319 union spoolss_DriverInfo
*info
;
321 /* FIXME: gd, come back and fix "" as server, and handle
322 * priority of returned error codes in torture test and samba 3
325 r
.in
.server
= talloc_asprintf(tctx
, "\\\\%s", dcerpc_server_name(p
));
326 r
.in
.environment
= architectures
[a
];
330 r
.out
.needed
= &needed
;
331 r
.out
.count
= &count
;
334 torture_comment(tctx
, "Testing EnumPrinterDrivers level %u (%s)\n", r
.in
.level
, r
.in
.environment
);
336 status
= dcerpc_spoolss_EnumPrinterDrivers(p
, ctx
, &r
);
337 torture_assert_ntstatus_ok(tctx
, status
,
338 "dcerpc_spoolss_EnumPrinterDrivers failed");
339 if (W_ERROR_IS_OK(r
.out
.result
)) {
340 /* TODO: do some more checks here */
343 if (W_ERROR_EQUAL(r
.out
.result
, WERR_INSUFFICIENT_BUFFER
)) {
344 blob
= data_blob_talloc(ctx
, NULL
, needed
);
345 data_blob_clear(&blob
);
347 r
.in
.offered
= needed
;
349 status
= dcerpc_spoolss_EnumPrinterDrivers(p
, ctx
, &r
);
350 torture_assert_ntstatus_ok(tctx
, status
, "dcerpc_spoolss_EnumPrinterDrivers failed");
353 torture_assert_werr_ok(tctx
, r
.out
.result
, "EnumPrinterDrivers failed");
355 /* don't do cross-architecture comparison */
356 if (strequal(r
.in
.environment
, SPOOLSS_ARCHITECTURE_ALL
)) {
360 ctx
->driver_count
[level
] = count
;
361 ctx
->drivers
[level
] = info
;
365 for (i
=1;i
<ARRAY_SIZE(levels
);i
++) {
366 int level
= levels
[i
];
367 int old_level
= levels
[i
-1];
369 /* don't do cross-architecture comparison */
370 if (strequal(r
.in
.environment
, SPOOLSS_ARCHITECTURE_ALL
)) {
374 torture_assert_int_equal(tctx
, ctx
->driver_count
[level
], ctx
->driver_count
[old_level
],
375 "EnumPrinterDrivers invalid value");
378 for (i
=0;i
<ARRAY_SIZE(levels
);i
++) {
379 int level
= levels
[i
];
381 /* don't do cross-architecture comparison */
382 if (strequal(r
.in
.environment
, SPOOLSS_ARCHITECTURE_ALL
)) {
386 for (j
=0;j
<ctx
->driver_count
[level
];j
++) {
387 union spoolss_DriverInfo
*cur
= &ctx
->drivers
[level
][j
];
388 union spoolss_DriverInfo
*ref
= &ctx
->drivers
[6][j
];
391 COMPARE_STRING(tctx
, cur
->info1
, ref
->info6
, driver_name
);
394 COMPARE_UINT32(tctx
, cur
->info2
, ref
->info6
, version
);
395 COMPARE_STRING(tctx
, cur
->info2
, ref
->info6
, driver_name
);
396 COMPARE_STRING(tctx
, cur
->info2
, ref
->info6
, architecture
);
397 COMPARE_STRING(tctx
, cur
->info2
, ref
->info6
, driver_path
);
398 COMPARE_STRING(tctx
, cur
->info2
, ref
->info6
, data_file
);
399 COMPARE_STRING(tctx
, cur
->info2
, ref
->info6
, config_file
);
402 COMPARE_UINT32(tctx
, cur
->info3
, ref
->info6
, version
);
403 COMPARE_STRING(tctx
, cur
->info3
, ref
->info6
, driver_name
);
404 COMPARE_STRING(tctx
, cur
->info3
, ref
->info6
, architecture
);
405 COMPARE_STRING(tctx
, cur
->info3
, ref
->info6
, driver_path
);
406 COMPARE_STRING(tctx
, cur
->info3
, ref
->info6
, data_file
);
407 COMPARE_STRING(tctx
, cur
->info3
, ref
->info6
, config_file
);
408 COMPARE_STRING(tctx
, cur
->info3
, ref
->info6
, help_file
);
409 COMPARE_STRING_ARRAY(tctx
, cur
->info3
, ref
->info6
, dependent_files
);
410 COMPARE_STRING(tctx
, cur
->info3
, ref
->info6
, monitor_name
);
411 COMPARE_STRING(tctx
, cur
->info3
, ref
->info6
, default_datatype
);
414 COMPARE_UINT32(tctx
, cur
->info4
, ref
->info6
, version
);
415 COMPARE_STRING(tctx
, cur
->info4
, ref
->info6
, driver_name
);
416 COMPARE_STRING(tctx
, cur
->info4
, ref
->info6
, architecture
);
417 COMPARE_STRING(tctx
, cur
->info4
, ref
->info6
, driver_path
);
418 COMPARE_STRING(tctx
, cur
->info4
, ref
->info6
, data_file
);
419 COMPARE_STRING(tctx
, cur
->info4
, ref
->info6
, config_file
);
420 COMPARE_STRING(tctx
, cur
->info4
, ref
->info6
, help_file
);
421 COMPARE_STRING_ARRAY(tctx
, cur
->info4
, ref
->info6
, dependent_files
);
422 COMPARE_STRING(tctx
, cur
->info4
, ref
->info6
, monitor_name
);
423 COMPARE_STRING(tctx
, cur
->info4
, ref
->info6
, default_datatype
);
424 COMPARE_STRING_ARRAY(tctx
, cur
->info4
, ref
->info6
, previous_names
);
427 COMPARE_UINT32(tctx
, cur
->info5
, ref
->info6
, version
);
428 COMPARE_STRING(tctx
, cur
->info5
, ref
->info6
, driver_name
);
429 COMPARE_STRING(tctx
, cur
->info5
, ref
->info6
, architecture
);
430 COMPARE_STRING(tctx
, cur
->info5
, ref
->info6
, driver_path
);
431 COMPARE_STRING(tctx
, cur
->info5
, ref
->info6
, data_file
);
432 COMPARE_STRING(tctx
, cur
->info5
, ref
->info6
, config_file
);
433 /*COMPARE_UINT32(tctx, cur->info5, ref->info6, driver_attributes);*/
434 /*COMPARE_UINT32(tctx, cur->info5, ref->info6, config_version);*/
435 /*TODO: ! COMPARE_UINT32(tctx, cur->info5, ref->info6, driver_version); */
438 /* level 6 is our reference, and it makes no sense to compare it to itself */
447 static bool test_EnumMonitors(struct torture_context
*tctx
,
448 struct dcerpc_pipe
*p
,
449 struct test_spoolss_context
*ctx
)
452 struct spoolss_EnumMonitors r
;
453 uint16_t levels
[] = { 1, 2 };
456 for (i
=0;i
<ARRAY_SIZE(levels
);i
++) {
457 int level
= levels
[i
];
461 union spoolss_MonitorInfo
*info
;
463 r
.in
.servername
= "";
467 r
.out
.needed
= &needed
;
468 r
.out
.count
= &count
;
471 torture_comment(tctx
, "Testing EnumMonitors level %u\n", r
.in
.level
);
473 status
= dcerpc_spoolss_EnumMonitors(p
, ctx
, &r
);
474 torture_assert_ntstatus_ok(tctx
, status
, "dcerpc_spoolss_EnumMonitors failed");
475 if (W_ERROR_IS_OK(r
.out
.result
)) {
476 /* TODO: do some more checks here */
479 torture_assert_werr_equal(tctx
, r
.out
.result
, WERR_INSUFFICIENT_BUFFER
,
480 "EnumMonitors failed");
482 blob
= data_blob_talloc(ctx
, NULL
, needed
);
483 data_blob_clear(&blob
);
485 r
.in
.offered
= needed
;
487 status
= dcerpc_spoolss_EnumMonitors(p
, ctx
, &r
);
488 torture_assert_ntstatus_ok(tctx
, status
, "dcerpc_spoolss_EnumMonitors failed");
490 torture_assert_werr_ok(tctx
, r
.out
.result
, "EnumMonitors failed");
492 ctx
->monitor_count
[level
] = count
;
493 ctx
->monitors
[level
] = info
;
496 for (i
=1;i
<ARRAY_SIZE(levels
);i
++) {
497 int level
= levels
[i
];
498 int old_level
= levels
[i
-1];
499 torture_assert_int_equal(tctx
, ctx
->monitor_count
[level
], ctx
->monitor_count
[old_level
],
500 "EnumMonitors invalid value");
503 for (i
=0;i
<ARRAY_SIZE(levels
);i
++) {
504 int level
= levels
[i
];
505 for (j
=0;j
<ctx
->monitor_count
[level
];j
++) {
506 union spoolss_MonitorInfo
*cur
= &ctx
->monitors
[level
][j
];
507 union spoolss_MonitorInfo
*ref
= &ctx
->monitors
[2][j
];
510 COMPARE_STRING(tctx
, cur
->info1
, ref
->info2
, monitor_name
);
513 /* level 2 is our reference, and it makes no sense to compare it to itself */
522 static bool test_EnumPrintProcessors(struct torture_context
*tctx
,
523 struct dcerpc_pipe
*p
,
524 struct test_spoolss_context
*ctx
)
527 struct spoolss_EnumPrintProcessors r
;
528 uint16_t levels
[] = { 1 };
531 for (i
=0;i
<ARRAY_SIZE(levels
);i
++) {
532 int level
= levels
[i
];
536 union spoolss_PrintProcessorInfo
*info
;
538 r
.in
.servername
= "";
539 r
.in
.environment
= SPOOLSS_ARCHITECTURE_NT_X86
;
543 r
.out
.needed
= &needed
;
544 r
.out
.count
= &count
;
547 torture_comment(tctx
, "Testing EnumPrintProcessors level %u\n", r
.in
.level
);
549 status
= dcerpc_spoolss_EnumPrintProcessors(p
, ctx
, &r
);
550 torture_assert_ntstatus_ok(tctx
, status
, "dcerpc_spoolss_EnumPrintProcessors failed");
551 if (W_ERROR_IS_OK(r
.out
.result
)) {
552 /* TODO: do some more checks here */
555 torture_assert_werr_equal(tctx
, r
.out
.result
, WERR_INSUFFICIENT_BUFFER
,
556 "EnumPrintProcessors unexpected return code");
558 blob
= data_blob_talloc(ctx
, NULL
, needed
);
559 data_blob_clear(&blob
);
561 r
.in
.offered
= needed
;
563 status
= dcerpc_spoolss_EnumPrintProcessors(p
, ctx
, &r
);
564 torture_assert_ntstatus_ok(tctx
, status
, "dcerpc_spoolss_EnumPrintProcessors failed");
566 torture_assert_werr_ok(tctx
, r
.out
.result
, "EnumPrintProcessors failed");
568 ctx
->print_processor_count
[level
] = count
;
569 ctx
->print_processors
[level
] = info
;
572 for (i
=1;i
<ARRAY_SIZE(levels
);i
++) {
573 int level
= levels
[i
];
574 int old_level
= levels
[i
-1];
575 torture_assert_int_equal(tctx
, ctx
->print_processor_count
[level
], ctx
->print_processor_count
[old_level
],
576 "EnumPrintProcessors failed");
579 for (i
=0;i
<ARRAY_SIZE(levels
);i
++) {
580 int level
= levels
[i
];
581 for (j
=0;j
<ctx
->print_processor_count
[level
];j
++) {
583 union spoolss_PrintProcessorInfo
*cur
= &ctx
->print_processors
[level
][j
];
584 union spoolss_PrintProcessorInfo
*ref
= &ctx
->print_processors
[1][j
];
588 /* level 1 is our reference, and it makes no sense to compare it to itself */
597 static bool test_EnumPrintProcDataTypes(struct torture_context
*tctx
,
598 struct dcerpc_pipe
*p
,
599 struct test_spoolss_context
*ctx
)
602 struct spoolss_EnumPrintProcDataTypes r
;
603 uint16_t levels
[] = { 1 };
606 for (i
=0;i
<ARRAY_SIZE(levels
);i
++) {
607 int level
= levels
[i
];
611 union spoolss_PrintProcDataTypesInfo
*info
;
613 r
.in
.servername
= "";
614 r
.in
.print_processor_name
= "winprint";
618 r
.out
.needed
= &needed
;
619 r
.out
.count
= &count
;
622 torture_comment(tctx
, "Testing EnumPrintProcDataTypes level %u\n", r
.in
.level
);
624 status
= dcerpc_spoolss_EnumPrintProcDataTypes(p
, ctx
, &r
);
625 torture_assert_ntstatus_ok(tctx
, status
, "dcerpc_spoolss_EnumPrintProcDataType failed");
626 if (W_ERROR_IS_OK(r
.out
.result
)) {
627 /* TODO: do some more checks here */
630 torture_assert_werr_equal(tctx
, r
.out
.result
, WERR_INSUFFICIENT_BUFFER
,
631 "EnumPrintProcDataTypes unexpected return code");
633 blob
= data_blob_talloc(ctx
, NULL
, needed
);
634 data_blob_clear(&blob
);
636 r
.in
.offered
= needed
;
638 status
= dcerpc_spoolss_EnumPrintProcDataTypes(p
, ctx
, &r
);
639 torture_assert_ntstatus_ok(tctx
, status
, "dcerpc_spoolss_EnumPrintProcDataTypes failed");
641 torture_assert_werr_ok(tctx
, r
.out
.result
, "EnumPrintProcDataTypes failed");
648 static bool test_EnumPrinters(struct torture_context
*tctx
,
649 struct dcerpc_pipe
*p
,
650 struct test_spoolss_context
*ctx
)
652 struct spoolss_EnumPrinters r
;
654 uint16_t levels
[] = { 0, 1, 2, 4, 5 };
657 for (i
=0;i
<ARRAY_SIZE(levels
);i
++) {
658 int level
= levels
[i
];
662 union spoolss_PrinterInfo
*info
;
664 r
.in
.flags
= PRINTER_ENUM_LOCAL
;
669 r
.out
.needed
= &needed
;
670 r
.out
.count
= &count
;
673 torture_comment(tctx
, "Testing EnumPrinters level %u\n", r
.in
.level
);
675 status
= dcerpc_spoolss_EnumPrinters(p
, ctx
, &r
);
676 torture_assert_ntstatus_ok(tctx
, status
, "dcerpc_spoolss_EnumPrinters failed");
677 if (W_ERROR_IS_OK(r
.out
.result
)) {
678 /* TODO: do some more checks here */
681 torture_assert_werr_equal(tctx
, r
.out
.result
, WERR_INSUFFICIENT_BUFFER
,
682 "EnumPrinters unexpected return code");
684 blob
= data_blob_talloc(ctx
, NULL
, needed
);
685 data_blob_clear(&blob
);
687 r
.in
.offered
= needed
;
689 status
= dcerpc_spoolss_EnumPrinters(p
, ctx
, &r
);
690 torture_assert_ntstatus_ok(tctx
, status
, "dcerpc_spoolss_EnumPrinters failed");
692 torture_assert_werr_ok(tctx
, r
.out
.result
, "EnumPrinters failed");
694 ctx
->printer_count
[level
] = count
;
695 ctx
->printers
[level
] = info
;
698 for (i
=1;i
<ARRAY_SIZE(levels
);i
++) {
699 int level
= levels
[i
];
700 int old_level
= levels
[i
-1];
701 torture_assert_int_equal(tctx
, ctx
->printer_count
[level
], ctx
->printer_count
[old_level
],
702 "EnumPrinters invalid value");
705 for (i
=0;i
<ARRAY_SIZE(levels
);i
++) {
706 int level
= levels
[i
];
707 for (j
=0;j
<ctx
->printer_count
[level
];j
++) {
708 union spoolss_PrinterInfo
*cur
= &ctx
->printers
[level
][j
];
709 union spoolss_PrinterInfo
*ref
= &ctx
->printers
[2][j
];
712 COMPARE_STRING(tctx
, cur
->info0
, ref
->info2
, printername
);
713 COMPARE_STRING(tctx
, cur
->info0
, ref
->info2
, servername
);
714 COMPARE_UINT32(tctx
, cur
->info0
, ref
->info2
, cjobs
);
715 /*COMPARE_UINT32(tctx, cur->info0, ref->info2, total_jobs);
716 COMPARE_UINT32(tctx, cur->info0, ref->info2, total_bytes);
717 COMPARE_SPOOLSS_TIME(cur->info0, ref->info2, spoolss_Time time);
718 COMPARE_UINT32(tctx, cur->info0, ref->info2, global_counter);
719 COMPARE_UINT32(tctx, cur->info0, ref->info2, total_pages);
720 COMPARE_UINT32(tctx, cur->info0, ref->info2, version);
721 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown10);
722 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown11);
723 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown12);
724 COMPARE_UINT32(tctx, cur->info0, ref->info2, session_counter);
725 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown14);
726 COMPARE_UINT32(tctx, cur->info0, ref->info2, printer_errors);
727 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown16);
728 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown17);
729 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown18);
730 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown19);
731 COMPARE_UINT32(tctx, cur->info0, ref->info2, change_id);
732 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown21);*/
733 COMPARE_UINT32(tctx
, cur
->info0
, ref
->info2
, status
);
734 /*COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown23);
735 COMPARE_UINT32(tctx, cur->info0, ref->info2, c_setprinter);
736 COMPARE_UINT16(cur->info0, ref->info2, unknown25);
737 COMPARE_UINT16(cur->info0, ref->info2, unknown26);
738 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown27);
739 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown28);
740 COMPARE_UINT32(tctx, cur->info0, ref->info2, unknown29);*/
743 /*COMPARE_UINT32(tctx, cur->info1, ref->info2, flags);*/
744 /*COMPARE_STRING(tctx, cur->info1, ref->info2, name);*/
745 /*COMPARE_STRING(tctx, cur->info1, ref->info2, description);*/
746 COMPARE_STRING(tctx
, cur
->info1
, ref
->info2
, comment
);
749 /* level 2 is our reference, and it makes no sense to compare it to itself */
752 COMPARE_STRING(tctx
, cur
->info4
, ref
->info2
, printername
);
753 COMPARE_STRING(tctx
, cur
->info4
, ref
->info2
, servername
);
754 COMPARE_UINT32(tctx
, cur
->info4
, ref
->info2
, attributes
);
757 COMPARE_STRING(tctx
, cur
->info5
, ref
->info2
, printername
);
758 COMPARE_STRING(tctx
, cur
->info5
, ref
->info2
, portname
);
759 COMPARE_UINT32(tctx
, cur
->info5
, ref
->info2
, attributes
);
760 /*COMPARE_UINT32(tctx, cur->info5, ref->info2, device_not_selected_timeout);
761 COMPARE_UINT32(tctx, cur->info5, ref->info2, transmission_retry_timeout);*/
768 * - verify that the port of a printer was in the list returned by EnumPorts
774 static bool test_GetPrinter(struct torture_context
*tctx
,
775 struct dcerpc_pipe
*p
,
776 struct policy_handle
*handle
)
779 struct spoolss_GetPrinter r
;
780 uint16_t levels
[] = {0, 1, 2, 3, 4, 5, 6, 7, 8};
784 for (i
=0;i
<ARRAY_SIZE(levels
);i
++) {
785 r
.in
.handle
= handle
;
786 r
.in
.level
= levels
[i
];
789 r
.out
.needed
= &needed
;
791 torture_comment(tctx
, "Testing GetPrinter level %u\n", r
.in
.level
);
793 status
= dcerpc_spoolss_GetPrinter(p
, tctx
, &r
);
794 torture_assert_ntstatus_ok(tctx
, status
, "GetPrinter failed");
796 if (W_ERROR_EQUAL(r
.out
.result
, WERR_INSUFFICIENT_BUFFER
)) {
797 DATA_BLOB blob
= data_blob_talloc(tctx
, NULL
, needed
);
798 data_blob_clear(&blob
);
800 r
.in
.offered
= needed
;
801 status
= dcerpc_spoolss_GetPrinter(p
, tctx
, &r
);
804 torture_assert_ntstatus_ok(tctx
, status
, "GetPrinter failed");
806 torture_assert_werr_ok(tctx
, r
.out
.result
, "GetPrinter failed");
813 static bool test_ClosePrinter(struct torture_context
*tctx
,
814 struct dcerpc_pipe
*p
,
815 struct policy_handle
*handle
)
818 struct spoolss_ClosePrinter r
;
820 r
.in
.handle
= handle
;
821 r
.out
.handle
= handle
;
823 torture_comment(tctx
, "Testing ClosePrinter\n");
825 status
= dcerpc_spoolss_ClosePrinter(p
, tctx
, &r
);
826 torture_assert_ntstatus_ok(tctx
, status
, "ClosePrinter failed");
831 static bool test_GetForm(struct torture_context
*tctx
,
832 struct dcerpc_pipe
*p
,
833 struct policy_handle
*handle
,
834 const char *form_name
,
838 struct spoolss_GetForm r
;
841 r
.in
.handle
= handle
;
842 r
.in
.form_name
= form_name
;
846 r
.out
.needed
= &needed
;
848 torture_comment(tctx
, "Testing GetForm level %d\n", r
.in
.level
);
850 status
= dcerpc_spoolss_GetForm(p
, tctx
, &r
);
851 torture_assert_ntstatus_ok(tctx
, status
, "GetForm failed");
853 if (W_ERROR_EQUAL(r
.out
.result
, WERR_INSUFFICIENT_BUFFER
)) {
854 DATA_BLOB blob
= data_blob_talloc(tctx
, NULL
, needed
);
855 data_blob_clear(&blob
);
857 r
.in
.offered
= needed
;
858 status
= dcerpc_spoolss_GetForm(p
, tctx
, &r
);
859 torture_assert_ntstatus_ok(tctx
, status
, "GetForm failed");
861 torture_assert_werr_ok(tctx
, r
.out
.result
, "GetForm failed");
863 torture_assert(tctx
, r
.out
.info
, "No form info returned");
866 torture_assert_werr_ok(tctx
, r
.out
.result
, "GetForm failed");
871 static bool test_EnumForms(struct torture_context
*tctx
,
872 struct dcerpc_pipe
*p
,
873 struct policy_handle
*handle
, bool print_server
)
876 struct spoolss_EnumForms r
;
880 uint32_t levels
[] = { 1, 2 };
883 for (i
=0; i
<ARRAY_SIZE(levels
); i
++) {
885 union spoolss_FormInfo
*info
;
887 r
.in
.handle
= handle
;
888 r
.in
.level
= levels
[i
];
891 r
.out
.needed
= &needed
;
892 r
.out
.count
= &count
;
895 torture_comment(tctx
, "Testing EnumForms level %d\n", levels
[i
]);
897 status
= dcerpc_spoolss_EnumForms(p
, tctx
, &r
);
898 torture_assert_ntstatus_ok(tctx
, status
, "EnumForms failed");
900 if ((r
.in
.level
== 2) && (W_ERROR_EQUAL(r
.out
.result
, WERR_UNKNOWN_LEVEL
))) {
904 if (print_server
&& W_ERROR_EQUAL(r
.out
.result
, WERR_BADFID
))
905 torture_fail(tctx
, "EnumForms on the PrintServer isn't supported by test server (NT4)");
907 if (W_ERROR_EQUAL(r
.out
.result
, WERR_INSUFFICIENT_BUFFER
)) {
909 DATA_BLOB blob
= data_blob_talloc(tctx
, NULL
, needed
);
910 data_blob_clear(&blob
);
912 r
.in
.offered
= needed
;
914 status
= dcerpc_spoolss_EnumForms(p
, tctx
, &r
);
916 torture_assert(tctx
, info
, "No forms returned");
918 for (j
= 0; j
< count
; j
++) {
920 ret
&= test_GetForm(tctx
, p
, handle
, info
[j
].info1
.form_name
, levels
[i
]);
924 torture_assert_ntstatus_ok(tctx
, status
, "EnumForms failed");
926 torture_assert_werr_ok(tctx
, r
.out
.result
, "EnumForms failed");
932 static bool test_DeleteForm(struct torture_context
*tctx
,
933 struct dcerpc_pipe
*p
,
934 struct policy_handle
*handle
,
935 const char *form_name
)
938 struct spoolss_DeleteForm r
;
940 r
.in
.handle
= handle
;
941 r
.in
.form_name
= form_name
;
943 status
= dcerpc_spoolss_DeleteForm(p
, tctx
, &r
);
945 torture_assert_ntstatus_ok(tctx
, status
, "DeleteForm failed");
947 torture_assert_werr_ok(tctx
, r
.out
.result
, "DeleteForm failed");
952 static bool test_AddForm(struct torture_context
*tctx
,
953 struct dcerpc_pipe
*p
,
954 struct policy_handle
*handle
, bool print_server
)
956 struct spoolss_AddForm r
;
957 struct spoolss_AddFormInfo1 addform
;
958 const char *form_name
= "testform3";
962 r
.in
.handle
= handle
;
964 r
.in
.info
.info1
= &addform
;
965 addform
.flags
= SPOOLSS_FORM_USER
;
966 addform
.form_name
= form_name
;
967 addform
.size
.width
= 50;
968 addform
.size
.height
= 25;
969 addform
.area
.left
= 5;
970 addform
.area
.top
= 10;
971 addform
.area
.right
= 45;
972 addform
.area
.bottom
= 15;
974 status
= dcerpc_spoolss_AddForm(p
, tctx
, &r
);
976 torture_assert_ntstatus_ok(tctx
, status
, "AddForm failed");
978 torture_assert_werr_ok(tctx
, r
.out
.result
, "AddForm failed");
980 if (!print_server
) ret
&= test_GetForm(tctx
, p
, handle
, form_name
, 1);
983 struct spoolss_SetForm sf
;
984 struct spoolss_AddFormInfo1 setform
;
986 sf
.in
.handle
= handle
;
987 sf
.in
.form_name
= form_name
;
989 sf
.in
.info
.info1
= &setform
;
990 setform
.flags
= addform
.flags
;
991 setform
.form_name
= addform
.form_name
;
992 setform
.size
= addform
.size
;
993 setform
.area
= addform
.area
;
995 setform
.size
.width
= 1234;
997 status
= dcerpc_spoolss_SetForm(p
, tctx
, &sf
);
999 torture_assert_ntstatus_ok(tctx
, status
, "SetForm failed");
1001 torture_assert_werr_ok(tctx
, r
.out
.result
, "SetForm failed");
1004 if (!print_server
) ret
&= test_GetForm(tctx
, p
, handle
, form_name
, 1);
1006 if (!test_DeleteForm(tctx
, p
, handle
, form_name
)) {
1013 static bool test_EnumPorts_old(struct torture_context
*tctx
,
1014 struct dcerpc_pipe
*p
)
1017 struct spoolss_EnumPorts r
;
1020 union spoolss_PortInfo
*info
;
1022 r
.in
.servername
= talloc_asprintf(tctx
, "\\\\%s",
1023 dcerpc_server_name(p
));
1027 r
.out
.needed
= &needed
;
1028 r
.out
.count
= &count
;
1031 torture_comment(tctx
, "Testing EnumPorts\n");
1033 status
= dcerpc_spoolss_EnumPorts(p
, tctx
, &r
);
1035 torture_assert_ntstatus_ok(tctx
, status
, "EnumPorts failed");
1037 if (W_ERROR_EQUAL(r
.out
.result
, WERR_INSUFFICIENT_BUFFER
)) {
1038 DATA_BLOB blob
= data_blob_talloc(tctx
, NULL
, needed
);
1039 data_blob_clear(&blob
);
1040 r
.in
.buffer
= &blob
;
1041 r
.in
.offered
= needed
;
1043 status
= dcerpc_spoolss_EnumPorts(p
, tctx
, &r
);
1044 torture_assert_ntstatus_ok(tctx
, status
, "EnumPorts failed");
1046 torture_assert(tctx
, info
, "No ports returned");
1052 static bool test_AddPort(struct torture_context
*tctx
,
1053 struct dcerpc_pipe
*p
)
1056 struct spoolss_AddPort r
;
1058 r
.in
.server_name
= talloc_asprintf(tctx
, "\\\\%s",
1059 dcerpc_server_name(p
));
1061 r
.in
.monitor_name
= "foo";
1063 torture_comment(tctx
, "Testing AddPort\n");
1065 status
= dcerpc_spoolss_AddPort(p
, tctx
, &r
);
1067 torture_assert_ntstatus_ok(tctx
, status
, "AddPort failed");
1069 /* win2k3 returns WERR_NOT_SUPPORTED */
1073 if (!W_ERROR_IS_OK(r
.out
.result
)) {
1074 printf("AddPort failed - %s\n", win_errstr(r
.out
.result
));
1083 static bool test_GetJob(struct torture_context
*tctx
,
1084 struct dcerpc_pipe
*p
,
1085 struct policy_handle
*handle
, uint32_t job_id
)
1088 struct spoolss_GetJob r
;
1090 uint32_t levels
[] = {1, 2 /* 3, 4 */};
1093 r
.in
.handle
= handle
;
1094 r
.in
.job_id
= job_id
;
1098 r
.out
.needed
= &needed
;
1100 torture_comment(tctx
, "Testing GetJob level %d\n", r
.in
.level
);
1102 status
= dcerpc_spoolss_GetJob(p
, tctx
, &r
);
1103 torture_assert_werr_equal(tctx
, r
.out
.result
, WERR_UNKNOWN_LEVEL
, "Unexpected return code");
1105 for (i
= 0; i
< ARRAY_SIZE(levels
); i
++) {
1107 torture_comment(tctx
, "Testing GetJob level %d\n", r
.in
.level
);
1109 r
.in
.level
= levels
[i
];
1112 status
= dcerpc_spoolss_GetJob(p
, tctx
, &r
);
1113 torture_assert_ntstatus_ok(tctx
, status
, "GetJob failed");
1115 if (W_ERROR_EQUAL(r
.out
.result
, WERR_INSUFFICIENT_BUFFER
)) {
1116 DATA_BLOB blob
= data_blob_talloc(tctx
, NULL
, needed
);
1117 data_blob_clear(&blob
);
1118 r
.in
.buffer
= &blob
;
1119 r
.in
.offered
= needed
;
1121 status
= dcerpc_spoolss_GetJob(p
, tctx
, &r
);
1122 torture_assert_ntstatus_ok(tctx
, status
, "GetJob failed");
1125 torture_assert(tctx
, r
.out
.info
, "No job info returned");
1126 torture_assert_werr_ok(tctx
, r
.out
.result
, "GetJob failed");
1132 static bool test_SetJob(struct torture_context
*tctx
,
1133 struct dcerpc_pipe
*p
,
1134 struct policy_handle
*handle
, uint32_t job_id
,
1135 enum spoolss_JobControl command
)
1138 struct spoolss_SetJob r
;
1140 r
.in
.handle
= handle
;
1141 r
.in
.job_id
= job_id
;
1143 r
.in
.command
= command
;
1146 case SPOOLSS_JOB_CONTROL_PAUSE
:
1147 torture_comment(tctx
, "Testing SetJob: SPOOLSS_JOB_CONTROL_PAUSE\n");
1149 case SPOOLSS_JOB_CONTROL_RESUME
:
1150 torture_comment(tctx
, "Testing SetJob: SPOOLSS_JOB_CONTROL_RESUME\n");
1152 case SPOOLSS_JOB_CONTROL_CANCEL
:
1153 torture_comment(tctx
, "Testing SetJob: SPOOLSS_JOB_CONTROL_CANCEL\n");
1155 case SPOOLSS_JOB_CONTROL_RESTART
:
1156 torture_comment(tctx
, "Testing SetJob: SPOOLSS_JOB_CONTROL_RESTART\n");
1158 case SPOOLSS_JOB_CONTROL_DELETE
:
1159 torture_comment(tctx
, "Testing SetJob: SPOOLSS_JOB_CONTROL_DELETE\n");
1161 case SPOOLSS_JOB_CONTROL_SEND_TO_PRINTER
:
1162 torture_comment(tctx
, "Testing SetJob: SPOOLSS_JOB_CONTROL_SEND_TO_PRINTER\n");
1164 case SPOOLSS_JOB_CONTROL_LAST_PAGE_EJECTED
:
1165 torture_comment(tctx
, "Testing SetJob: SPOOLSS_JOB_CONTROL_LAST_PAGE_EJECTED\n");
1167 case SPOOLSS_JOB_CONTROL_RETAIN
:
1168 torture_comment(tctx
, "Testing SetJob: SPOOLSS_JOB_CONTROL_RETAIN\n");
1170 case SPOOLSS_JOB_CONTROL_RELEASE
:
1171 torture_comment(tctx
, "Testing SetJob: SPOOLSS_JOB_CONTROL_RELEASE\n");
1174 torture_comment(tctx
, "Testing SetJob\n");
1178 status
= dcerpc_spoolss_SetJob(p
, tctx
, &r
);
1179 torture_assert_ntstatus_ok(tctx
, status
, "SetJob failed");
1180 torture_assert_werr_ok(tctx
, r
.out
.result
, "SetJob failed");
1185 static bool test_AddJob(struct torture_context
*tctx
,
1186 struct dcerpc_pipe
*p
,
1187 struct policy_handle
*handle
)
1190 struct spoolss_AddJob r
;
1194 r
.in
.handle
= handle
;
1196 r
.out
.needed
= &needed
;
1197 r
.in
.buffer
= r
.out
.buffer
= NULL
;
1199 torture_comment(tctx
, "Testing AddJob\n");
1201 status
= dcerpc_spoolss_AddJob(p
, tctx
, &r
);
1202 torture_assert_werr_equal(tctx
, r
.out
.result
, WERR_UNKNOWN_LEVEL
, "AddJob failed");
1206 status
= dcerpc_spoolss_AddJob(p
, tctx
, &r
);
1207 torture_assert_werr_equal(tctx
, r
.out
.result
, WERR_INVALID_PARAM
, "AddJob failed");
1213 static bool test_EnumJobs(struct torture_context
*tctx
,
1214 struct dcerpc_pipe
*p
,
1215 struct policy_handle
*handle
)
1218 struct spoolss_EnumJobs r
;
1221 union spoolss_JobInfo
*info
;
1223 r
.in
.handle
= handle
;
1225 r
.in
.numjobs
= 0xffffffff;
1229 r
.out
.needed
= &needed
;
1230 r
.out
.count
= &count
;
1233 torture_comment(tctx
, "Testing EnumJobs\n");
1235 status
= dcerpc_spoolss_EnumJobs(p
, tctx
, &r
);
1237 torture_assert_ntstatus_ok(tctx
, status
, "EnumJobs failed");
1239 if (W_ERROR_EQUAL(r
.out
.result
, WERR_INSUFFICIENT_BUFFER
)) {
1241 DATA_BLOB blob
= data_blob_talloc(tctx
, NULL
, needed
);
1242 data_blob_clear(&blob
);
1243 r
.in
.buffer
= &blob
;
1244 r
.in
.offered
= needed
;
1246 status
= dcerpc_spoolss_EnumJobs(p
, tctx
, &r
);
1248 torture_assert(tctx
, info
, "No jobs returned");
1250 for (j
= 0; j
< count
; j
++) {
1252 test_GetJob(tctx
, p
, handle
, info
[j
].info1
.job_id
);
1255 if (!torture_setting_bool(tctx
, "samba3", false)) {
1256 test_SetJob(tctx
, p
, handle
, info
[j
].info1
.job_id
, SPOOLSS_JOB_CONTROL_PAUSE
);
1257 test_SetJob(tctx
, p
, handle
, info
[j
].info1
.job_id
, SPOOLSS_JOB_CONTROL_RESUME
);
1262 torture_assert_werr_ok(tctx
, r
.out
.result
, "EnumJobs failed");
1268 static bool test_DoPrintTest(struct torture_context
*tctx
,
1269 struct dcerpc_pipe
*p
,
1270 struct policy_handle
*handle
)
1274 struct spoolss_StartDocPrinter s
;
1275 struct spoolss_DocumentInfo1 info1
;
1276 struct spoolss_StartPagePrinter sp
;
1277 struct spoolss_WritePrinter w
;
1278 struct spoolss_EndPagePrinter ep
;
1279 struct spoolss_EndDocPrinter e
;
1282 uint32_t num_written
;
1284 torture_comment(tctx
, "Testing StartDocPrinter\n");
1286 s
.in
.handle
= handle
;
1288 s
.in
.info
.info1
= &info1
;
1289 s
.out
.job_id
= &job_id
;
1290 info1
.document_name
= "TorturePrintJob";
1291 info1
.output_file
= NULL
;
1292 info1
.datatype
= "RAW";
1294 status
= dcerpc_spoolss_StartDocPrinter(p
, tctx
, &s
);
1295 torture_assert_ntstatus_ok(tctx
, status
, "dcerpc_spoolss_StartDocPrinter failed");
1296 torture_assert_werr_ok(tctx
, s
.out
.result
, "StartDocPrinter failed");
1298 for (i
=1; i
< 4; i
++) {
1299 torture_comment(tctx
, "Testing StartPagePrinter: Page[%d]\n", i
);
1301 sp
.in
.handle
= handle
;
1303 status
= dcerpc_spoolss_StartPagePrinter(p
, tctx
, &sp
);
1304 torture_assert_ntstatus_ok(tctx
, status
,
1305 "dcerpc_spoolss_StartPagePrinter failed");
1306 torture_assert_werr_ok(tctx
, sp
.out
.result
, "StartPagePrinter failed");
1308 torture_comment(tctx
, "Testing WritePrinter: Page[%d]\n", i
);
1310 w
.in
.handle
= handle
;
1311 w
.in
.data
= data_blob_string_const(talloc_asprintf(tctx
,"TortureTestPage: %d\nData\n",i
));
1312 w
.out
.num_written
= &num_written
;
1314 status
= dcerpc_spoolss_WritePrinter(p
, tctx
, &w
);
1315 torture_assert_ntstatus_ok(tctx
, status
, "dcerpc_spoolss_WritePrinter failed");
1316 torture_assert_werr_ok(tctx
, w
.out
.result
, "WritePrinter failed");
1318 torture_comment(tctx
, "Testing EndPagePrinter: Page[%d]\n", i
);
1320 ep
.in
.handle
= handle
;
1322 status
= dcerpc_spoolss_EndPagePrinter(p
, tctx
, &ep
);
1323 torture_assert_ntstatus_ok(tctx
, status
, "dcerpc_spoolss_EndPagePrinter failed");
1324 torture_assert_werr_ok(tctx
, ep
.out
.result
, "EndPagePrinter failed");
1327 torture_comment(tctx
, "Testing EndDocPrinter\n");
1329 e
.in
.handle
= handle
;
1331 status
= dcerpc_spoolss_EndDocPrinter(p
, tctx
, &e
);
1332 torture_assert_ntstatus_ok(tctx
, status
, "dcerpc_spoolss_EndDocPrinter failed");
1333 torture_assert_werr_ok(tctx
, e
.out
.result
, "EndDocPrinter failed");
1335 ret
&= test_AddJob(tctx
, p
, handle
);
1336 ret
&= test_EnumJobs(tctx
, p
, handle
);
1338 ret
&= test_SetJob(tctx
, p
, handle
, job_id
, SPOOLSS_JOB_CONTROL_DELETE
);
1343 static bool test_PausePrinter(struct torture_context
*tctx
,
1344 struct dcerpc_pipe
*p
,
1345 struct policy_handle
*handle
)
1348 struct spoolss_SetPrinter r
;
1349 struct spoolss_SetPrinterInfoCtr info_ctr
;
1350 struct spoolss_DevmodeContainer devmode_ctr
;
1351 struct sec_desc_buf secdesc_ctr
;
1354 info_ctr
.info
.info0
= NULL
;
1356 ZERO_STRUCT(devmode_ctr
);
1357 ZERO_STRUCT(secdesc_ctr
);
1359 r
.in
.handle
= handle
;
1360 r
.in
.info_ctr
= &info_ctr
;
1361 r
.in
.devmode_ctr
= &devmode_ctr
;
1362 r
.in
.secdesc_ctr
= &secdesc_ctr
;
1363 r
.in
.command
= SPOOLSS_PRINTER_CONTROL_PAUSE
;
1365 torture_comment(tctx
, "Testing SetPrinter: SPOOLSS_PRINTER_CONTROL_PAUSE\n");
1367 status
= dcerpc_spoolss_SetPrinter(p
, tctx
, &r
);
1369 torture_assert_ntstatus_ok(tctx
, status
, "SetPrinter failed");
1371 torture_assert_werr_ok(tctx
, r
.out
.result
, "SetPrinter failed");
1376 static bool test_ResumePrinter(struct torture_context
*tctx
,
1377 struct dcerpc_pipe
*p
,
1378 struct policy_handle
*handle
)
1381 struct spoolss_SetPrinter r
;
1382 struct spoolss_SetPrinterInfoCtr info_ctr
;
1383 struct spoolss_DevmodeContainer devmode_ctr
;
1384 struct sec_desc_buf secdesc_ctr
;
1387 info_ctr
.info
.info0
= NULL
;
1389 ZERO_STRUCT(devmode_ctr
);
1390 ZERO_STRUCT(secdesc_ctr
);
1392 r
.in
.handle
= handle
;
1393 r
.in
.info_ctr
= &info_ctr
;
1394 r
.in
.devmode_ctr
= &devmode_ctr
;
1395 r
.in
.secdesc_ctr
= &secdesc_ctr
;
1396 r
.in
.command
= SPOOLSS_PRINTER_CONTROL_RESUME
;
1398 torture_comment(tctx
, "Testing SetPrinter: SPOOLSS_PRINTER_CONTROL_RESUME\n");
1400 status
= dcerpc_spoolss_SetPrinter(p
, tctx
, &r
);
1402 torture_assert_ntstatus_ok(tctx
, status
, "SetPrinter failed");
1404 torture_assert_werr_ok(tctx
, r
.out
.result
, "SetPrinter failed");
1409 static bool test_GetPrinterData(struct torture_context
*tctx
,
1410 struct dcerpc_pipe
*p
,
1411 struct policy_handle
*handle
,
1412 const char *value_name
)
1415 struct spoolss_GetPrinterData r
;
1417 enum winreg_Type type
;
1418 union spoolss_PrinterData data
;
1420 r
.in
.handle
= handle
;
1421 r
.in
.value_name
= value_name
;
1423 r
.out
.needed
= &needed
;
1427 torture_comment(tctx
, "Testing GetPrinterData\n");
1429 status
= dcerpc_spoolss_GetPrinterData(p
, tctx
, &r
);
1430 torture_assert_ntstatus_ok(tctx
, status
, "GetPrinterData failed");
1432 if (W_ERROR_EQUAL(r
.out
.result
, WERR_MORE_DATA
)) {
1433 r
.in
.offered
= needed
;
1435 status
= dcerpc_spoolss_GetPrinterData(p
, tctx
, &r
);
1436 torture_assert_ntstatus_ok(tctx
, status
, "GetPrinterData failed");
1438 torture_assert_werr_ok(tctx
, r
.out
.result
, "GetPrinterData failed");
1444 static bool test_GetPrinterDataEx(struct torture_context
*tctx
,
1445 struct dcerpc_pipe
*p
,
1446 struct policy_handle
*handle
,
1447 const char *key_name
,
1448 const char *value_name
)
1451 struct spoolss_GetPrinterDataEx r
;
1452 enum winreg_Type type
;
1455 r
.in
.handle
= handle
;
1456 r
.in
.key_name
= key_name
;
1457 r
.in
.value_name
= value_name
;
1460 r
.out
.needed
= &needed
;
1461 r
.out
.buffer
= NULL
;
1463 torture_comment(tctx
, "Testing GetPrinterDataEx\n");
1465 status
= dcerpc_spoolss_GetPrinterDataEx(p
, tctx
, &r
);
1466 if (!NT_STATUS_IS_OK(status
)) {
1467 if (NT_STATUS_EQUAL(status
,NT_STATUS_NET_WRITE_FAULT
) &&
1468 p
->last_fault_code
== DCERPC_FAULT_OP_RNG_ERROR
) {
1469 torture_skip(tctx
, "GetPrinterDataEx not supported by server\n");
1471 torture_assert_ntstatus_ok(tctx
, status
, "GetPrinterDataEx failed");
1474 if (W_ERROR_EQUAL(r
.out
.result
, WERR_MORE_DATA
)) {
1475 r
.in
.offered
= needed
;
1476 r
.out
.buffer
= talloc_array(tctx
, uint8_t, needed
);
1478 status
= dcerpc_spoolss_GetPrinterDataEx(p
, tctx
, &r
);
1479 torture_assert_ntstatus_ok(tctx
, status
, "GetPrinterDataEx failed");
1481 torture_assert_werr_ok(tctx
, r
.out
.result
, "GetPrinterDataEx failed");
1487 static bool test_EnumPrinterData(struct torture_context
*tctx
, struct dcerpc_pipe
*p
,
1488 struct policy_handle
*handle
)
1491 struct spoolss_EnumPrinterData r
;
1494 r
.in
.handle
= handle
;
1495 r
.in
.enum_index
= 0;
1498 uint32_t value_size
= 0;
1499 uint32_t data_size
= 0;
1500 enum winreg_Type type
= 0;
1502 r
.in
.value_offered
= value_size
;
1503 r
.out
.value_needed
= &value_size
;
1504 r
.in
.data_offered
= data_size
;
1505 r
.out
.data_needed
= &data_size
;
1508 r
.out
.data
= talloc_zero_array(tctx
, uint8_t, 0);
1510 torture_comment(tctx
, "Testing EnumPrinterData\n");
1512 status
= dcerpc_spoolss_EnumPrinterData(p
, tctx
, &r
);
1514 torture_assert_ntstatus_ok(tctx
, status
, "EnumPrinterData failed");
1516 r
.in
.value_offered
= value_size
;
1517 r
.out
.value_name
= talloc_zero_array(tctx
, const char, value_size
);
1518 r
.in
.data_offered
= data_size
;
1519 r
.out
.data
= talloc_zero_array(tctx
, uint8_t, data_size
);
1521 status
= dcerpc_spoolss_EnumPrinterData(p
, tctx
, &r
);
1523 torture_assert_ntstatus_ok(tctx
, status
, "EnumPrinterData failed");
1525 test_GetPrinterData(tctx
, p
, handle
, r
.out
.value_name
);
1527 test_GetPrinterDataEx(tctx
,
1528 p
, handle
, "PrinterDriverData",
1533 } while (W_ERROR_IS_OK(r
.out
.result
));
1538 static bool test_EnumPrinterDataEx(struct torture_context
*tctx
,
1539 struct dcerpc_pipe
*p
,
1540 struct policy_handle
*handle
)
1543 struct spoolss_EnumPrinterDataEx r
;
1544 struct spoolss_PrinterEnumValues
*info
;
1548 r
.in
.handle
= handle
;
1549 r
.in
.key_name
= "PrinterDriverData";
1551 r
.out
.needed
= &needed
;
1552 r
.out
.count
= &count
;
1555 torture_comment(tctx
, "Testing EnumPrinterDataEx\n");
1557 status
= dcerpc_spoolss_EnumPrinterDataEx(p
, tctx
, &r
);
1558 torture_assert_ntstatus_ok(tctx
, status
, "EnumPrinterDataEx failed");
1560 r
.in
.offered
= needed
;
1562 status
= dcerpc_spoolss_EnumPrinterDataEx(p
, tctx
, &r
);
1564 torture_assert_ntstatus_ok(tctx
, status
, "EnumPrinterDataEx failed");
1570 static bool test_DeletePrinterData(struct torture_context
*tctx
,
1571 struct dcerpc_pipe
*p
,
1572 struct policy_handle
*handle
,
1573 const char *value_name
)
1576 struct spoolss_DeletePrinterData r
;
1578 r
.in
.handle
= handle
;
1579 r
.in
.value_name
= value_name
;
1581 torture_comment(tctx
, "Testing DeletePrinterData\n");
1583 status
= dcerpc_spoolss_DeletePrinterData(p
, tctx
, &r
);
1585 torture_assert_ntstatus_ok(tctx
, status
, "DeletePrinterData failed");
1590 static bool test_SetPrinterData(struct torture_context
*tctx
,
1591 struct dcerpc_pipe
*p
,
1592 struct policy_handle
*handle
)
1595 struct spoolss_SetPrinterData r
;
1596 const char *value_name
= "spottyfoot";
1598 r
.in
.handle
= handle
;
1599 r
.in
.value_name
= value_name
;
1601 r
.in
.data
.string
= "dog";
1603 torture_comment(tctx
, "Testing SetPrinterData\n");
1605 status
= dcerpc_spoolss_SetPrinterData(p
, tctx
, &r
);
1607 torture_assert_ntstatus_ok(tctx
, status
, "SetPrinterData failed");
1609 if (!test_GetPrinterData(tctx
, p
, handle
, value_name
)) {
1613 if (!test_DeletePrinterData(tctx
, p
, handle
, value_name
)) {
1620 static bool test_SecondaryClosePrinter(struct torture_context
*tctx
,
1621 struct dcerpc_pipe
*p
,
1622 struct policy_handle
*handle
)
1625 struct dcerpc_binding
*b
;
1626 struct dcerpc_pipe
*p2
;
1627 struct spoolss_ClosePrinter cp
;
1629 /* only makes sense on SMB */
1630 if (p
->conn
->transport
.transport
!= NCACN_NP
) {
1634 torture_comment(tctx
, "testing close on secondary pipe\n");
1636 status
= dcerpc_parse_binding(tctx
, p
->conn
->binding_string
, &b
);
1637 torture_assert_ntstatus_ok(tctx
, status
, "Failed to parse dcerpc binding");
1639 status
= dcerpc_secondary_connection(p
, &p2
, b
);
1640 torture_assert_ntstatus_ok(tctx
, status
, "Failed to create secondary connection");
1642 status
= dcerpc_bind_auth_none(p2
, &ndr_table_spoolss
);
1643 torture_assert_ntstatus_ok(tctx
, status
, "Failed to create bind on secondary connection");
1645 cp
.in
.handle
= handle
;
1646 cp
.out
.handle
= handle
;
1648 status
= dcerpc_spoolss_ClosePrinter(p2
, tctx
, &cp
);
1649 torture_assert_ntstatus_equal(tctx
, status
, NT_STATUS_NET_WRITE_FAULT
,
1650 "ERROR: Allowed close on secondary connection");
1652 torture_assert_int_equal(tctx
, p2
->last_fault_code
, DCERPC_FAULT_CONTEXT_MISMATCH
,
1653 "Unexpected fault code");
1660 static bool test_OpenPrinter_badname(struct torture_context
*tctx
,
1661 struct dcerpc_pipe
*p
, const char *name
)
1664 struct spoolss_OpenPrinter op
;
1665 struct spoolss_OpenPrinterEx opEx
;
1666 struct policy_handle handle
;
1669 op
.in
.printername
= name
;
1670 op
.in
.datatype
= NULL
;
1671 op
.in
.devmode_ctr
.devmode
= NULL
;
1672 op
.in
.access_mask
= 0;
1673 op
.out
.handle
= &handle
;
1675 torture_comment(tctx
, "\nTesting OpenPrinter(%s) with bad name\n", op
.in
.printername
);
1677 status
= dcerpc_spoolss_OpenPrinter(p
, tctx
, &op
);
1678 torture_assert_ntstatus_ok(tctx
, status
, "OpenPrinter failed");
1679 if (!W_ERROR_EQUAL(WERR_INVALID_PRINTER_NAME
,op
.out
.result
)) {
1680 torture_comment(tctx
, "OpenPrinter(%s) unexpected result[%s] should be WERR_INVALID_PRINTER_NAME\n",
1681 name
, win_errstr(op
.out
.result
));
1684 if (W_ERROR_IS_OK(op
.out
.result
)) {
1685 ret
&=test_ClosePrinter(tctx
, p
, &handle
);
1688 opEx
.in
.printername
= name
;
1689 opEx
.in
.datatype
= NULL
;
1690 opEx
.in
.devmode_ctr
.devmode
= NULL
;
1691 opEx
.in
.access_mask
= 0;
1693 opEx
.in
.userlevel
.level1
= NULL
;
1694 opEx
.out
.handle
= &handle
;
1696 torture_comment(tctx
, "Testing OpenPrinterEx(%s) with bad name\n", opEx
.in
.printername
);
1698 status
= dcerpc_spoolss_OpenPrinterEx(p
, tctx
, &opEx
);
1699 torture_assert_ntstatus_ok(tctx
, status
, "OpenPrinterEx failed");
1700 if (!W_ERROR_EQUAL(WERR_INVALID_PARAM
,opEx
.out
.result
)) {
1701 torture_comment(tctx
, "OpenPrinterEx(%s) unexpected result[%s] should be WERR_INVALID_PARAM\n",
1702 name
, win_errstr(opEx
.out
.result
));
1705 if (W_ERROR_IS_OK(opEx
.out
.result
)) {
1706 ret
&=test_ClosePrinter(tctx
, p
, &handle
);
1712 static bool test_OpenPrinter(struct torture_context
*tctx
,
1713 struct dcerpc_pipe
*p
,
1717 struct spoolss_OpenPrinter r
;
1718 struct policy_handle handle
;
1721 r
.in
.printername
= talloc_asprintf(tctx
, "\\\\%s\\%s", dcerpc_server_name(p
), name
);
1722 r
.in
.datatype
= NULL
;
1723 r
.in
.devmode_ctr
.devmode
= NULL
;
1724 r
.in
.access_mask
= SEC_FLAG_MAXIMUM_ALLOWED
;
1725 r
.out
.handle
= &handle
;
1727 torture_comment(tctx
, "Testing OpenPrinter(%s)\n", r
.in
.printername
);
1729 status
= dcerpc_spoolss_OpenPrinter(p
, tctx
, &r
);
1731 torture_assert_ntstatus_ok(tctx
, status
, "OpenPrinter failed");
1733 torture_assert_werr_ok(tctx
, r
.out
.result
, "OpenPrinter failed");
1735 if (!test_GetPrinter(tctx
, p
, &handle
)) {
1739 if (!torture_setting_bool(tctx
, "samba3", false)) {
1740 if (!test_SecondaryClosePrinter(tctx
, p
, &handle
)) {
1745 if (!test_ClosePrinter(tctx
, p
, &handle
)) {
1752 static bool call_OpenPrinterEx(struct torture_context
*tctx
,
1753 struct dcerpc_pipe
*p
,
1754 const char *name
, struct policy_handle
*handle
)
1756 struct spoolss_OpenPrinterEx r
;
1757 struct spoolss_UserLevel1 userlevel1
;
1760 if (name
&& name
[0]) {
1761 r
.in
.printername
= talloc_asprintf(tctx
, "\\\\%s\\%s",
1762 dcerpc_server_name(p
), name
);
1764 r
.in
.printername
= talloc_asprintf(tctx
, "\\\\%s",
1765 dcerpc_server_name(p
));
1768 r
.in
.datatype
= NULL
;
1769 r
.in
.devmode_ctr
.devmode
= NULL
;
1770 r
.in
.access_mask
= SEC_FLAG_MAXIMUM_ALLOWED
;
1772 r
.in
.userlevel
.level1
= &userlevel1
;
1773 r
.out
.handle
= handle
;
1775 userlevel1
.size
= 1234;
1776 userlevel1
.client
= "hello";
1777 userlevel1
.user
= "spottyfoot!";
1778 userlevel1
.build
= 1;
1779 userlevel1
.major
= 2;
1780 userlevel1
.minor
= 3;
1781 userlevel1
.processor
= 4;
1783 torture_comment(tctx
, "Testing OpenPrinterEx(%s)\n", r
.in
.printername
);
1785 status
= dcerpc_spoolss_OpenPrinterEx(p
, tctx
, &r
);
1787 torture_assert_ntstatus_ok(tctx
, status
, "OpenPrinterEx failed");
1789 torture_assert_werr_ok(tctx
, r
.out
.result
, "OpenPrinterEx failed");
1794 static bool test_OpenPrinterEx(struct torture_context
*tctx
,
1795 struct dcerpc_pipe
*p
,
1798 struct policy_handle handle
;
1801 if (!call_OpenPrinterEx(tctx
, p
, name
, &handle
)) {
1805 if (!test_GetPrinter(tctx
, p
, &handle
)) {
1809 if (!test_EnumForms(tctx
, p
, &handle
, false)) {
1813 if (!test_AddForm(tctx
, p
, &handle
, false)) {
1817 if (!test_EnumPrinterData(tctx
, p
, &handle
)) {
1821 if (!test_EnumPrinterDataEx(tctx
, p
, &handle
)) {
1825 if (!test_PausePrinter(tctx
, p
, &handle
)) {
1829 if (!test_DoPrintTest(tctx
, p
, &handle
)) {
1833 if (!test_ResumePrinter(tctx
, p
, &handle
)) {
1837 if (!test_SetPrinterData(tctx
, p
, &handle
)) {
1841 if (!torture_setting_bool(tctx
, "samba3", false)) {
1842 if (!test_SecondaryClosePrinter(tctx
, p
, &handle
)) {
1847 if (!test_ClosePrinter(tctx
, p
, &handle
)) {
1854 static bool test_EnumPrinters_old(struct torture_context
*tctx
, struct dcerpc_pipe
*p
)
1856 struct spoolss_EnumPrinters r
;
1858 uint16_t levels
[] = {1, 2, 4, 5};
1862 for (i
=0;i
<ARRAY_SIZE(levels
);i
++) {
1863 union spoolss_PrinterInfo
*info
;
1868 r
.in
.flags
= PRINTER_ENUM_LOCAL
;
1870 r
.in
.level
= levels
[i
];
1873 r
.out
.needed
= &needed
;
1874 r
.out
.count
= &count
;
1877 torture_comment(tctx
, "Testing EnumPrinters level %u\n", r
.in
.level
);
1879 status
= dcerpc_spoolss_EnumPrinters(p
, tctx
, &r
);
1880 torture_assert_ntstatus_ok(tctx
, status
, "EnumPrinters failed");
1882 if (W_ERROR_EQUAL(r
.out
.result
, WERR_INSUFFICIENT_BUFFER
)) {
1883 DATA_BLOB blob
= data_blob_talloc(tctx
, NULL
, needed
);
1884 data_blob_clear(&blob
);
1885 r
.in
.buffer
= &blob
;
1886 r
.in
.offered
= needed
;
1887 status
= dcerpc_spoolss_EnumPrinters(p
, tctx
, &r
);
1890 torture_assert_ntstatus_ok(tctx
, status
, "EnumPrinters failed");
1892 torture_assert_werr_ok(tctx
, r
.out
.result
, "EnumPrinters failed");
1895 torture_comment(tctx
, "No printers returned\n");
1899 for (j
=0;j
<count
;j
++) {
1900 if (r
.in
.level
== 1) {
1901 char *unc
= talloc_strdup(tctx
, info
[j
].info1
.name
);
1904 if (unc
[0] == '\\' && unc
[1] == '\\') {
1907 slash
= strchr(unc
, '\\');
1912 if (!test_OpenPrinter(tctx
, p
, name
)) {
1915 if (!test_OpenPrinterEx(tctx
, p
, name
)) {
1926 static bool test_GetPrinterDriver2(struct dcerpc_pipe
*p
,
1927 struct policy_handle
*handle
,
1928 const char *driver_name
)
1931 struct spoolss_GetPrinterDriver2 r
;
1933 uint32_t server_major_version
;
1934 uint32_t server_minor_version
;
1936 r
.in
.handle
= handle
;
1937 r
.in
.architecture
= "W32X86";
1941 r
.in
.client_major_version
= 0;
1942 r
.in
.client_minor_version
= 0;
1943 r
.out
.needed
= &needed
;
1944 r
.out
.server_major_version
= &server_major_version
;
1945 r
.out
.server_minor_version
= &server_minor_version
;
1947 printf("Testing GetPrinterDriver2\n");
1949 status
= dcerpc_spoolss_GetPrinterDriver2(p
, tctx
, &r
);
1950 if (!NT_STATUS_IS_OK(status
)) {
1951 printf("GetPrinterDriver2 failed - %s\n", nt_errstr(status
));
1955 if (W_ERROR_EQUAL(r
.out
.result
, WERR_INSUFFICIENT_BUFFER
)) {
1956 r
.in
.offered
= needed
;
1957 status
= dcerpc_spoolss_GetPrinterDriver2(p
, tctx
, &r
);
1960 if (!NT_STATUS_IS_OK(status
)) {
1961 printf("GetPrinterDriver2 failed - %s\n",
1966 if (!W_ERROR_IS_OK(r
.out
.result
)) {
1967 printf("GetPrinterDriver2 failed - %s\n",
1968 win_errstr(r
.out
.result
));
1976 static bool test_EnumPrinterDrivers_old(struct torture_context
*tctx
,
1977 struct dcerpc_pipe
*p
)
1979 struct spoolss_EnumPrinterDrivers r
;
1981 uint16_t levels
[] = {1, 2, 3, 4, 5, 6};
1984 for (i
=0;i
<ARRAY_SIZE(levels
);i
++) {
1988 union spoolss_DriverInfo
*info
;
1990 r
.in
.server
= talloc_asprintf(tctx
, "\\\\%s", dcerpc_server_name(p
));
1991 r
.in
.environment
= SPOOLSS_ARCHITECTURE_NT_X86
;
1992 r
.in
.level
= levels
[i
];
1995 r
.out
.needed
= &needed
;
1996 r
.out
.count
= &count
;
1999 torture_comment(tctx
, "Testing EnumPrinterDrivers level %u\n", r
.in
.level
);
2001 status
= dcerpc_spoolss_EnumPrinterDrivers(p
, tctx
, &r
);
2003 torture_assert_ntstatus_ok(tctx
, status
, "EnumPrinterDrivers failed");
2005 if (W_ERROR_EQUAL(r
.out
.result
, WERR_INSUFFICIENT_BUFFER
)) {
2006 DATA_BLOB blob
= data_blob_talloc(tctx
, NULL
, needed
);
2007 data_blob_clear(&blob
);
2008 r
.in
.buffer
= &blob
;
2009 r
.in
.offered
= needed
;
2010 status
= dcerpc_spoolss_EnumPrinterDrivers(p
, tctx
, &r
);
2013 torture_assert_ntstatus_ok(tctx
, status
, "EnumPrinterDrivers failed");
2015 torture_assert_werr_ok(tctx
, r
.out
.result
, "EnumPrinterDrivers failed");
2018 torture_comment(tctx
, "No printer drivers returned\n");
2026 bool torture_rpc_spoolss(struct torture_context
*torture
)
2029 struct dcerpc_pipe
*p
;
2031 struct test_spoolss_context
*ctx
;
2033 status
= torture_rpc_connection(torture
, &p
, &ndr_table_spoolss
);
2034 if (!NT_STATUS_IS_OK(status
)) {
2038 ctx
= talloc_zero(torture
, struct test_spoolss_context
);
2040 ret
&= test_OpenPrinter_server(torture
, p
, ctx
);
2042 ret
&= test_GetPrinterData(torture
, p
, &ctx
->server_handle
, "W3SvcInstalled");
2043 ret
&= test_GetPrinterData(torture
, p
, &ctx
->server_handle
, "BeepEnabled");
2044 ret
&= test_GetPrinterData(torture
, p
, &ctx
->server_handle
, "EventLog");
2045 ret
&= test_GetPrinterData(torture
, p
, &ctx
->server_handle
, "NetPopup");
2046 ret
&= test_GetPrinterData(torture
, p
, &ctx
->server_handle
, "NetPopupToComputer");
2047 ret
&= test_GetPrinterData(torture
, p
, &ctx
->server_handle
, "MajorVersion");
2048 ret
&= test_GetPrinterData(torture
, p
, &ctx
->server_handle
, "MinorVersion");
2049 ret
&= test_GetPrinterData(torture
, p
, &ctx
->server_handle
, "DefaultSpoolDirectory");
2050 ret
&= test_GetPrinterData(torture
, p
, &ctx
->server_handle
, "Architecture");
2051 ret
&= test_GetPrinterData(torture
, p
, &ctx
->server_handle
, "DsPresent");
2052 ret
&= test_GetPrinterData(torture
, p
, &ctx
->server_handle
, "OSVersion");
2053 ret
&= test_GetPrinterData(torture
, p
, &ctx
->server_handle
, "OSVersionEx");
2054 ret
&= test_GetPrinterData(torture
, p
, &ctx
->server_handle
, "DNSMachineName");
2055 ret
&= test_EnumForms(torture
, p
, &ctx
->server_handle
, true);
2056 ret
&= test_AddForm(torture
, p
, &ctx
->server_handle
, true);
2057 ret
&= test_EnumPorts(torture
, p
, ctx
);
2058 ret
&= test_GetPrinterDriverDirectory(torture
, p
, ctx
);
2059 ret
&= test_GetPrintProcessorDirectory(torture
, p
, ctx
);
2060 ret
&= test_EnumPrinterDrivers(torture
, p
, ctx
);
2061 ret
&= test_EnumMonitors(torture
, p
, ctx
);
2062 ret
&= test_EnumPrintProcessors(torture
, p
, ctx
);
2063 ret
&= test_EnumPrintProcDataTypes(torture
, p
, ctx
);
2064 ret
&= test_EnumPrinters(torture
, p
, ctx
);
2065 ret
&= test_OpenPrinter_badname(torture
, p
, "__INVALID_PRINTER__");
2066 ret
&= test_OpenPrinter_badname(torture
, p
, "\\\\__INVALID_HOST__");
2067 ret
&= test_OpenPrinter_badname(torture
, p
, "");
2068 ret
&= test_OpenPrinter_badname(torture
, p
, "\\\\\\");
2069 ret
&= test_OpenPrinter_badname(torture
, p
, "\\\\\\__INVALID_PRINTER__");
2070 ret
&= test_OpenPrinter_badname(torture
, p
, talloc_asprintf(torture
, "\\\\%s\\", dcerpc_server_name(p
)));
2071 ret
&= test_OpenPrinter_badname(torture
, p
,
2072 talloc_asprintf(torture
, "\\\\%s\\__INVALID_PRINTER__", dcerpc_server_name(p
)));
2075 ret
&= test_AddPort(torture
, p
);
2076 ret
&= test_EnumPorts_old(torture
, p
);
2077 ret
&= test_EnumPrinters_old(torture
, p
);
2078 ret
&= test_EnumPrinterDrivers_old(torture
, p
);