2 * Copyright (c) 2006 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of KTH nor the names of its contributors may be
18 * used to endorse or promote products derived from this software without
19 * specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS ``AS IS'' AND ANY
22 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
28 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
30 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
31 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
33 #include "krb5_locl.h"
36 __RCSID("$Heimdal: test_store.c 20192 2007-02-05 23:21:03Z lha $"
40 test_int8(krb5_context context
, krb5_storage
*sp
)
48 for (i
= 0; i
< sizeof(val
[0])/sizeof(val
); i
++) {
50 ret
= krb5_store_int8(sp
, val
[i
]);
52 krb5_err(context
, 1, ret
, "krb5_store_int8");
53 krb5_storage_seek(sp
, 0, SEEK_SET
);
54 ret
= krb5_ret_int8(sp
, &v
);
56 krb5_err(context
, 1, ret
, "krb5_ret_int8");
58 krb5_errx(context
, 1, "store and ret mismatch");
63 test_int16(krb5_context context
, krb5_storage
*sp
)
68 0, 1, -1, 32768, -32767
71 for (i
= 0; i
< sizeof(val
[0])/sizeof(val
); i
++) {
73 ret
= krb5_store_int16(sp
, val
[i
]);
75 krb5_err(context
, 1, ret
, "krb5_store_int16");
76 krb5_storage_seek(sp
, 0, SEEK_SET
);
77 ret
= krb5_ret_int16(sp
, &v
);
79 krb5_err(context
, 1, ret
, "krb5_ret_int16");
81 krb5_errx(context
, 1, "store and ret mismatch");
86 test_int32(krb5_context context
, krb5_storage
*sp
)
91 0, 1, -1, 2147483647, -2147483646
94 for (i
= 0; i
< sizeof(val
[0])/sizeof(val
); i
++) {
96 ret
= krb5_store_int32(sp
, val
[i
]);
98 krb5_err(context
, 1, ret
, "krb5_store_int32");
99 krb5_storage_seek(sp
, 0, SEEK_SET
);
100 ret
= krb5_ret_int32(sp
, &v
);
102 krb5_err(context
, 1, ret
, "krb5_ret_int32");
104 krb5_errx(context
, 1, "store and ret mismatch");
109 test_uint8(krb5_context context
, krb5_storage
*sp
)
117 for (i
= 0; i
< sizeof(val
[0])/sizeof(val
); i
++) {
119 ret
= krb5_store_uint8(sp
, val
[i
]);
121 krb5_err(context
, 1, ret
, "krb5_store_uint8");
122 krb5_storage_seek(sp
, 0, SEEK_SET
);
123 ret
= krb5_ret_uint8(sp
, &v
);
125 krb5_err(context
, 1, ret
, "krb5_ret_uint8");
127 krb5_errx(context
, 1, "store and ret mismatch");
132 test_uint16(krb5_context context
, krb5_storage
*sp
)
140 for (i
= 0; i
< sizeof(val
[0])/sizeof(val
); i
++) {
142 ret
= krb5_store_uint16(sp
, val
[i
]);
144 krb5_err(context
, 1, ret
, "krb5_store_uint16");
145 krb5_storage_seek(sp
, 0, SEEK_SET
);
146 ret
= krb5_ret_uint16(sp
, &v
);
148 krb5_err(context
, 1, ret
, "krb5_ret_uint16");
150 krb5_errx(context
, 1, "store and ret mismatch");
155 test_uint32(krb5_context context
, krb5_storage
*sp
)
163 for (i
= 0; i
< sizeof(val
[0])/sizeof(val
); i
++) {
165 ret
= krb5_store_uint32(sp
, val
[i
]);
167 krb5_err(context
, 1, ret
, "krb5_store_uint32");
168 krb5_storage_seek(sp
, 0, SEEK_SET
);
169 ret
= krb5_ret_uint32(sp
, &v
);
171 krb5_err(context
, 1, ret
, "krb5_ret_uint32");
173 krb5_errx(context
, 1, "store and ret mismatch");
179 test_storage(krb5_context context
)
183 sp
= krb5_storage_emem();
185 krb5_errx(context
, 1, "krb5_storage_emem: no mem");
187 test_int8(context
, sp
);
188 test_int16(context
, sp
);
189 test_int32(context
, sp
);
190 test_uint8(context
, sp
);
191 test_uint16(context
, sp
);
192 test_uint32(context
, sp
);
194 krb5_storage_free(sp
);
201 static int version_flag
= 0;
202 static int help_flag
= 0;
204 static struct getargs args
[] = {
205 {"version", 0, arg_flag
, &version_flag
,
206 "print version", NULL
},
207 {"help", 0, arg_flag
, &help_flag
,
214 arg_printusage (args
,
215 sizeof(args
)/sizeof(*args
),
222 main(int argc
, char **argv
)
224 krb5_context context
;
228 setprogname(argv
[0]);
230 if(getarg(args
, sizeof(args
) / sizeof(args
[0]), argc
, argv
, &optidx
))
244 ret
= krb5_init_context (&context
);
246 errx (1, "krb5_init_context failed: %d", ret
);
248 test_storage(context
);
250 krb5_free_context(context
);