2 Unix SMB/CIFS implementation.
3 test suite for winreg ndr operations
5 Copyright (C) Jelmer Vernooij 2007
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "torture/ndr/ndr.h"
23 #include "torture/ndr/proto.h"
24 #include "../lib/util/dlinklist.h"
25 #include "param/param.h"
26 #include "librpc/gen_ndr/ndr_misc.h"
28 struct ndr_pull_test_data
{
30 DATA_BLOB data_context
;
32 ndr_pull_flags_fn_t pull_fn
;
33 ndr_push_flags_fn_t push_fn
;
34 ndr_print_fn_t print_fn
;
35 ndr_print_function_t print_function
;
36 ndr_flags_type ndr_flags
;
38 enum ndr_err_code ndr_err
;
41 static enum ndr_err_code
torture_ndr_push_struct_blob_flags(DATA_BLOB
*blob
, TALLOC_CTX
*mem_ctx
, ndr_flags_type flags
, libndr_flags ndr_flags
, const void *p
, ndr_push_flags_fn_t fn
)
44 ndr
= ndr_push_init_ctx(mem_ctx
);
45 NDR_ERR_HAVE_NO_MEMORY(ndr
);
47 ndr
->flags
|= ndr_flags
;
49 NDR_CHECK(fn(ndr
, flags
, p
));
51 *blob
= ndr_push_blob(ndr
);
52 talloc_steal(mem_ctx
, blob
->data
);
55 return NDR_ERR_SUCCESS
;
58 static bool torture_ndrdump(struct torture_context
*tctx
,
60 const struct ndr_pull_test_data
*data
,
65 struct ndr_print
*ndr_print
;
67 ndr_flags_type ndr_flags
= data
->ndr_flags
| flags
;
69 ndr_print
= talloc_zero(tctx
, struct ndr_print
);
70 torture_assert(tctx
, ndr_print
, "out of memory");
72 if (DEBUGLEVEL
>= 10) {
73 ndr_print
->print
= ndr_print_debug_helper
;
75 ndr_print
->print
= ndr_print_string_helper
;
80 torture_assert(tctx
, ndr_flags
, "no flags have been set");
82 if (ndr_flags
& (NDR_BUFFERS
|NDR_SCALARS
)) {
83 data
->print_fn(ndr_print
, name
, ds
);
85 data
->print_function(ndr_print
, name
, ndr_flags
, ds
);
88 name_raw
= talloc_asprintf(tctx
, "%s (RAW DATA)", name
);
89 torture_assert(tctx
, name_raw
, "out of memory");
91 ndr_print_DATA_BLOB(ndr_print
, name_raw
, data
->data
);
93 talloc_free(ndr_print
);
98 static bool wrap_ndr_pullpush_test(struct torture_context
*tctx
,
99 struct torture_tcase
*tcase
,
100 struct torture_test
*test
)
102 bool (*check_fn
) (struct torture_context
*ctx
, void *data
) = test
->fn
;
103 const struct ndr_pull_test_data
*data
= (const struct ndr_pull_test_data
*)test
->data
;
104 struct ndr_pull
*ndr
= ndr_pull_init_blob(&(data
->data
), tctx
);
105 void *ds
= talloc_zero_size(ndr
, data
->struct_size
);
107 uint32_t highest_ofs
;
109 torture_assert(tctx
, data
, "out of memory");
110 torture_assert(tctx
, ndr
, "out of memory");
111 torture_assert(tctx
, ds
, "out of memory");
113 ndr
->flags
|= data
->flags
;
115 ndr
->flags
|= LIBNDR_FLAG_REF_ALLOC
;
117 torture_assert_ndr_success(tctx
, data
->pull_fn(ndr
, data
->ndr_flags
, ds
),
120 if (ndr
->offset
> ndr
->relative_highest_offset
) {
121 highest_ofs
= ndr
->offset
;
123 highest_ofs
= ndr
->relative_highest_offset
;
126 torture_assert(tctx
, highest_ofs
== ndr
->data_size
,
127 talloc_asprintf(tctx
,
128 "%d unread bytes", ndr
->data_size
- highest_ofs
));
130 if (check_fn
!= NULL
) {
131 ret
= check_fn(tctx
, ds
);
136 torture_ndrdump(tctx
, ndr
, data
, data
->ndr_flags
, ds
, "ds");
138 if (data
->push_fn
!= NULL
) {
140 torture_assert_ndr_success(tctx
, torture_ndr_push_struct_blob_flags(&outblob
, ndr
, data
->ndr_flags
, ndr
->flags
, ds
, data
->push_fn
), "pushing");
141 torture_assert_data_blob_equal(tctx
, outblob
, data
->data
, "ndr push compare");
148 _PUBLIC_
struct torture_test
*_torture_suite_add_ndr_pullpush_test(
149 struct torture_suite
*suite
,
151 ndr_pull_flags_fn_t pull_fn
,
152 ndr_push_flags_fn_t push_fn
,
153 ndr_print_fn_t print_fn
,
154 ndr_print_function_t print_function
,
158 ndr_flags_type ndr_flags
,
160 const char *check_fn_name
,
161 bool (*check_fn
) (struct torture_context
*ctx
, void *data
))
163 struct torture_test
*test
;
164 struct torture_tcase
*tcase
;
165 struct ndr_pull_test_data
*data
;
167 tcase
= torture_suite_add_tcase(suite
, name
);
169 test
= talloc(tcase
, struct torture_test
);
171 test
->name
= talloc_strdup(test
, check_fn_name
);
172 test
->description
= talloc_asprintf(test
, "db:%s",
174 test
->run
= wrap_ndr_pullpush_test
;
176 data
= talloc_zero(test
, struct ndr_pull_test_data
);
178 data
->ndr_flags
= ndr_flags
;
180 data
->struct_size
= struct_size
;
181 data
->pull_fn
= pull_fn
;
182 data
->push_fn
= push_fn
;
183 data
->print_fn
= print_fn
;
184 data
->print_function
= print_function
;
188 test
->dangerous
= false;
190 DLIST_ADD_END(tcase
->tests
, test
);
196 static bool wrap_ndr_inout_pull_test(struct torture_context
*tctx
,
197 struct torture_tcase
*tcase
,
198 struct torture_test
*test
)
200 bool (*check_fn
) (struct torture_context
*ctx
, void *data
) = test
->fn
;
201 const struct ndr_pull_test_data
*data
= (const struct ndr_pull_test_data
*)test
->data
;
202 void *ds
= talloc_zero_size(tctx
, data
->struct_size
);
203 struct ndr_pull
*ndr
;
204 uint32_t highest_ofs
;
207 torture_assert(tctx
, data
, "out of memory");
208 torture_assert(tctx
, ds
, "out of memory");
210 /* handle NDR_IN context */
212 ndr
= ndr_pull_init_blob(&(data
->data_context
), tctx
);
213 torture_assert(tctx
, ndr
, "ndr init failed");
215 ndr
->flags
|= data
->flags
;
216 ndr
->flags
|= LIBNDR_FLAG_REF_ALLOC
;
218 torture_assert_ndr_success(tctx
,
219 data
->pull_fn(ndr
, NDR_IN
, ds
),
220 "ndr pull of context failed");
222 if (ndr
->offset
> ndr
->relative_highest_offset
) {
223 highest_ofs
= ndr
->offset
;
225 highest_ofs
= ndr
->relative_highest_offset
;
228 torture_assert(tctx
, highest_ofs
== ndr
->data_size
,
229 talloc_asprintf(tctx
, "%d unread bytes", ndr
->data_size
- highest_ofs
));
231 torture_ndrdump(tctx
, ndr
, data
, NDR_IN
, ds
, "ds");
237 ndr
= ndr_pull_init_blob(&(data
->data
), tctx
);
238 torture_assert(tctx
, ndr
, "ndr init failed");
240 ndr
->flags
|= data
->flags
;
241 ndr
->flags
|= LIBNDR_FLAG_REF_ALLOC
;
243 torture_assert_ndr_success(tctx
,
244 data
->pull_fn(ndr
, NDR_OUT
, ds
),
247 if (ndr
->offset
> ndr
->relative_highest_offset
) {
248 highest_ofs
= ndr
->offset
;
250 highest_ofs
= ndr
->relative_highest_offset
;
253 torture_assert(tctx
, highest_ofs
== ndr
->data_size
,
254 talloc_asprintf(tctx
, "%d unread bytes", ndr
->data_size
- highest_ofs
));
257 ret
= check_fn(tctx
, ds
);
262 torture_ndrdump(tctx
, ndr
, data
, NDR_OUT
, ds
, "ds");
269 _PUBLIC_
struct torture_test
*_torture_suite_add_ndr_pull_inout_test(
270 struct torture_suite
*suite
,
272 ndr_pull_flags_fn_t pull_fn
,
273 ndr_print_function_t print_function
,
274 const char *db_in_name
,
276 const char *db_out_name
,
280 const char *check_fn_name
,
281 bool (*check_fn
) (struct torture_context
*ctx
, void *data
))
283 struct torture_test
*test
;
284 struct torture_tcase
*tcase
;
285 struct ndr_pull_test_data
*data
;
287 tcase
= torture_suite_add_tcase(suite
, name
);
289 test
= talloc(tcase
, struct torture_test
);
291 test
->name
= talloc_strdup(test
, check_fn_name
);
292 test
->description
= talloc_asprintf(test
, "db_in:%s db_out:%s",
295 test
->run
= wrap_ndr_inout_pull_test
;
296 data
= talloc_zero(test
, struct ndr_pull_test_data
);
298 data
->data_context
= db_in
;
301 data
->struct_size
= struct_size
;
302 data
->pull_fn
= pull_fn
;
303 data
->print_function
= print_function
;
306 test
->dangerous
= false;
308 DLIST_ADD_END(tcase
->tests
, test
);
313 static bool wrap_ndr_pull_invalid_data_test(struct torture_context
*tctx
,
314 struct torture_tcase
*tcase
,
315 struct torture_test
*test
)
317 const struct ndr_pull_test_data
*data
= (const struct ndr_pull_test_data
*)test
->data
;
318 struct ndr_pull
*ndr
= ndr_pull_init_blob(&(data
->data
), tctx
);
319 void *ds
= talloc_zero_size(ndr
, data
->struct_size
);
322 torture_assert(tctx
, data
, "out of memory");
323 torture_assert(tctx
, ndr
, "out of memory");
324 torture_assert(tctx
, ds
, "out of memory");
326 ndr
->flags
|= data
->flags
;
328 ndr
->flags
|= LIBNDR_FLAG_REF_ALLOC
;
330 torture_assert_ndr_err_equal(
332 data
->pull_fn(ndr
, data
->ndr_flags
, ds
),
334 "pulling invalid data");
340 _PUBLIC_
struct torture_test
*_torture_suite_add_ndr_pull_invalid_data_test(
341 struct torture_suite
*suite
,
343 ndr_pull_flags_fn_t pull_fn
,
347 ndr_flags_type ndr_flags
,
349 enum ndr_err_code ndr_err
)
351 struct torture_test
*test
;
352 struct torture_tcase
*tcase
;
353 struct ndr_pull_test_data
*data
;
355 tcase
= torture_suite_add_tcase(suite
, name
);
357 test
= talloc(tcase
, struct torture_test
);
359 test
->name
= talloc_strdup(test
, db_name
);
360 test
->description
= NULL
;
361 test
->run
= wrap_ndr_pull_invalid_data_test
;
363 data
= talloc_zero(test
, struct ndr_pull_test_data
);
365 data
->ndr_flags
= ndr_flags
;
367 data
->struct_size
= struct_size
;
368 data
->pull_fn
= pull_fn
;
369 data
->ndr_err
= ndr_err
;
373 test
->dangerous
= false;
375 DLIST_ADD_END(tcase
->tests
, test
);
380 static bool test_check_string_terminator(struct torture_context
*tctx
)
382 struct ndr_pull
*ndr
;
384 TALLOC_CTX
*mem_ctx
= tctx
;
387 blob
= strhex_to_data_blob(tctx
, "0000");
389 ndr
= ndr_pull_init_blob(&blob
, mem_ctx
);
391 torture_assert_ndr_success(tctx
, ndr_check_string_terminator(ndr
, 1, 2),
392 "simple check_string_terminator test failed");
394 torture_assert(tctx
, ndr
->offset
== 0,
395 "check_string_terminator did not reset offset");
397 if (NDR_ERR_CODE_IS_SUCCESS(ndr_check_string_terminator(ndr
, 1, 3))) {
398 torture_fail(tctx
, "check_string_terminator checked beyond string boundaries");
401 torture_assert(tctx
, ndr
->offset
== 0,
402 "check_string_terminator did not reset offset");
406 blob
= strhex_to_data_blob(tctx
, "11220000");
407 ndr
= ndr_pull_init_blob(&blob
, mem_ctx
);
409 torture_assert_ndr_success(tctx
,
410 ndr_check_string_terminator(ndr
, 4, 1),
411 "check_string_terminator failed to recognize terminator");
413 torture_assert_ndr_success(tctx
,
414 ndr_check_string_terminator(ndr
, 3, 1),
415 "check_string_terminator failed to recognize terminator");
417 if (NDR_ERR_CODE_IS_SUCCESS(ndr_check_string_terminator(ndr
, 2, 1))) {
418 torture_fail(tctx
, "check_string_terminator erroneously reported terminator");
421 torture_assert(tctx
, ndr
->offset
== 0,
422 "check_string_terminator did not reset offset");
426 static bool test_guid_from_string_valid(struct torture_context
*tctx
)
432 static bool test_guid_from_string_null(struct torture_context
*tctx
)
435 torture_assert_ntstatus_equal(tctx
, NT_STATUS_INVALID_PARAMETER
,
436 GUID_from_string(NULL
, &guid
),
441 static bool test_guid_from_string_invalid(struct torture_context
*tctx
)
446 const char *bad_guids
[] = {
450 "00000001-0002-0003-0405-060708090a0b", correct
452 "00000001-0002-0003-0405-060708090a0b1", /* too long */
453 "00000001-0002-0003-0405-060708090a0", /* too short */
454 "00000001-0002-0003-0405--060708090a0", /* negative */
455 "00000001-0002-0003--0405-060708090a0", /* negative */
456 "-0000001-0002-0003-0405-060708090a0b", /* negative */
457 "-0000001-0002-0003-04-5-060708090a0b", /* negative */
458 "d0000001-0002-0003-0405-060708090a-b", /* negative */
459 "00000001- -2-0003-0405-060708090a0b", /* negative, space */
460 "00000001-0002-0003-0405- 060708090a0", /* whitespace */
461 " 0000001-0002-0003--0405-060708090a0", /* whitespace */
462 "00000001-0002-0003--0405-060708090a ", /* whitespace */
463 "0000001-00002-0003-04050-60708090a0b", /* misshapen */
464 "00000010-0002-0003-04050-60708090a0b", /* misshapen */
465 "00000001-0002-0003-0405-0z0708090a0b", /* bad char */
466 "00000001-00x2-0x03-0405-060708090a0b", /* bad char (00x) */
467 "0x000001-0002-0003-0405-060708090a0b", /* 0x char */
468 "00000001-0x02-0x03-0405-060708090a0b", /* 0x char */
471 for (i
= 0; i
< ARRAY_SIZE(bad_guids
); i
++) {
472 NTSTATUS status
= GUID_from_string(bad_guids
[i
], &g1
);
473 if (! NT_STATUS_EQUAL(status
, NT_STATUS_INVALID_PARAMETER
)) {
474 torture_comment(tctx
, "bad guid %s parsed as OK\n",
480 torture_fail(tctx
, "wrongly allowing invalid guids");
485 static bool test_guid_from_string(struct torture_context
*tctx
)
488 /* we are asserting all these guids are valid and equal */
489 const char *guids
[5] = {
490 "00000001-0002-0003-0405-060708090a0b",
491 "{00000001-0002-0003-0405-060708090a0b}",
492 "{00000001-0002-0003-0405-060708090a0B}", /* mixed */
493 "00000001-0002-0003-0405-060708090A0B", /* upper */
494 "01000000020003000405060708090a0b", /* hex string */
498 torture_assert_ntstatus_ok(tctx
,
499 GUID_from_string(guids
[0], &g1
),
500 "invalid return code");
503 exp
.time_hi_and_version
= 3;
504 exp
.clock_seq
[0] = 4;
505 exp
.clock_seq
[1] = 5;
513 for (i
= 1; i
< ARRAY_SIZE(guids
); i
++) {
514 torture_assert_ntstatus_ok(tctx
,
515 GUID_from_string(guids
[i
], &g1
),
516 "invalid return code");
517 torture_assert(tctx
, GUID_equal(&g1
, &exp
),
518 "UUID parsed incorrectly");
523 static bool test_guid_from_data_blob(struct torture_context
*tctx
)
526 const uint8_t bin
[16] = {
527 0x01, 0x00, 0x00, 0x00,
531 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b };
532 const char *hexstr
= "01000000020003000405060708090a0b";
533 const DATA_BLOB blobs
[2] = {
534 data_blob_const(bin
, sizeof(bin
)),
535 data_blob_string_const(hexstr
),
541 exp
.time_hi_and_version
= 3;
542 exp
.clock_seq
[0] = 4;
543 exp
.clock_seq
[1] = 5;
551 for (i
= 1; i
< ARRAY_SIZE(blobs
); i
++) {
552 torture_assert_ntstatus_ok(tctx
,
553 GUID_from_data_blob(&blobs
[i
], &g1
),
554 "invalid return code");
555 torture_assert(tctx
, GUID_equal(&g1
, &exp
),
556 "UUID parsed incorrectly");
562 static bool test_guid_string_valid(struct torture_context
*tctx
)
567 g
.time_hi_and_version
= 3;
576 torture_assert_str_equal(tctx
, "00000001-0002-0003-0405-060708090a0b",
577 GUID_string(tctx
, &g
),
578 "parsing guid failed");
582 static bool test_guid_string2_valid(struct torture_context
*tctx
)
587 g
.time_hi_and_version
= 3;
596 torture_assert_str_equal(tctx
, "{00000001-0002-0003-0405-060708090a0b}",
597 GUID_string2(tctx
, &g
),
598 "parsing guid failed");
602 static bool test_guid_into_blob(struct torture_context
*tctx
)
604 enum ndr_err_code ndr_err
;
605 static const char exp_guid
[16] =
606 { 0x1, 0x0, 0x0, 0x0,
609 0x8, 0x9, 0xa, 0xb };
610 DATA_BLOB exp
= data_blob_const(exp_guid
, 16);
612 { 0x0, 0x0, 0x0, 0x0,
615 0x0, 0x0, 0x0, 0x0 };
616 DATA_BLOB b
= data_blob_const(ndr_guid
, 16);
620 guid
.time_hi_and_version
= 3;
621 guid
.clock_seq
[0] = 4;
622 guid
.clock_seq
[1] = 5;
630 ndr_err
= ndr_push_struct_into_fixed_blob(&b
, &guid
,
631 (ndr_push_flags_fn_t
)ndr_push_GUID
);
632 torture_assert_ndr_err_equal(tctx
, ndr_err
, NDR_ERR_SUCCESS
,
634 torture_assert_data_blob_equal(tctx
, b
, exp
,
635 "GUID packed wrongly");
640 /* Really a test of ndr_push_struct_into_fixed_blob error handling */
641 static bool test_guid_into_long_blob(struct torture_context
*tctx
)
643 enum ndr_err_code ndr_err
;
645 { 0x0, 0x0, 0x0, 0x0,
648 0x0, 0x0, 0x0, 0x0, 0x0 };
649 DATA_BLOB b
= data_blob_const(ndr_guid
, 17);
653 guid
.time_hi_and_version
= 3;
654 guid
.clock_seq
[0] = 4;
655 guid
.clock_seq
[1] = 5;
663 torture_assert(tctx
, b
.data
!= NULL
, "data_blob_talloc failed");
664 ndr_err
= ndr_push_struct_into_fixed_blob(
665 &b
, &guid
, (ndr_push_flags_fn_t
)ndr_push_GUID
);
666 torture_assert_ndr_err_equal(tctx
, ndr_err
, NDR_ERR_BUFSIZE
,
672 static bool test_guid_into_short_blob(struct torture_context
*tctx
)
674 enum ndr_err_code ndr_err
;
676 { 0x0, 0x0, 0x0, 0x0,
680 DATA_BLOB b
= data_blob_const(ndr_guid
, 15);
684 guid
.time_hi_and_version
= 3;
685 guid
.clock_seq
[0] = 4;
686 guid
.clock_seq
[1] = 5;
694 ndr_err
= ndr_push_struct_into_fixed_blob(
695 &b
, &guid
, (ndr_push_flags_fn_t
)ndr_push_GUID
);
696 torture_assert_ndr_err_equal(tctx
, ndr_err
, NDR_ERR_BUFSIZE
,
702 static bool test_compare_uuid(struct torture_context
*tctx
)
705 ZERO_STRUCT(g1
); ZERO_STRUCT(g2
);
706 torture_assert_int_equal(tctx
, 0, GUID_compare(&g1
, &g2
),
709 torture_assert_int_equal(tctx
, 1, GUID_compare(&g1
, &g2
),
710 "GUID diff invalid");
713 torture_assert_int_equal(tctx
, 1, GUID_compare(&g1
, &g2
),
714 "GUID diff invalid");
717 g1
.clock_seq
[1] = 20;
718 torture_assert_int_equal(tctx
, 1, GUID_compare(&g1
, &g2
),
719 "GUID diff invalid");
722 torture_assert_int_equal(tctx
, 1, GUID_compare(&g1
, &g2
),
723 "GUID diff invalid");
727 torture_assert_int_equal(tctx
, -1, GUID_compare(&g1
, &g2
),
728 "GUID diff invalid");
732 static bool test_syntax_id_from_string(struct torture_context
*tctx
)
734 struct ndr_syntax_id s
, exp
;
735 const char *id
= "00000001-0002-0003-0405-060708090a0b/0x12345678";
737 exp
.uuid
.time_low
= 1;
738 exp
.uuid
.time_mid
= 2;
739 exp
.uuid
.time_hi_and_version
= 3;
740 exp
.uuid
.clock_seq
[0] = 4;
741 exp
.uuid
.clock_seq
[1] = 5;
742 exp
.uuid
.node
[0] = 6;
743 exp
.uuid
.node
[1] = 7;
744 exp
.uuid
.node
[2] = 8;
745 exp
.uuid
.node
[3] = 9;
746 exp
.uuid
.node
[4] = 10;
747 exp
.uuid
.node
[5] = 11;
748 exp
.if_version
= 0x12345678;
751 ndr_syntax_id_from_string(id
, &s
),
752 "invalid return code");
753 torture_assert(tctx
, ndr_syntax_id_equal(&s
, &exp
),
754 "NDR syntax id parsed incorrectly");
758 struct torture_suite
*torture_local_ndr(TALLOC_CTX
*mem_ctx
)
760 struct torture_suite
*suite
= torture_suite_create(mem_ctx
, "ndr");
762 torture_suite_add_suite(suite
, ndr_dcerpc_suite(suite
));
763 torture_suite_add_suite(suite
, ndr_winreg_suite(suite
));
764 torture_suite_add_suite(suite
, ndr_atsvc_suite(suite
));
765 torture_suite_add_suite(suite
, ndr_lsa_suite(suite
));
766 torture_suite_add_suite(suite
, ndr_epmap_suite(suite
));
767 torture_suite_add_suite(suite
, ndr_dfs_suite(suite
));
768 torture_suite_add_suite(suite
, ndr_dfsblob_suite(suite
));
769 torture_suite_add_suite(suite
, ndr_netlogon_suite(suite
));
770 torture_suite_add_suite(suite
, ndr_drsuapi_suite(suite
));
771 torture_suite_add_suite(suite
, ndr_spoolss_suite(suite
));
772 torture_suite_add_suite(suite
, ndr_winspool_suite(suite
));
773 torture_suite_add_suite(suite
, ndr_ntprinting_suite(suite
));
774 torture_suite_add_suite(suite
, ndr_samr_suite(suite
));
775 torture_suite_add_suite(suite
, ndr_drsblobs_suite(suite
));
776 torture_suite_add_suite(suite
, ndr_dnsp_suite(suite
));
777 torture_suite_add_suite(suite
, ndr_nbt_suite(suite
));
778 torture_suite_add_suite(suite
, ndr_ntlmssp_suite(suite
));
779 torture_suite_add_suite(suite
, ndr_backupkey_suite(suite
));
780 torture_suite_add_suite(suite
, ndr_witness_suite(suite
));
781 torture_suite_add_suite(suite
, ndr_clusapi_suite(suite
));
782 torture_suite_add_suite(suite
, ndr_negoex_suite(suite
));
783 torture_suite_add_suite(suite
, ndr_string_suite(suite
));
784 torture_suite_add_suite(suite
, ndr_krb5pac_suite(suite
));
785 torture_suite_add_suite(suite
, ndr_cabinet_suite(suite
));
786 torture_suite_add_suite(suite
, ndr_charset_suite(suite
));
787 torture_suite_add_suite(suite
, ndr_svcctl_suite(suite
));
788 torture_suite_add_suite(suite
, ndr_ODJ_suite(suite
));
790 torture_suite_add_simple_test(suite
, "string terminator",
791 test_check_string_terminator
);
793 torture_suite_add_simple_test(suite
, "guid_from_string_null",
794 test_guid_from_string_null
);
796 torture_suite_add_simple_test(suite
, "guid_from_string",
797 test_guid_from_string
);
799 torture_suite_add_simple_test(suite
, "guid_from_data_blob",
800 test_guid_from_data_blob
);
802 torture_suite_add_simple_test(suite
, "guid_from_string_invalid",
803 test_guid_from_string_invalid
);
805 torture_suite_add_simple_test(suite
, "guid_string_valid",
806 test_guid_string_valid
);
808 torture_suite_add_simple_test(suite
, "guid_string2_valid",
809 test_guid_string2_valid
);
811 torture_suite_add_simple_test(suite
, "guid_from_string_valid",
812 test_guid_from_string_valid
);
814 torture_suite_add_simple_test(suite
, "compare_uuid",
817 torture_suite_add_simple_test(suite
, "guid_into_blob",
818 test_guid_into_blob
);
820 torture_suite_add_simple_test(suite
, "guid_into_short_blob",
821 test_guid_into_short_blob
);
823 torture_suite_add_simple_test(suite
, "guid_into_long_blob",
824 test_guid_into_long_blob
);
826 torture_suite_add_simple_test(suite
, "syntax_id_from_string",
827 test_syntax_id_from_string
);