aboutsummaryrefslogtreecommitdiff
path: root/regress/puny-test.c
blob: df7253b8a7c6a656bc519e4118cb726ce0821cab (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
/*
 * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
 *
 * Permission to use, copy, modify, and distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include <stdio.h>
#include <string.h>

#include "../gmid.h"

const struct suite {
	const char	*src;
	const char	*res;
} t[] = {
	{"foo",			"foo"},
	{"h.n",			"h.n"},
	{"xn-invalid",		"xn-invalid"},
	{"naïve",		"naïve"},
	{"xn--8ca",		"è"},
	{"xn--caff-8oa",	"caffè"},
	{"xn--nave-6pa",	"naïve"},
	{"xn--e-0mbbc",		"τeστ"},
	{"xn--8ca67lbac",	"τèστ"},
	{"xn--28j2a3ar1p",	"こんにちは"},
	{"xn--hello--ur7iy09x",	"hello-世界"},
	{"xn--hi--hi-rr7iy09x",	"hi-世界-hi"},
	{"xn--caf-8la.foo.org",	"cafè.foo.org"},
	/* 3 bytes */
	{"xn--j6h",		"♨"},
	/* 4 bytes */
	{"xn--x73l",		"𩸽"},
	{"xn--x73laaa",		"𩸽𩸽𩸽𩸽"},
	{NULL, NULL}
};

void
sandbox_logger_process(void)
{
	/* to make the linker happy! */
	return;
}

int
main(int argc, char **argv)
{
	const struct suite *i;
	int failed;
	char buf[64];		/* name len */
	const char *parse_err;

	failed = 0;
	for (i = t; i->src != NULL; ++i) {
		memset(buf, 0, sizeof(buf));
		if (!puny_decode(i->src, buf, sizeof(buf), &parse_err)) {
                        printf("decode: failure with %s: %s\n",
			    i->src, parse_err);
                        failed = 1;
			continue;
		}

		if (strcmp(buf, i->res)) {
			printf("ERR: expected \"%s\", got \"%s\"\n",
			    i->res, buf);
			failed = 1;
			continue;
		} else
			printf("OK:  %s => %s\n", i->src, buf);
	}

	return failed;
}