spoolss: make spoolss deal with ndr64 ULONG_PTR of devmode_ptr and secdesc_ptr.
[Samba/gebeck_regimport.git] / source4 / torture / rpc / spoolss_notify.c
blob0bf987d1d96cafd05175a5a61816d8886b18ec23
1 /*
2 Unix SMB/CIFS implementation.
3 test suite for spoolss rpc notify operations
5 Copyright (C) Jelmer Vernooij 2007
6 Copyright (C) Guenther Deschner 2010
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, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include "includes.h"
24 #include "system/filesys.h"
25 #include "librpc/gen_ndr/ndr_spoolss_c.h"
26 #include "librpc/gen_ndr/ndr_spoolss.h"
27 #include "torture/rpc/torture_rpc.h"
28 #include "rpc_server/dcerpc_server.h"
29 #include "rpc_server/service_rpc.h"
30 #include "smbd/process_model.h"
31 #include "smb_server/smb_server.h"
32 #include "lib/socket/netif.h"
33 #include "ntvfs/ntvfs.h"
34 #include "param/param.h"
36 static NTSTATUS spoolss__op_bind(struct dcesrv_call_state *dce_call,
37 const struct dcesrv_interface *iface,
38 uint32_t if_version)
40 return NT_STATUS_OK;
43 static void spoolss__op_unbind(struct dcesrv_connection_context *context, const struct dcesrv_interface *iface)
47 static NTSTATUS spoolss__op_ndr_pull(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, struct ndr_pull *pull, void **r)
49 enum ndr_err_code ndr_err;
50 uint16_t opnum = dce_call->pkt.u.request.opnum;
52 dce_call->fault_code = 0;
54 if (opnum >= ndr_table_spoolss.num_calls) {
55 dce_call->fault_code = DCERPC_FAULT_OP_RNG_ERROR;
56 return NT_STATUS_NET_WRITE_FAULT;
59 *r = talloc_size(mem_ctx, ndr_table_spoolss.calls[opnum].struct_size);
60 NT_STATUS_HAVE_NO_MEMORY(*r);
62 /* unravel the NDR for the packet */
63 ndr_err = ndr_table_spoolss.calls[opnum].ndr_pull(pull, NDR_IN, *r);
64 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
65 dcerpc_log_packet(dce_call->conn->packet_log_dir,
66 &ndr_table_spoolss, opnum, NDR_IN,
67 &dce_call->pkt.u.request.stub_and_verifier);
68 dce_call->fault_code = DCERPC_FAULT_NDR;
69 return NT_STATUS_NET_WRITE_FAULT;
72 return NT_STATUS_OK;
75 /* Note that received_packets are allocated in talloc_autofree_context(),
76 * because no other context appears to stay around long enough. */
77 static struct received_packet {
78 uint16_t opnum;
79 void *r;
80 struct received_packet *prev, *next;
81 } *received_packets = NULL;
83 static WERROR _spoolss_ReplyOpenPrinter(struct dcesrv_call_state *dce_call,
84 TALLOC_CTX *mem_ctx,
85 struct spoolss_ReplyOpenPrinter *r)
87 DEBUG(1,("_spoolss_ReplyOpenPrinter\n"));
89 NDR_PRINT_IN_DEBUG(spoolss_ReplyOpenPrinter, r);
91 r->out.handle = talloc(r, struct policy_handle);
92 r->out.handle->handle_type = 42;
93 r->out.handle->uuid = GUID_random();
94 r->out.result = WERR_OK;
96 NDR_PRINT_OUT_DEBUG(spoolss_ReplyOpenPrinter, r);
98 return WERR_OK;
101 static WERROR _spoolss_ReplyClosePrinter(struct dcesrv_call_state *dce_call,
102 TALLOC_CTX *mem_ctx,
103 struct spoolss_ReplyClosePrinter *r)
105 DEBUG(1,("_spoolss_ReplyClosePrinter\n"));
107 NDR_PRINT_IN_DEBUG(spoolss_ReplyClosePrinter, r);
109 ZERO_STRUCTP(r->out.handle);
110 r->out.result = WERR_OK;
112 NDR_PRINT_OUT_DEBUG(spoolss_ReplyClosePrinter, r);
114 return WERR_OK;
117 static WERROR _spoolss_RouterReplyPrinterEx(struct dcesrv_call_state *dce_call,
118 TALLOC_CTX *mem_ctx,
119 struct spoolss_RouterReplyPrinterEx *r)
121 DEBUG(1,("_spoolss_RouterReplyPrinterEx\n"));
123 NDR_PRINT_IN_DEBUG(spoolss_RouterReplyPrinterEx, r);
125 r->out.reply_result = talloc(r, uint32_t);
126 *r->out.reply_result = 0;
127 r->out.result = WERR_OK;
129 NDR_PRINT_OUT_DEBUG(spoolss_RouterReplyPrinterEx, r);
131 return WERR_OK;
134 static NTSTATUS spoolss__op_dispatch(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, void *r)
136 uint16_t opnum = dce_call->pkt.u.request.opnum;
137 struct received_packet *rp;
139 rp = talloc_zero(talloc_autofree_context(), struct received_packet);
140 rp->opnum = opnum;
141 rp->r = talloc_reference(rp, r);
143 DLIST_ADD_END(received_packets, rp, struct received_packet *);
145 switch (opnum) {
146 case 58: {
147 struct spoolss_ReplyOpenPrinter *r2 = (struct spoolss_ReplyOpenPrinter *)r;
148 r2->out.result = _spoolss_ReplyOpenPrinter(dce_call, mem_ctx, r2);
149 break;
151 case 60: {
152 struct spoolss_ReplyClosePrinter *r2 = (struct spoolss_ReplyClosePrinter *)r;
153 r2->out.result = _spoolss_ReplyClosePrinter(dce_call, mem_ctx, r2);
154 break;
156 case 66: {
157 struct spoolss_RouterReplyPrinterEx *r2 = (struct spoolss_RouterReplyPrinterEx *)r;
158 r2->out.result = _spoolss_RouterReplyPrinterEx(dce_call, mem_ctx, r2);
159 break;
162 default:
163 dce_call->fault_code = DCERPC_FAULT_OP_RNG_ERROR;
164 break;
167 if (dce_call->fault_code != 0) {
168 dcerpc_log_packet(dce_call->conn->packet_log_dir,
169 &ndr_table_spoolss, opnum, NDR_IN,
170 &dce_call->pkt.u.request.stub_and_verifier);
171 return NT_STATUS_NET_WRITE_FAULT;
173 return NT_STATUS_OK;
177 static NTSTATUS spoolss__op_reply(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, void *r)
179 return NT_STATUS_OK;
183 static NTSTATUS spoolss__op_ndr_push(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, struct ndr_push *push, const void *r)
185 enum ndr_err_code ndr_err;
186 uint16_t opnum = dce_call->pkt.u.request.opnum;
188 ndr_err = ndr_table_spoolss.calls[opnum].ndr_push(push, NDR_OUT, r);
189 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
190 dce_call->fault_code = DCERPC_FAULT_NDR;
191 return NT_STATUS_NET_WRITE_FAULT;
194 return NT_STATUS_OK;
197 const static struct dcesrv_interface notify_test_spoolss_interface = {
198 .name = "spoolss",
199 .syntax_id = {{0x12345678,0x1234,0xabcd,{0xef,0x00},{0x01,0x23,0x45,0x67,0x89,0xab}},1.0},
200 .bind = spoolss__op_bind,
201 .unbind = spoolss__op_unbind,
202 .ndr_pull = spoolss__op_ndr_pull,
203 .dispatch = spoolss__op_dispatch,
204 .reply = spoolss__op_reply,
205 .ndr_push = spoolss__op_ndr_push
208 static bool spoolss__op_interface_by_uuid(struct dcesrv_interface *iface, const struct GUID *uuid, uint32_t if_version)
210 if (notify_test_spoolss_interface.syntax_id.if_version == if_version &&
211 GUID_equal(&notify_test_spoolss_interface.syntax_id.uuid, uuid)) {
212 memcpy(iface,&notify_test_spoolss_interface, sizeof(*iface));
213 return true;
216 return false;
219 static bool spoolss__op_interface_by_name(struct dcesrv_interface *iface, const char *name)
221 if (strcmp(notify_test_spoolss_interface.name, name)==0) {
222 memcpy(iface, &notify_test_spoolss_interface, sizeof(*iface));
223 return true;
226 return false;
229 static NTSTATUS spoolss__op_init_server(struct dcesrv_context *dce_ctx, const struct dcesrv_endpoint_server *ep_server)
231 int i;
233 for (i=0;i<ndr_table_spoolss.endpoints->count;i++) {
234 NTSTATUS ret;
235 const char *name = ndr_table_spoolss.endpoints->names[i];
237 ret = dcesrv_interface_register(dce_ctx, name, &notify_test_spoolss_interface, NULL);
238 if (!NT_STATUS_IS_OK(ret)) {
239 DEBUG(1,("spoolss_op_init_server: failed to register endpoint '%s'\n",name));
240 return ret;
244 return NT_STATUS_OK;
247 static bool test_OpenPrinter(struct torture_context *tctx,
248 struct dcerpc_pipe *p,
249 struct policy_handle *handle,
250 const char *printername)
252 struct spoolss_OpenPrinter r;
253 struct dcerpc_binding_handle *b = p->binding_handle;
255 ZERO_STRUCT(r);
257 r.in.printername = printername;
258 r.in.datatype = NULL;
259 r.in.devmode_ctr.devmode= NULL;
260 r.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
261 r.out.handle = handle;
263 torture_comment(tctx, "Testing OpenPrinter(%s)\n", r.in.printername);
265 torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_OpenPrinter_r(b, tctx, &r),
266 "OpenPrinter failed");
267 torture_assert_werr_ok(tctx, r.out.result,
268 "OpenPrinter failed");
270 return true;
273 static struct spoolss_NotifyOption *setup_printserver_NotifyOption(struct torture_context *tctx)
275 struct spoolss_NotifyOption *o;
277 o = talloc_zero(tctx, struct spoolss_NotifyOption);
279 o->version = 2;
280 o->flags = PRINTER_NOTIFY_OPTIONS_REFRESH;
282 o->count = 2;
283 o->types = talloc_zero_array(o, struct spoolss_NotifyOptionType, o->count);
285 o->types[0].type = PRINTER_NOTIFY_TYPE;
286 o->types[0].count = 1;
287 o->types[0].fields = talloc_array(o->types, union spoolss_Field, o->types[0].count);
288 o->types[0].fields[0].field = PRINTER_NOTIFY_FIELD_SERVER_NAME;
290 o->types[1].type = JOB_NOTIFY_TYPE;
291 o->types[1].count = 1;
292 o->types[1].fields = talloc_array(o->types, union spoolss_Field, o->types[1].count);
293 o->types[1].fields[0].field = JOB_NOTIFY_FIELD_MACHINE_NAME;
295 return o;
298 static struct spoolss_NotifyOption *setup_printer_NotifyOption(struct torture_context *tctx)
300 struct spoolss_NotifyOption *o;
302 o = talloc_zero(tctx, struct spoolss_NotifyOption);
304 o->version = 2;
305 o->flags = PRINTER_NOTIFY_OPTIONS_REFRESH;
307 o->count = 1;
308 o->types = talloc_zero_array(o, struct spoolss_NotifyOptionType, o->count);
310 o->types[0].type = PRINTER_NOTIFY_TYPE;
311 o->types[0].count = 1;
312 o->types[0].fields = talloc_array(o->types, union spoolss_Field, o->types[0].count);
313 o->types[0].fields[0].field = PRINTER_NOTIFY_FIELD_COMMENT;
315 return o;
319 static bool test_RemoteFindFirstPrinterChangeNotifyEx(struct torture_context *tctx,
320 struct dcerpc_binding_handle *b,
321 struct policy_handle *handle,
322 const char *address,
323 struct spoolss_NotifyOption *option)
325 struct spoolss_RemoteFindFirstPrinterChangeNotifyEx r;
326 const char *local_machine = talloc_asprintf(tctx, "\\\\%s", address);
328 torture_comment(tctx, "Testing RemoteFindFirstPrinterChangeNotifyEx(%s)\n", local_machine);
330 r.in.flags = 0;
331 r.in.local_machine = local_machine;
332 r.in.options = 0;
333 r.in.printer_local = 0;
334 r.in.notify_options = option;
335 r.in.handle = handle;
337 torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_RemoteFindFirstPrinterChangeNotifyEx_r(b, tctx, &r),
338 "RemoteFindFirstPrinterChangeNotifyEx failed");
339 torture_assert_werr_ok(tctx, r.out.result,
340 "error return code for RemoteFindFirstPrinterChangeNotifyEx");
342 return true;
345 static bool test_RouterRefreshPrinterChangeNotify(struct torture_context *tctx,
346 struct dcerpc_binding_handle *b,
347 struct policy_handle *handle,
348 struct spoolss_NotifyOption *options,
349 struct spoolss_NotifyInfo **info)
351 struct spoolss_RouterRefreshPrinterChangeNotify r;
353 torture_comment(tctx, "Testing RouterRefreshPrinterChangeNotify\n");
355 r.in.handle = handle;
356 r.in.change_low = 0;
357 r.in.options = options;
358 r.out.info = info;
360 torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_RouterRefreshPrinterChangeNotify_r(b, tctx, &r),
361 "RouterRefreshPrinterChangeNotify failed");
362 torture_assert_werr_ok(tctx, r.out.result,
363 "error return code for RouterRefreshPrinterChangeNotify");
365 return true;
368 static bool test_SetPrinter(struct torture_context *tctx,
369 struct dcerpc_pipe *p,
370 struct policy_handle *handle)
372 union spoolss_PrinterInfo info;
373 struct spoolss_SetPrinter r;
374 struct spoolss_SetPrinterInfo2 info2;
375 struct spoolss_SetPrinterInfoCtr info_ctr;
376 struct spoolss_DevmodeContainer devmode_ctr;
377 struct sec_desc_buf secdesc_ctr;
378 struct dcerpc_binding_handle *b = p->binding_handle;
380 torture_assert(tctx, test_GetPrinter_level(tctx, b, handle, 2, &info), "");
382 ZERO_STRUCT(devmode_ctr);
383 ZERO_STRUCT(secdesc_ctr);
385 info2.servername = info.info2.servername;
386 info2.printername = info.info2.printername;
387 info2.sharename = info.info2.sharename;
388 info2.portname = info.info2.portname;
389 info2.drivername = info.info2.drivername;
390 info2.comment = talloc_asprintf(tctx, "torture_comment %d\n", (int)time(NULL));
391 info2.location = info.info2.location;
392 info2.devmode_ptr = NULL;
393 info2.sepfile = info.info2.sepfile;
394 info2.printprocessor = info.info2.printprocessor;
395 info2.datatype = info.info2.datatype;
396 info2.parameters = info.info2.parameters;
397 info2.secdesc_ptr = NULL;
398 info2.attributes = info.info2.attributes;
399 info2.priority = info.info2.priority;
400 info2.defaultpriority = info.info2.defaultpriority;
401 info2.starttime = info.info2.starttime;
402 info2.untiltime = info.info2.untiltime;
403 info2.status = info.info2.status;
404 info2.cjobs = info.info2.cjobs;
405 info2.averageppm = info.info2.averageppm;
407 info_ctr.level = 2;
408 info_ctr.info.info2 = &info2;
410 r.in.handle = handle;
411 r.in.info_ctr = &info_ctr;
412 r.in.devmode_ctr = &devmode_ctr;
413 r.in.secdesc_ctr = &secdesc_ctr;
414 r.in.command = 0;
416 torture_assert_ntstatus_ok(tctx, dcerpc_spoolss_SetPrinter_r(b, tctx, &r), "SetPrinter failed");
417 torture_assert_werr_ok(tctx, r.out.result, "SetPrinter failed");
419 return true;
422 static bool test_start_dcerpc_server(struct torture_context *tctx,
423 struct tevent_context *event_ctx,
424 struct dcesrv_context **dce_ctx_p,
425 const char **address_p)
427 struct dcesrv_endpoint_server ep_server;
428 NTSTATUS status;
429 struct dcesrv_context *dce_ctx;
430 const char *endpoints[] = { "spoolss", NULL };
431 struct dcesrv_endpoint *e;
432 const char *address;
433 struct interface *ifaces;
435 ntvfs_init(tctx->lp_ctx);
437 /* fill in our name */
438 ep_server.name = "spoolss";
440 /* fill in all the operations */
441 ep_server.init_server = spoolss__op_init_server;
443 ep_server.interface_by_uuid = spoolss__op_interface_by_uuid;
444 ep_server.interface_by_name = spoolss__op_interface_by_name;
446 torture_assert_ntstatus_ok(tctx, dcerpc_register_ep_server(&ep_server),
447 "unable to register spoolss server");
449 lpcfg_set_cmdline(tctx->lp_ctx, "dcerpc endpoint servers", "spoolss");
451 load_interface_list(tctx, tctx->lp_ctx, &ifaces);
452 address = iface_list_first_v4(ifaces);
454 torture_comment(tctx, "Listening for callbacks on %s\n", address);
456 status = process_model_init(tctx->lp_ctx);
457 torture_assert_ntstatus_ok(tctx, status,
458 "unable to initialize process models");
460 status = smbsrv_add_socket(tctx, event_ctx, tctx->lp_ctx, process_model_startup("single"), address);
461 torture_assert_ntstatus_ok(tctx, status, "starting smb server");
463 status = dcesrv_init_context(tctx, tctx->lp_ctx, endpoints, &dce_ctx);
464 torture_assert_ntstatus_ok(tctx, status,
465 "unable to initialize DCE/RPC server");
467 for (e=dce_ctx->endpoint_list;e;e=e->next) {
468 status = dcesrv_add_ep(dce_ctx, tctx->lp_ctx,
469 e, tctx->ev, process_model_startup("single"));
470 torture_assert_ntstatus_ok(tctx, status,
471 "unable listen on dcerpc endpoint server");
474 *dce_ctx_p = dce_ctx;
475 *address_p = address;
477 return true;
480 static struct received_packet *last_packet(struct received_packet *p)
482 struct received_packet *tmp;
483 for (tmp = p; tmp->next; tmp = tmp->next) ;;
484 return tmp;
487 static bool test_RFFPCNEx(struct torture_context *tctx,
488 struct dcerpc_pipe *p)
490 struct dcesrv_context *dce_ctx;
491 struct policy_handle handle;
492 const char *address;
493 struct received_packet *tmp;
494 struct spoolss_NotifyOption *server_option = setup_printserver_NotifyOption(tctx);
495 #if 0
496 struct spoolss_NotifyOption *printer_option = setup_printer_NotifyOption(tctx);
497 #endif
498 struct dcerpc_binding_handle *b = p->binding_handle;
499 const char *printername = NULL;
500 struct spoolss_NotifyInfo *info = NULL;
502 received_packets = NULL;
504 /* Start DCE/RPC server */
505 torture_assert(tctx, test_start_dcerpc_server(tctx, p->conn->event_ctx, &dce_ctx, &address), "");
507 printername = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
509 torture_assert(tctx, test_OpenPrinter(tctx, p, &handle, printername), "");
510 torture_assert(tctx, test_RemoteFindFirstPrinterChangeNotifyEx(tctx, b, &handle, address, server_option), "");
511 torture_assert(tctx, received_packets, "no packets received");
512 torture_assert_int_equal(tctx, received_packets->opnum, NDR_SPOOLSS_REPLYOPENPRINTER,
513 "no ReplyOpenPrinter packet after RemoteFindFirstPrinterChangeNotifyEx");
514 torture_assert(tctx, test_RouterRefreshPrinterChangeNotify(tctx, b, &handle, NULL, &info), "");
515 torture_assert(tctx, test_RouterRefreshPrinterChangeNotify(tctx, b, &handle, server_option, &info), "");
516 torture_assert(tctx, test_ClosePrinter(tctx, b, &handle), "");
517 tmp = last_packet(received_packets);
518 torture_assert_int_equal(tctx, tmp->opnum, NDR_SPOOLSS_REPLYCLOSEPRINTER,
519 "no ReplyClosePrinter packet after ClosePrinter");
520 #if 0
521 printername = talloc_asprintf(tctx, "\\\\%s\\%s", dcerpc_server_name(p), name);
523 torture_assert(tctx, test_OpenPrinter(tctx, p, &handle, "Epson AL-2600"), "");
524 torture_assert(tctx, test_RemoteFindFirstPrinterChangeNotifyEx(tctx, p, &handle, address, printer_option), "");
525 tmp = last_packet(received_packets);
526 torture_assert_int_equal(tctx, tmp->opnum, NDR_SPOOLSS_REPLYOPENPRINTER,
527 "no ReplyOpenPrinter packet after RemoteFindFirstPrinterChangeNotifyEx");
528 torture_assert(tctx, test_RouterRefreshPrinterChangeNotify(tctx, p, &handle, NULL, &info), "");
529 torture_assert(tctx, test_RouterRefreshPrinterChangeNotify(tctx, p, &handle, printer_option, &info), "");
530 torture_assert(tctx, test_SetPrinter(tctx, p, &handle), "");
531 tmp = last_packet(received_packets);
532 torture_assert_int_equal(tctx, tmp->opnum, NDR_SPOOLSS_ROUTERREPLYPRINTEREX,
533 "no RouterReplyPrinterEx packet after ClosePrinter");
534 torture_assert(tctx, test_ClosePrinter(tctx, p, &handle), "");
535 tmp = last_packet(received_packets);
536 torture_assert_int_equal(tctx, tmp->opnum, NDR_SPOOLSS_REPLYCLOSEPRINTER,
537 "no ReplyClosePrinter packet after ClosePrinter");
538 #endif
539 /* Shut down DCE/RPC server */
540 talloc_free(dce_ctx);
542 return true;
545 /** Test that makes sure that calling ReplyOpenPrinter()
546 * on Samba 4 will cause an irpc broadcast call.
548 static bool test_ReplyOpenPrinter(struct torture_context *tctx,
549 struct dcerpc_pipe *p)
551 struct spoolss_ReplyOpenPrinter r;
552 struct spoolss_ReplyClosePrinter s;
553 struct policy_handle h;
554 struct dcerpc_binding_handle *b = p->binding_handle;
556 if (torture_setting_bool(tctx, "samba3", false)) {
557 torture_skip(tctx, "skipping ReplyOpenPrinter server implementation test against s3\n");
560 r.in.server_name = "earth";
561 r.in.printer_local = 2;
562 r.in.type = REG_DWORD;
563 r.in.bufsize = 0;
564 r.in.buffer = NULL;
565 r.out.handle = &h;
567 torture_assert_ntstatus_ok(tctx,
568 dcerpc_spoolss_ReplyOpenPrinter_r(b, tctx, &r),
569 "spoolss_ReplyOpenPrinter call failed");
571 torture_assert_werr_ok(tctx, r.out.result, "error return code");
573 s.in.handle = &h;
574 s.out.handle = &h;
576 torture_assert_ntstatus_ok(tctx,
577 dcerpc_spoolss_ReplyClosePrinter_r(b, tctx, &s),
578 "spoolss_ReplyClosePrinter call failed");
580 torture_assert_werr_ok(tctx, r.out.result, "error return code");
582 return true;
585 struct torture_suite *torture_rpc_spoolss_notify(TALLOC_CTX *mem_ctx)
587 struct torture_suite *suite = torture_suite_create(mem_ctx, "spoolss.notify");
589 struct torture_rpc_tcase *tcase = torture_suite_add_rpc_iface_tcase(suite,
590 "notify", &ndr_table_spoolss);
592 torture_rpc_tcase_add_test(tcase, "testRFFPCNEx", test_RFFPCNEx);
593 torture_rpc_tcase_add_test(tcase, "testReplyOpenPrinter", test_ReplyOpenPrinter);
595 return suite;