1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
/*
* Copyright (C) 2016 Red Hat, Inc.
*
* Authors: Nikos Mavrogiannopoulos
*
* This file is part of GnuTLS.
*
* GnuTLS is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* GnuTLS is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GnuTLS; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <config.h>
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <limits.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <gnutls/gnutls.h>
#include <cmocka.h>
int _gnutls_idna_map(const char *input, unsigned ilen, gnutls_datum_t *out, unsigned flags);
int _gnutls_idna_reverse_map(const char * input, unsigned ilen, gnutls_datum_t *out, unsigned flags);
#define MATCH_FUNC(fname, str, normalized, reverse) \
static void fname##_reverse(void **glob_state) \
{ \
gnutls_datum_t out; \
int ret; \
if (normalized == NULL) \
return; \
ret = _gnutls_idna_reverse_map(normalized, strlen(normalized), &out, 0); \
assert_int_equal(ret, 0); \
\
assert_int_equal(strcmp((char*)out.data, (char*)str), 0); \
gnutls_free(out.data); \
} \
static void fname(void **glob_state) \
{ \
gnutls_datum_t out; \
int ret = _gnutls_idna_map(str, strlen(str), &out, 0); \
if (normalized == NULL) { /* expect failure */ \
assert_int_not_equal(ret, 0); \
return; \
} else { \
assert_int_equal(ret, 0); \
} \
assert_int_equal(strcmp((char*)out.data, (char*)normalized), 0); \
gnutls_free(out.data); \
if (reverse) fname##_reverse(glob_state); \
}
/* vectors taken from:
* http://www.unicode.org/Public/idna/9.0.0/IdnaTest.txt
*/
MATCH_FUNC(test_ascii, "localhost", "localhost", 1);
MATCH_FUNC(test_ascii_caps, "LOCALHOST", "LOCALHOST", 1);
MATCH_FUNC(test_greek1, "βόλοσ.com", "xn--nxasmq6b.com", 1);
MATCH_FUNC(test_greek2, "βόλος.com", "xn--nxasmq6b.com", 0);
MATCH_FUNC(test_cap_greek3, "ΒΌΛΟΣ.com", "xn--nxasmq6b.com", 0);
MATCH_FUNC(test_mix, "简体中文.εξτρα.com", "xn--fiqu1az03c18t.xn--mxah1amo.com", 1);
MATCH_FUNC(test_german1, "faß.de", "fass.de", 0);
MATCH_FUNC(test_caps_german2, "Faß.de", "fass.de", 0);
MATCH_FUNC(test_caps_german3, "Ü.ü", "xn--tda.xn--tda", 0);
MATCH_FUNC(test_caps_german4, "Bücher.de", "xn--bcher-kva.de", 0);
MATCH_FUNC(test_german4, "bücher.de", "xn--bcher-kva.de", 1);
MATCH_FUNC(test_u1, "夡夞夜夙", "xn--bssffl", 1);
MATCH_FUNC(test_jp2, "日本語.jp", "xn--wgv71a119e.jp", 1);
MATCH_FUNC(test_dots, "a.b.c。d。", "a.b.c.d.", 0);
int main(void)
{
gnutls_datum_t tmp;
int ret;
const struct CMUnitTest tests[] = {
cmocka_unit_test(test_ascii),
cmocka_unit_test(test_ascii_caps),
cmocka_unit_test(test_greek1),
cmocka_unit_test(test_greek2),
cmocka_unit_test(test_cap_greek3),
cmocka_unit_test(test_mix),
cmocka_unit_test(test_german1),
cmocka_unit_test(test_caps_german2),
cmocka_unit_test(test_caps_german3),
cmocka_unit_test(test_caps_german4),
cmocka_unit_test(test_german4),
cmocka_unit_test(test_u1),
cmocka_unit_test(test_jp2),
cmocka_unit_test(test_dots)
};
ret = _gnutls_idna_map("x", 1, &tmp, 0);
if (ret == GNUTLS_E_UNIMPLEMENTED_FEATURE)
exit(77);
gnutls_free(tmp.data);
return cmocka_run_group_tests(tests, NULL, NULL);
}
|