2 * Copyright (c) 2002 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 enum { MAX_COMPONENTS
= 3 };
38 static struct testcase
{
39 const char *input_string
;
40 const char *output_string
;
43 char *comp_val
[MAX_COMPONENTS
];
46 {"", "@", "", 1, {""}, FALSE
},
47 {"a", "a@", "", 1, {"a"}, FALSE
},
48 {"\\n", "\\n@", "", 1, {"\n"}, FALSE
},
49 {"\\ ", "\\ @", "", 1, {" "}, FALSE
},
50 {"\\t", "\\t@", "", 1, {"\t"}, FALSE
},
51 {"\\b", "\\b@", "", 1, {"\b"}, FALSE
},
52 {"\\\\", "\\\\@", "", 1, {"\\"}, FALSE
},
53 {"\\/", "\\/@", "", 1, {"/"}, FALSE
},
54 {"\\@", "\\@@", "", 1, {"@"}, FALSE
},
55 {"@", "@", "", 1, {""}, TRUE
},
56 {"a/b", "a/b@", "", 2, {"a", "b"}, FALSE
},
57 {"a/", "a/@", "", 2, {"a", ""}, FALSE
},
58 {"a\\//\\/", "a\\//\\/@", "", 2, {"a/", "/"}, FALSE
},
59 {"/a", "/a@", "", 2, {"", "a"}, FALSE
},
60 {"\\@@\\@", "\\@@\\@", "@", 1, {"@"}, TRUE
},
61 {"a/b/c", "a/b/c@", "", 3, {"a", "b", "c"}, FALSE
},
62 {NULL
, NULL
, "", 0, { NULL
}, FALSE
}};
65 main(int argc
, char **argv
)
72 ret
= krb5_init_context (&context
);
74 errx (1, "krb5_init_context failed: %d", ret
);
76 /* to enable realm-less principal name above */
78 krb5_set_default_realm(context
, "");
80 for (t
= tests
; t
->input_string
; ++t
) {
86 ret
= krb5_parse_name(context
, t
->input_string
, &princ
);
88 krb5_err (context
, 1, ret
, "krb5_parse_name %s",
90 if (strcmp (t
->realm
, princ
->realm
) != 0) {
91 printf ("wrong realm (\"%s\" should be \"%s\")"
93 princ
->realm
, t
->realm
,
98 if (t
->ncomponents
!= princ
->name
.name_string
.len
) {
99 printf ("wrong number of components (%u should be %u)"
101 princ
->name
.name_string
.len
, t
->ncomponents
,
105 for (i
= 0; i
< t
->ncomponents
; ++i
) {
106 if (strcmp(t
->comp_val
[i
],
107 princ
->name
.name_string
.val
[i
]) != 0) {
108 printf ("bad component %d (\"%s\" should be \"%s\")"
111 princ
->name
.name_string
.val
[i
],
118 for (j
= 0; j
< strlen(t
->output_string
); ++j
) {
119 ret
= krb5_unparse_name_fixed(context
, princ
,
122 printf ("unparse_name %s with length %d should have failed\n",
128 ret
= krb5_unparse_name_fixed(context
, princ
,
129 name_buf
, sizeof(name_buf
));
131 krb5_err (context
, 1, ret
, "krb5_unparse_name_fixed");
133 if (strcmp (t
->output_string
, name_buf
) != 0) {
134 printf ("failed comparing the re-parsed"
135 " (\"%s\" should be \"%s\")\n",
136 name_buf
, t
->output_string
);
140 ret
= krb5_unparse_name(context
, princ
, &s
);
142 krb5_err (context
, 1, ret
, "krb5_unparse_name");
144 if (strcmp (t
->output_string
, s
) != 0) {
145 printf ("failed comparing the re-parsed"
146 " (\"%s\" should be \"%s\"\n",
147 s
, t
->output_string
);
153 for (j
= 0; j
< strlen(t
->input_string
); ++j
) {
154 ret
= krb5_unparse_name_fixed_short(context
, princ
,
157 printf ("unparse_name_short %s with length %d"
158 " should have failed\n",
164 ret
= krb5_unparse_name_fixed_short(context
, princ
,
165 name_buf
, sizeof(name_buf
));
167 krb5_err (context
, 1, ret
, "krb5_unparse_name_fixed");
169 if (strcmp (t
->input_string
, name_buf
) != 0) {
170 printf ("failed comparing the re-parsed"
171 " (\"%s\" should be \"%s\")\n",
172 name_buf
, t
->input_string
);
176 ret
= krb5_unparse_name_short(context
, princ
, &s
);
178 krb5_err (context
, 1, ret
, "krb5_unparse_name_short");
180 if (strcmp (t
->input_string
, s
) != 0) {
181 printf ("failed comparing the re-parsed"
182 " (\"%s\" should be \"%s\"\n",
188 krb5_free_principal (context
, princ
);
190 krb5_free_context(context
);