2 Unix SMB/CIFS implementation.
6 Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008
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, see <http://www.gnu.org/licenses/>.
23 #include "torture/torture.h"
25 static bool test_string(struct torture_context
*tctx
)
27 DATA_BLOB blob
= data_blob_string_const("bla");
29 torture_assert_int_equal(tctx
, blob
.length
, 3, "blob length");
30 torture_assert_str_equal(tctx
, (char *)blob
.data
, "bla", "blob data");
35 static bool test_string_null(struct torture_context
*tctx
)
37 DATA_BLOB blob
= data_blob_string_const_null("bla");
39 torture_assert_int_equal(tctx
, blob
.length
, 4, "blob length");
40 torture_assert_str_equal(tctx
, (char *)blob
.data
, "bla", "blob data");
45 static bool test_zero(struct torture_context
*tctx
)
48 DATA_BLOB z
= data_blob_talloc_zero(tctx
, 4);
49 torture_assert_int_equal(tctx
, z
.length
, 4, "length");
50 for (i
= 0; i
< z
.length
; i
++)
51 torture_assert_int_equal(tctx
, z
.data
[i
], 0, "contents");
57 static bool test_clear(struct torture_context
*tctx
)
60 DATA_BLOB z
= data_blob("lalala", 6);
61 torture_assert_int_equal(tctx
, z
.length
, 6, "length");
63 for (i
= 0; i
< z
.length
; i
++)
64 torture_assert_int_equal(tctx
, z
.data
[i
], 0, "contents");
69 static bool test_cmp(struct torture_context
*tctx
)
71 DATA_BLOB a
= data_blob_string_const("bla");
72 DATA_BLOB b
= data_blob_string_const("blae");
73 torture_assert(tctx
, data_blob_cmp(&a
, &b
) != 0, "cmp different");
74 torture_assert(tctx
, data_blob_cmp(&a
, &a
) == 0, "cmp self");
78 static bool test_hex_string(struct torture_context
*tctx
)
80 DATA_BLOB a
= data_blob_string_const("\xC\xA\xF\xE");
81 torture_assert_str_equal(tctx
, data_blob_hex_string(tctx
, &a
), "0C0A0F0E", "hex string");
85 struct torture_suite
*torture_local_util_data_blob(TALLOC_CTX
*mem_ctx
)
87 struct torture_suite
*suite
= torture_suite_create(mem_ctx
, "DATABLOB");
89 torture_suite_add_simple_test(suite
, "string", test_string
);
90 torture_suite_add_simple_test(suite
, "string_null", test_string_null
);
91 torture_suite_add_simple_test(suite
, "zero", test_zero
);;
92 torture_suite_add_simple_test(suite
, "clear", test_clear
);
93 torture_suite_add_simple_test(suite
, "cmp", test_cmp
);
94 torture_suite_add_simple_test(suite
, "hex string", test_hex_string
);