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"
27 struct ndr_pull_test_data
{
30 ndr_pull_flags_fn_t pull_fn
;
34 static bool wrap_ndr_pull_test(struct torture_context
*tctx
,
35 struct torture_tcase
*tcase
,
36 struct torture_test
*test
)
38 bool (*check_fn
) (struct torture_context
*ctx
, void *data
) = test
->fn
;
39 const struct ndr_pull_test_data
*data
= (const struct ndr_pull_test_data
*)test
->data
;
40 void *ds
= talloc_zero_size(tctx
, data
->struct_size
);
41 struct ndr_pull
*ndr
= ndr_pull_init_blob(&(data
->data
), tctx
);
43 ndr
->flags
|= LIBNDR_FLAG_REF_ALLOC
;
45 torture_assert_ndr_success(tctx
, data
->pull_fn(ndr
, data
->ndr_flags
, ds
),
48 torture_assert(tctx
, ndr
->offset
== ndr
->data_size
,
50 "%d unread bytes", ndr
->data_size
- ndr
->offset
));
53 return check_fn(tctx
, ds
);
58 _PUBLIC_
struct torture_test
*_torture_suite_add_ndr_pull_test(
59 struct torture_suite
*suite
,
60 const char *name
, ndr_pull_flags_fn_t pull_fn
,
64 bool (*check_fn
) (struct torture_context
*ctx
, void *data
))
66 struct torture_test
*test
;
67 struct torture_tcase
*tcase
;
68 struct ndr_pull_test_data
*data
;
70 tcase
= torture_suite_add_tcase(suite
, name
);
72 test
= talloc(tcase
, struct torture_test
);
74 test
->name
= talloc_strdup(test
, name
);
75 test
->description
= NULL
;
76 test
->run
= wrap_ndr_pull_test
;
77 data
= talloc(test
, struct ndr_pull_test_data
);
79 data
->ndr_flags
= ndr_flags
;
80 data
->struct_size
= struct_size
;
81 data
->pull_fn
= pull_fn
;
84 test
->dangerous
= false;
86 DLIST_ADD_END(tcase
->tests
, test
, struct torture_test
*);
91 static bool test_check_string_terminator(struct torture_context
*tctx
)
95 TALLOC_CTX
*mem_ctx
= tctx
;
98 blob
= strhex_to_data_blob(tctx
, "0000");
100 ndr
= ndr_pull_init_blob(&blob
, mem_ctx
);
102 torture_assert_ndr_success(tctx
, ndr_check_string_terminator(ndr
, 1, 2),
103 "simple check_string_terminator test failed");
105 torture_assert(tctx
, ndr
->offset
== 0,
106 "check_string_terminator did not reset offset");
108 if (NDR_ERR_CODE_IS_SUCCESS(ndr_check_string_terminator(ndr
, 1, 3))) {
109 torture_fail(tctx
, "check_string_terminator checked beyond string boundaries");
112 torture_assert(tctx
, ndr
->offset
== 0,
113 "check_string_terminator did not reset offset");
117 blob
= strhex_to_data_blob(tctx
, "11220000");
118 ndr
= ndr_pull_init_blob(&blob
, mem_ctx
);
120 torture_assert_ndr_success(tctx
,
121 ndr_check_string_terminator(ndr
, 4, 1),
122 "check_string_terminator failed to recognize terminator");
124 torture_assert_ndr_success(tctx
,
125 ndr_check_string_terminator(ndr
, 3, 1),
126 "check_string_terminator failed to recognize terminator");
128 if (NDR_ERR_CODE_IS_SUCCESS(ndr_check_string_terminator(ndr
, 2, 1))) {
129 torture_fail(tctx
, "check_string_terminator erroneously reported terminator");
132 torture_assert(tctx
, ndr
->offset
== 0,
133 "check_string_terminator did not reset offset");
137 static bool test_guid_from_string_valid(struct torture_context
*tctx
)
143 static bool test_guid_from_string_null(struct torture_context
*tctx
)
146 torture_assert_ntstatus_equal(tctx
, NT_STATUS_INVALID_PARAMETER
,
147 GUID_from_string(NULL
, &guid
),
152 static bool test_guid_from_string_invalid(struct torture_context
*tctx
)
155 torture_assert_ntstatus_equal(tctx
, NT_STATUS_INVALID_PARAMETER
,
156 GUID_from_string("bla", &g1
),
157 "parameter not invalid");
161 static bool test_guid_from_string(struct torture_context
*tctx
)
164 torture_assert_ntstatus_ok(tctx
,
165 GUID_from_string("00000001-0002-0003-0405-060708090a0b", &g1
),
166 "invalid return code");
169 exp
.time_hi_and_version
= 3;
170 exp
.clock_seq
[0] = 4;
171 exp
.clock_seq
[1] = 5;
178 torture_assert(tctx
, GUID_equal(&g1
, &exp
), "UUID parsed incorrectly");
179 torture_assert_ntstatus_ok(tctx
,
180 GUID_from_string("{00000001-0002-0003-0405-060708090a0b}", &g1
),
181 "invalid return code");
182 torture_assert(tctx
, GUID_equal(&g1
, &exp
), "UUID parsed incorrectly");
187 static bool test_guid_string_valid(struct torture_context
*tctx
)
192 g
.time_hi_and_version
= 3;
201 torture_assert_str_equal(tctx
, "00000001-0002-0003-0405-060708090a0b", GUID_string(tctx
, &g
),
202 "parsing guid failed");
206 static bool test_guid_string2_valid(struct torture_context
*tctx
)
211 g
.time_hi_and_version
= 3;
220 torture_assert_str_equal(tctx
, "{00000001-0002-0003-0405-060708090a0b}", GUID_string2(tctx
, &g
),
221 "parsing guid failed");
225 static bool test_compare_uuid(struct torture_context
*tctx
)
228 ZERO_STRUCT(g1
); ZERO_STRUCT(g2
);
229 torture_assert_int_equal(tctx
, 0, GUID_compare(&g1
, &g2
),
232 torture_assert_int_equal(tctx
, 1, GUID_compare(&g1
, &g2
),
233 "GUID diff invalid");
236 torture_assert_int_equal(tctx
, 1, GUID_compare(&g1
, &g2
),
237 "GUID diff invalid");
240 g1
.clock_seq
[1] = 20;
241 torture_assert_int_equal(tctx
, 1, GUID_compare(&g1
, &g2
),
242 "GUID diff invalid");
245 torture_assert_int_equal(tctx
, 1, GUID_compare(&g1
, &g2
),
246 "GUID diff invalid");
250 torture_assert_int_equal(tctx
, -1, GUID_compare(&g1
, &g2
),
251 "GUID diff invalid");
255 struct torture_suite
*torture_local_ndr(TALLOC_CTX
*mem_ctx
)
257 struct torture_suite
*suite
= torture_suite_create(mem_ctx
, "NDR");
259 torture_suite_add_suite(suite
, ndr_winreg_suite(suite
));
260 torture_suite_add_suite(suite
, ndr_atsvc_suite(suite
));
261 torture_suite_add_suite(suite
, ndr_lsa_suite(suite
));
262 torture_suite_add_suite(suite
, ndr_epmap_suite(suite
));
263 torture_suite_add_suite(suite
, ndr_dfs_suite(suite
));
264 torture_suite_add_suite(suite
, ndr_dfsblob_suite(suite
));
265 torture_suite_add_suite(suite
, ndr_netlogon_suite(suite
));
266 torture_suite_add_suite(suite
, ndr_drsuapi_suite(suite
));
267 torture_suite_add_suite(suite
, ndr_spoolss_suite(suite
));
268 torture_suite_add_suite(suite
, ndr_samr_suite(suite
));
269 torture_suite_add_suite(suite
, ndr_drsblobs_suite(suite
));
271 torture_suite_add_simple_test(suite
, "string terminator",
272 test_check_string_terminator
);
274 torture_suite_add_simple_test(suite
, "guid_from_string_null",
275 test_guid_from_string_null
);
277 torture_suite_add_simple_test(suite
, "guid_from_string",
278 test_guid_from_string
);
280 torture_suite_add_simple_test(suite
, "guid_from_string_invalid",
281 test_guid_from_string_invalid
);
283 torture_suite_add_simple_test(suite
, "guid_string_valid",
284 test_guid_string_valid
);
286 torture_suite_add_simple_test(suite
, "guid_string2_valid",
287 test_guid_string2_valid
);
289 torture_suite_add_simple_test(suite
, "guid_from_string_valid",
290 test_guid_from_string_valid
);
292 torture_suite_add_simple_test(suite
, "compare_uuid",