2 Unix SMB/CIFS implementation.
3 test suite for basic tdr functions
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/torture.h"
23 #include "lib/tdr/tdr.h"
24 #include "param/param.h"
26 static bool test_push_uint8(struct torture_context
*tctx
)
29 struct tdr_push
*tdr
= tdr_push_init(tctx
, lp_iconv_convenience(tctx
->lp_ctx
));
31 torture_assert_ntstatus_ok(tctx
, tdr_push_uint8(tdr
, &v
), "push failed");
32 torture_assert_int_equal(tctx
, tdr
->data
.length
, 1, "length incorrect");
33 torture_assert_int_equal(tctx
, tdr
->data
.data
[0], 4, "data incorrect");
37 static bool test_pull_uint8(struct torture_context
*tctx
)
41 struct tdr_pull
*tdr
= tdr_pull_init(tctx
, lp_iconv_convenience(tctx
->lp_ctx
));
46 torture_assert_ntstatus_ok(tctx
, tdr_pull_uint8(tdr
, tctx
, &l
),
48 torture_assert_int_equal(tctx
, 1, tdr
->offset
,
53 static bool test_push_uint16(struct torture_context
*tctx
)
56 struct tdr_push
*tdr
= tdr_push_init(tctx
, lp_iconv_convenience(tctx
->lp_ctx
));
58 torture_assert_ntstatus_ok(tctx
, tdr_push_uint16(tdr
, &v
), "push failed");
59 torture_assert_int_equal(tctx
, tdr
->data
.length
, 2, "length incorrect");
60 torture_assert_int_equal(tctx
, tdr
->data
.data
[0], 0x32, "data incorrect");
61 torture_assert_int_equal(tctx
, tdr
->data
.data
[1], 0x0F, "data incorrect");
65 static bool test_pull_uint16(struct torture_context
*tctx
)
67 uint8_t d
[2] = { 782 & 0xFF, (782 & 0xFF00) / 0x100 };
69 struct tdr_pull
*tdr
= tdr_pull_init(tctx
, lp_iconv_convenience(tctx
->lp_ctx
));
74 torture_assert_ntstatus_ok(tctx
, tdr_pull_uint16(tdr
, tctx
, &l
),
76 torture_assert_int_equal(tctx
, 2, tdr
->offset
, "offset invalid");
77 torture_assert_int_equal(tctx
, 782, l
, "right int read");
81 static bool test_push_uint32(struct torture_context
*tctx
)
83 uint32_t v
= 0x100F32;
84 struct tdr_push
*tdr
= tdr_push_init(tctx
, lp_iconv_convenience(tctx
->lp_ctx
));
86 torture_assert_ntstatus_ok(tctx
, tdr_push_uint32(tdr
, &v
), "push failed");
87 torture_assert_int_equal(tctx
, tdr
->data
.length
, 4, "length incorrect");
88 torture_assert_int_equal(tctx
, tdr
->data
.data
[0], 0x32, "data incorrect");
89 torture_assert_int_equal(tctx
, tdr
->data
.data
[1], 0x0F, "data incorrect");
90 torture_assert_int_equal(tctx
, tdr
->data
.data
[2], 0x10, "data incorrect");
91 torture_assert_int_equal(tctx
, tdr
->data
.data
[3], 0x00, "data incorrect");
95 static bool test_pull_uint32(struct torture_context
*tctx
)
97 uint8_t d
[4] = { 782 & 0xFF, (782 & 0xFF00) / 0x100, 0, 0 };
99 struct tdr_pull
*tdr
= tdr_pull_init(tctx
, lp_iconv_convenience(tctx
->lp_ctx
));
101 tdr
->data
.length
= 4;
104 torture_assert_ntstatus_ok(tctx
, tdr_pull_uint32(tdr
, tctx
, &l
),
106 torture_assert_int_equal(tctx
, 4, tdr
->offset
, "offset invalid");
107 torture_assert_int_equal(tctx
, 782, l
, "right int read");
111 static bool test_pull_charset(struct torture_context
*tctx
)
113 struct tdr_pull
*tdr
= tdr_pull_init(tctx
, lp_iconv_convenience(tctx
->lp_ctx
));
114 const char *l
= NULL
;
115 tdr
->data
.data
= (uint8_t *)talloc_strdup(tctx
, "bla");
116 tdr
->data
.length
= 4;
119 torture_assert_ntstatus_ok(tctx
, tdr_pull_charset(tdr
, tctx
, &l
, -1, 1, CH_DOS
),
121 torture_assert_int_equal(tctx
, 4, tdr
->offset
, "offset invalid");
122 torture_assert_str_equal(tctx
, "bla", l
, "right int read");
125 torture_assert_ntstatus_ok(tctx
, tdr_pull_charset(tdr
, tctx
, &l
, 2, 1, CH_UNIX
),
127 torture_assert_int_equal(tctx
, 2, tdr
->offset
, "offset invalid");
128 torture_assert_str_equal(tctx
, "bl", l
, "right int read");
133 static bool test_pull_charset_empty(struct torture_context
*tctx
)
135 struct tdr_pull
*tdr
= tdr_pull_init(tctx
, lp_iconv_convenience(tctx
->lp_ctx
));
136 const char *l
= NULL
;
137 tdr
->data
.data
= (uint8_t *)talloc_strdup(tctx
, "bla");
138 tdr
->data
.length
= 4;
141 torture_assert_ntstatus_ok(tctx
, tdr_pull_charset(tdr
, tctx
, &l
, 0, 1, CH_DOS
),
143 torture_assert_int_equal(tctx
, 0, tdr
->offset
, "offset invalid");
144 torture_assert_str_equal(tctx
, "", l
, "right string read");
151 static bool test_push_charset(struct torture_context
*tctx
)
153 const char *l
= "bloe";
154 struct tdr_push
*tdr
= tdr_push_init(tctx
, lp_iconv_convenience(tctx
->lp_ctx
));
155 torture_assert_ntstatus_ok(tctx
, tdr_push_charset(tdr
, &l
, 4, 1, CH_UTF8
),
157 torture_assert_int_equal(tctx
, 4, tdr
->data
.length
, "offset invalid");
158 torture_assert(tctx
, strcmp("bloe", (const char *)tdr
->data
.data
) == 0, "right string push");
160 torture_assert_ntstatus_ok(tctx
, tdr_push_charset(tdr
, &l
, -1, 1, CH_UTF8
),
162 torture_assert_int_equal(tctx
, 9, tdr
->data
.length
, "offset invalid");
163 torture_assert_str_equal(tctx
, "bloe", (const char *)tdr
->data
.data
+4, "right string read");
168 struct torture_suite
*torture_local_tdr(TALLOC_CTX
*mem_ctx
)
170 struct torture_suite
*suite
= torture_suite_create(mem_ctx
, "TDR");
172 torture_suite_add_simple_test(suite
, "pull_uint8", test_pull_uint8
);
173 torture_suite_add_simple_test(suite
, "push_uint8", test_push_uint8
);
175 torture_suite_add_simple_test(suite
, "pull_uint16", test_pull_uint16
);
176 torture_suite_add_simple_test(suite
, "push_uint16", test_push_uint16
);
178 torture_suite_add_simple_test(suite
, "pull_uint32", test_pull_uint32
);
179 torture_suite_add_simple_test(suite
, "push_uint32", test_push_uint32
);
181 torture_suite_add_simple_test(suite
, "pull_charset", test_pull_charset
);
182 torture_suite_add_simple_test(suite
, "pull_charset", test_pull_charset_empty
);
183 torture_suite_add_simple_test(suite
, "push_charset", test_push_charset
);