summaryrefslogtreecommitdiff
path: root/tests/conv-utf8.c
blob: 9edae83b16326246e22ff056a87d133520b7ae8a (plain)
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*
 * 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, see <https://www.gnu.org/licenses/>.
 */

#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 <stdio.h>
#include <gnutls/gnutls.h>
#include <gnutls/x509.h>

#include <cmocka.h>

int _gnutls_utf8_to_ucs2(const void *data, size_t size, gnutls_datum_t *output,
			 unsigned be);

int _gnutls_ucs2_to_utf8(const void *data, size_t size, gnutls_datum_t *output,
			 unsigned be);

#define DEBUG

#ifdef DEBUG
static void PRINT(const char *str, unsigned char *val, unsigned int size)
{
	unsigned i;
	printf("%s", str);
	for (i = 0; i < size; i++) {
		printf("%.2x", val[i]);
	}
	printf("\n");
}
#else
#define PRINT(x, y, x)
#endif

#define UTF8_MATCH(fname, utf8, utf16)                                       \
	static void fname(void **glob_state)                                 \
	{                                                                    \
		gnutls_datum_t out;                                          \
		int ret = _gnutls_utf8_to_ucs2(utf8, strlen(utf8), &out, 1); \
		assert_int_equal(ret, 0);                                    \
		if (out.size != sizeof(utf16) - 1 ||                         \
		    memcmp(utf16, out.data, out.size) != 0) {                \
			PRINT("got:      ", out.data, out.size);             \
			PRINT("expected: ", (unsigned char *)utf16,          \
			      sizeof(utf16) - 1);                            \
		}                                                            \
		assert_int_equal(out.size, sizeof(utf16) - 1);               \
		assert_memory_equal(utf16, out.data, out.size);              \
		gnutls_free(out.data);                                       \
	}

#define UTF16_MATCH(fname, utf8, utf16)                                        \
	static void fname(void **glob_state)                                   \
	{                                                                      \
		gnutls_datum_t out;                                            \
		int ret = _gnutls_ucs2_to_utf8(utf16, sizeof(utf16) - 1, &out, \
					       1);                             \
		assert_int_equal(ret, 0);                                      \
		if (out.size != strlen(utf8) ||                                \
		    memcmp(utf8, out.data, out.size) != 0) {                   \
			PRINT("got:      ", out.data, out.size);               \
			PRINT("expected: ", (unsigned char *)utf8,             \
			      strlen(utf8));                                   \
		}                                                              \
		assert_int_equal(out.size, strlen(utf8));                      \
		assert_memory_equal(utf8, out.data, out.size);                 \
		gnutls_free(out.data);                                         \
	}

#define UTF8_FAIL(fname, utf8, utf8_size)                                 \
	static void fname(void **glob_state)                              \
	{                                                                 \
		gnutls_datum_t out;                                       \
		int ret = _gnutls_utf8_to_ucs2(utf8, utf8_size, &out, 1); \
		assert_int_not_equal(ret, 0);                             \
	}

#define UTF16_FAIL(fname, utf16, utf16_size)                                \
	static void fname(void **glob_state)                                \
	{                                                                   \
		gnutls_datum_t out;                                         \
		int ret = _gnutls_ucs2_to_utf8(utf16, utf16_size, &out, 1); \
		assert_int_not_equal(ret, 0);                               \
	}

UTF8_MATCH(check_utf8_ok1, "abcd", "\x00\x61\x00\x62\x00\x63\x00\x64");
UTF8_MATCH(check_utf8_ok2, "ユーザー別サイト",
	   "\x30\xE6\x30\xFC\x30\xB6\x30\xFC\x52\x25\x30\xB5\x30\xA4\x30\xC8");
UTF8_MATCH(check_utf8_ok3, "简体中文", "\x7B\x80\x4F\x53\x4E\x2D\x65\x87");
UTF8_MATCH(
	check_utf8_ok4, "Σὲ γνωρίζω ἀπὸ",
	"\x03\xA3\x1F\x72\x00\x20\x03\xB3\x03\xBD\x03\xC9\x03\xC1\x03\xAF\x03\xB6\x03\xC9\x00\x20\x1F\x00\x03\xC0\x1F\x78");

UTF16_MATCH(check_utf16_ok1, "abcd", "\x00\x61\x00\x62\x00\x63\x00\x64");
UTF16_MATCH(check_utf16_ok2, "ユーザー別サイト",
	    "\x30\xE6\x30\xFC\x30\xB6\x30\xFC\x52\x25\x30\xB5\x30\xA4\x30\xC8");
UTF16_MATCH(check_utf16_ok3, "简体中文", "\x7B\x80\x4F\x53\x4E\x2D\x65\x87");
UTF16_MATCH(
	check_utf16_ok4, "Σὲ γνωρίζω ἀπὸ",
	"\x03\xA3\x1F\x72\x00\x20\x03\xB3\x03\xBD\x03\xC9\x03\xC1\x03\xAF\x03\xB6\x03\xC9\x00\x20\x1F\x00\x03\xC0\x1F\x78");

UTF8_FAIL(check_utf8_fail1, "\xfe\xff\xaa\x80\xff", 5);
UTF8_FAIL(check_utf8_fail2, "\x64\x00\x62\xf3\x64\x65", 6);
UTF16_FAIL(check_utf16_fail1, "\xd8\x00\xdb\xff\x00\x63\x00\x04", 8);

int main(void)
{
	const struct CMUnitTest tests[] = { cmocka_unit_test(check_utf8_fail1),
					    cmocka_unit_test(check_utf8_fail2),
					    cmocka_unit_test(check_utf16_fail1),
					    cmocka_unit_test(check_utf8_ok1),
					    cmocka_unit_test(check_utf8_ok2),
					    cmocka_unit_test(check_utf8_ok3),
					    cmocka_unit_test(check_utf8_ok4),
					    cmocka_unit_test(check_utf16_ok1),
					    cmocka_unit_test(check_utf16_ok2),
					    cmocka_unit_test(check_utf16_ok3),
					    cmocka_unit_test(check_utf16_ok4) };
	return cmocka_run_group_tests(tests, NULL, NULL);
}