t_wctomb.c revision 272343
1/* $NetBSD: t_wctomb.c,v 1.3 2013/03/25 15:31:03 gson Exp $ */
2
3/*-
4 * Copyright (c) 2011 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 * POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/*-
30 * Copyright (c)2004 Citrus Project,
31 * All rights reserved.
32 *
33 * Redistribution and use in source and binary forms, with or without
34 * modification, are permitted provided that the following conditions
35 * are met:
36 * 1. Redistributions of source code must retain the above copyright
37 *    notice, this list of conditions and the following disclaimer.
38 * 2. Redistributions in binary form must reproduce the above copyright
39 *    notice, this list of conditions and the following disclaimer in the
40 *    documentation and/or other materials provided with the distribution.
41 *
42 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
43 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
44 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
45 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
46 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
47 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
48 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
49 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
50 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
51 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
52 * SUCH DAMAGE.
53 */
54
55#include <sys/cdefs.h>
56__COPYRIGHT("@(#) Copyright (c) 2011\
57 The NetBSD Foundation, inc. All rights reserved.");
58__RCSID("$NetBSD: t_wctomb.c,v 1.3 2013/03/25 15:31:03 gson Exp $");
59
60#include <stdio.h>
61#include <stdlib.h>
62#include <locale.h>
63#include <vis.h>
64#include <wchar.h>
65#include <string.h>
66#include <limits.h>
67
68#include <atf-c.h>
69
70#define TC_WCTOMB	0
71#define TC_WCRTOMB	1
72#define TC_WCRTOMB_ST	2
73
74static struct test {
75	const char *locale;
76	const char *data;
77	size_t wclen;
78	size_t mblen[16];
79} tests[] = {
80{
81	"ja_JP.ISO2022-JP",
82	"\x1b$B"	/* JIS X 0208-1983 */
83	"\x46\x7c\x4b\x5c\x38\x6c" /* "nihongo" */
84	"\x1b(B"	/* ISO 646 */
85	"ABC"
86	"\x1b(I"	/* JIS X 0201 katakana */
87	"\xb1\xb2\xb3"	/* "aiu" */
88	"\x1b(B",	/* ISO 646 */
89	3 + 3 + 3,
90	{ 3+2, 2, 2, 3+1, 1, 1, 3+1, 1, 1, 3+1 }
91}, {
92	"C",
93	"ABC",
94	3,
95	{ 1, 1, 1, 1 }
96}, { NULL, NULL, 0, { } }
97};
98
99static void
100h_wctomb(const struct test *t, char tc)
101{
102	wchar_t wcs[16 + 2];
103	char buf[128];
104	char cs[MB_LEN_MAX];
105	const char *pcs;
106	char *str;
107	mbstate_t st;
108	mbstate_t *stp = NULL;
109	size_t sz, ret, i;
110
111	ATF_REQUIRE_STREQ(setlocale(LC_ALL, "C"), "C");
112	ATF_REQUIRE(setlocale(LC_CTYPE, t->locale) != NULL);
113
114	(void)strvis(buf, t->data, VIS_WHITE | VIS_OCTAL);
115	(void)printf("Checking sequence: \"%s\"\n", buf);
116
117	ATF_REQUIRE((str = setlocale(LC_ALL, NULL)) != NULL);
118	(void)printf("Using locale: %s\n", str);
119
120	if (tc == TC_WCRTOMB_ST) {
121		(void)memset(&st, 0, sizeof(st));
122		stp = &st;
123	}
124
125	wcs[t->wclen] = L'X'; /* poison */
126	pcs = t->data;
127	sz = mbsrtowcs(wcs, &pcs, t->wclen + 2, NULL);
128	ATF_REQUIRE_EQ_MSG(sz, t->wclen, "mbsrtowcs() returned: "
129		"%zu, expected: %zu", sz, t->wclen);
130	ATF_REQUIRE_EQ(wcs[t->wclen], 0);
131
132	for (i = 0; i < t->wclen + 1; i++) {
133		if (tc == TC_WCTOMB)
134			ret = wctomb(cs, wcs[i]);
135		else
136			ret = wcrtomb(cs, wcs[i], stp);
137
138		if (ret == t->mblen[i])
139			continue;
140
141		(void)printf("At position %zd:\n", i);
142		(void)printf("  expected: %zd\n", t->mblen[i]);
143		(void)printf("  got     : %zd\n", ret);
144		atf_tc_fail("Test failed");
145		/* NOTREACHED */
146	}
147
148	(void)printf("Ok.\n");
149}
150
151ATF_TC(wctomb);
152ATF_TC_HEAD(wctomb, tc)
153{
154	atf_tc_set_md_var(tc, "descr", "Checks wctomb(3)");
155}
156ATF_TC_BODY(wctomb, tc)
157{
158	struct test *t;
159
160	(void)printf("Checking wctomb()\n");
161
162	for (t = &tests[0]; t->data != NULL; ++t)
163		h_wctomb(t, TC_WCTOMB);
164}
165
166ATF_TC(wcrtomb_state);
167ATF_TC_HEAD(wcrtomb_state, tc)
168{
169	atf_tc_set_md_var(tc, "descr",
170		"Checks wcrtomb(3) (using state object)");
171}
172ATF_TC_BODY(wcrtomb_state, tc)
173{
174	struct test *t;
175
176	(void)printf("Checking wcrtomb() (with state object)\n");
177
178	for (t = &tests[0]; t->data != NULL; ++t)
179		h_wctomb(t, TC_WCRTOMB_ST);
180}
181
182ATF_TC(wcrtomb);
183ATF_TC_HEAD(wcrtomb, tc)
184{
185	atf_tc_set_md_var(tc, "descr",
186		"Checks wcrtomb(3) (using internal state)");
187}
188ATF_TC_BODY(wcrtomb, tc)
189{
190	struct test *t;
191
192	(void)printf("Checking wcrtomb() (using internal state)\n");
193
194	for (t = &tests[0]; t->data != NULL; ++t)
195		h_wctomb(t, TC_WCRTOMB);
196}
197
198ATF_TP_ADD_TCS(tp)
199{
200	ATF_TP_ADD_TC(tp, wctomb);
201	ATF_TP_ADD_TC(tp, wcrtomb);
202	ATF_TP_ADD_TC(tp, wcrtomb_state);
203
204	return atf_no_error();
205}
206