1 /* tst_stringprep.c libstringprep self tests for stringprep_stringprep()
2 * Copyright (C) 2002 Simon Josefsson
4 * This file is part of libstringprep.
6 * Libstringprep is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * Libstringprep is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with libstringprep; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 static int error_count
= 0;
26 static int break_on_error
= 0;
29 fail (const char *format
, ...)
33 va_start (arg_ptr
, format
);
34 vfprintf (stderr
, format
, arg_ptr
);
42 escapeprint (char *str
, int len
)
47 for (i
= 0; i
< len
; i
++)
49 if (((str
[i
] & 0xFF) >= 'A' && (str
[i
] & 0xFF) <= 'Z') ||
50 ((str
[i
] & 0xFF) >= 'a' && (str
[i
] & 0xFF) <= 'z') ||
51 ((str
[i
] & 0xFF) >= '0' && (str
[i
] & 0xFF) <= '9')
52 || (str
[i
] & 0xFF) == '.')
53 printf ("%c", (str
[i
] & 0xFF));
55 printf ("\\x%02x", (str
[i
] & 0xFF));
57 printf ("' (length %d bytes)\n", len
);
61 hexprint (char *str
, int len
)
66 for (i
= 0; i
< len
; i
++)
68 printf ("%02x ", (str
[i
] & 0xFF));
71 if ((i
+ 1) % 16 == 0 && i
+ 1 < len
)
77 binprint (char *str
, int len
)
82 for (i
= 0; i
< len
; i
++)
84 printf ("%d%d%d%d%d%d%d%d ",
85 (str
[i
] & 0xFF) & 0x80 ? 1 : 0,
86 (str
[i
] & 0xFF) & 0x40 ? 1 : 0,
87 (str
[i
] & 0xFF) & 0x20 ? 1 : 0,
88 (str
[i
] & 0xFF) & 0x10 ? 1 : 0,
89 (str
[i
] & 0xFF) & 0x08 ? 1 : 0,
90 (str
[i
] & 0xFF) & 0x04 ? 1 : 0,
91 (str
[i
] & 0xFF) & 0x02 ? 1 : 0, (str
[i
] & 0xFF) & 0x01 ? 1 : 0);
94 if ((i
+ 1) % 6 == 0 && i
+ 1 < len
)
104 Stringprep_profile
*profile
;
109 /* map to nothing U+00AD */
111 "foo\xC2\xAD" "bar", 0, "foobar", stringprep_generic
}
113 /* map case_nfkc + normalization: */
115 "\xC2\xB5", 0, "\xCE\xBC", stringprep_generic
}
119 "\xC2\xB5", STRINGPREP_NO_NFKC
, "\xCE\xBC", stringprep_generic
}
122 "\xC2\xAA", 0, "\x61", stringprep_generic
}
124 /* nameprep, exposed a bug in libstringprep 0.0.5 */
126 "\xC2\xAA\x0A", 0, "\x61\x0A", stringprep_nameprep
}
128 /* unassigned code point U+0221: */
130 "\xC8\xA1", 0, "\xC8\xA1", stringprep_generic
}
132 /* unassigned code point U+0221: */
134 "\xC8\xA1", STRINGPREP_NO_UNASSIGNED
, NULL
, stringprep_generic
,
135 STRINGPREP_CONTAINS_UNASSIGNED
}
137 /* unassigned code point U+0236: */
139 "\xC8\xB6", 0, "\xC8\xB6", stringprep_generic
}
141 /* unassigned code point U+0236: */
143 "\xC8\xB6", STRINGPREP_NO_UNASSIGNED
, NULL
, stringprep_generic
,
144 STRINGPREP_CONTAINS_UNASSIGNED
}
146 /* prohibited ASCII character U+0020: */
148 "\x20", 0, NULL
, stringprep_generic
, STRINGPREP_CONTAINS_PROHIBITED
}
150 /* prohibited character U+00A0: */
152 "\xC2\xA0", 0, NULL
, stringprep_generic
, STRINGPREP_CONTAINS_PROHIBITED
}
154 /* prohibited non-character U+10FFFE: */
156 "\xF4\x8F\xBF\xBE", 0, NULL
, stringprep_generic
,
157 STRINGPREP_CONTAINS_PROHIBITED
}
159 /* prohibited surrogate character U+D801: */
161 "\xED\xA0\x81", 0, NULL
, stringprep_generic
,
162 STRINGPREP_CONTAINS_PROHIBITED
}
164 /* bidi RandALCat without trailing RandALCat <U+0627><U+0031>: */
166 "\xD8\xA7\x31", 0, NULL
, stringprep_generic
,
167 STRINGPREP_BIDI_LEADTRAIL_NOT_RAL
}
169 /* bidi RandALCat correct <U+0627><U+0031><U+0628>: */
171 "\xD8\xA7\x31\xD8\xA8", 0, "\xD8\xA7\x31\xD8\xA8", stringprep_generic
}
173 /* bidi both RandALCat and LCat <U+0627><U+00AA><U+0628>: */
175 "\xD8\xA7\xC2\xAA\xD8\xA8", 0, NULL
, stringprep_generic
,
176 STRINGPREP_BIDI_BOTH_L_AND_RAL
}
178 /* case mapping (this triggered a bug in 0.0.5) */
180 "CAFE", 0, "cafe", stringprep_generic
}
184 main (int argc
, char *argv
[])
189 if (!stringprep_check_version (STRINGPREP_VERSION
))
190 fail ("stringprep_check_version() failed\n");
193 if (strcmp (argv
[argc
- 1], "-v") == 0 ||
194 strcmp (argv
[argc
- 1], "--verbose") == 0)
196 else if (strcmp (argv
[argc
- 1], "-b") == 0 ||
197 strcmp (argv
[argc
- 1], "--break-on-error") == 0)
199 else if (strcmp (argv
[argc
- 1], "-h") == 0 ||
200 strcmp (argv
[argc
- 1], "-?") == 0 ||
201 strcmp (argv
[argc
- 1], "--help") == 0)
203 printf ("Usage: %s [-vbh?] [--verbose] [--break-on-error] [--help]\n",
211 fail ("malloc() returned NULL\n");
213 for (i
= 0; i
< sizeof (strprep
) / sizeof (strprep
[0]); i
++)
216 printf ("STRINGPREP entry %d\n", i
);
218 strcpy (p
, strprep
[i
].in
);
222 printf ("flags: %d\n", strprep
[i
].flags
);
225 escapeprint (strprep
[i
].in
, strlen (strprep
[i
].in
));
226 hexprint (strprep
[i
].in
, strlen (strprep
[i
].in
));
228 binprint (strprep
[i
].in
, strlen (strprep
[i
].in
));
232 rc
= stringprep (p
, BUFSIZ
, strprep
[i
].flags
, strprep
[i
].profile
);
233 if (rc
!= strprep
[i
].rc
)
235 fail ("stringprep() entry %d failed: %d\n", i
, rc
);
241 if (debug
&& rc
== STRINGPREP_OK
)
244 escapeprint (p
, strlen (p
));
245 hexprint (p
, strlen (p
));
247 binprint (p
, strlen (p
));
250 printf ("expected out:\n");
251 escapeprint (strprep
[i
].out
, strlen (strprep
[i
].out
));
252 hexprint (strprep
[i
].out
, strlen (strprep
[i
].out
));
254 binprint (strprep
[i
].out
, strlen (strprep
[i
].out
));
258 printf ("returned %d expected %d\n", rc
, strprep
[i
].rc
);
260 if (rc
== STRINGPREP_OK
)
262 if (strlen (strprep
[i
].out
) != strlen (p
) ||
263 memcmp (strprep
[i
].out
, p
, strlen (p
)) != 0)
265 fail ("stringprep() entry %d failed\n", i
);
280 stringprep_unichar_to_utf8 (0x0628, p
);
281 hexprint (p
, strlen (p
));
286 printf ("Stringprep self tests done with %d errors\n", error_count
);
288 return error_count
? 1 : 0;