Merge branch 'source-get-id-docs' into 'master'
[glib.git] / tests / unicode-normalize.c
blob9679e25500a0cfdd0abb69eca943ef9717ebaa76
1 #undef G_DISABLE_ASSERT
2 #undef G_LOG_DOMAIN
4 #include <glib.h>
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <string.h>
9 gboolean success = TRUE;
11 static char *
12 decode (const gchar *input)
14 unsigned ch;
15 int offset = 0;
16 GString *result = g_string_new (NULL);
18 do
20 if (sscanf (input + offset, "%x", &ch) != 1)
22 fprintf (stderr, "Error parsing character string %s\n", input);
23 exit (1);
26 g_string_append_unichar (result, ch);
28 while (input[offset] && input[offset] != ' ')
29 offset++;
30 while (input[offset] && input[offset] == ' ')
31 offset++;
33 while (input[offset]);
35 return g_string_free (result, FALSE);
38 const char *names[4] = {
39 "NFD",
40 "NFC",
41 "NFKD",
42 "NFKC"
45 static char *
46 encode (const gchar *input)
48 GString *result = g_string_new(NULL);
50 const gchar *p = input;
51 while (*p)
53 gunichar c = g_utf8_get_char (p);
54 g_string_append_printf (result, "%04X ", c);
55 p = g_utf8_next_char(p);
58 return g_string_free (result, FALSE);
61 static void
62 test_form (int line,
63 GNormalizeMode mode,
64 gboolean do_compat,
65 int expected,
66 char **c,
67 char **raw)
69 int i;
71 gboolean mode_is_compat = (mode == G_NORMALIZE_NFKC ||
72 mode == G_NORMALIZE_NFKD);
74 if (mode_is_compat || !do_compat)
76 for (i = 0; i < 3; i++)
78 char *result = g_utf8_normalize (c[i], -1, mode);
79 if (strcmp (result, c[expected]) != 0)
81 char *result_raw = encode(result);
82 fprintf (stderr, "\nFailure: %d/%d: %s\n", line, i + 1, raw[5]);
83 fprintf (stderr, " g_utf8_normalize (%s, %s) != %s but %s\n",
84 raw[i], names[mode], raw[expected], result_raw);
85 g_free (result_raw);
86 success = FALSE;
89 g_free (result);
92 if (mode_is_compat || do_compat)
94 for (i = 3; i < 5; i++)
96 char *result = g_utf8_normalize (c[i], -1, mode);
97 if (strcmp (result, c[expected]) != 0)
99 char *result_raw = encode(result);
100 fprintf (stderr, "\nFailure: %d/%d: %s\n", line, i, raw[5]);
101 fprintf (stderr, " g_utf8_normalize (%s, %s) != %s but %s\n",
102 raw[i], names[mode], raw[expected], result_raw);
103 g_free (result_raw);
104 success = FALSE;
107 g_free (result);
112 static gboolean
113 process_one (int line, gchar **columns)
115 char *c[5];
116 int i;
117 gboolean skip = FALSE;
119 for (i=0; i < 5; i++)
121 c[i] = decode(columns[i]);
122 if (!c[i])
123 skip = TRUE;
126 if (!skip)
128 test_form (line, G_NORMALIZE_NFD, FALSE, 2, c, columns);
129 test_form (line, G_NORMALIZE_NFD, TRUE, 4, c, columns);
130 test_form (line, G_NORMALIZE_NFC, FALSE, 1, c, columns);
131 test_form (line, G_NORMALIZE_NFC, TRUE, 3, c, columns);
132 test_form (line, G_NORMALIZE_NFKD, TRUE, 4, c, columns);
133 test_form (line, G_NORMALIZE_NFKC, TRUE, 3, c, columns);
136 for (i=0; i < 5; i++)
137 g_free (c[i]);
139 return TRUE;
142 int main (int argc, char **argv)
144 GIOChannel *in;
145 GError *error = NULL;
146 GString *buffer = g_string_new (NULL);
147 int line_to_do = 0;
148 int line = 1;
150 if (argc != 2 && argc != 3)
152 fprintf (stderr, "Usage: unicode-normalize NormalizationTest.txt LINE\n");
153 return 1;
156 if (argc == 3)
157 line_to_do = atoi(argv[2]);
159 in = g_io_channel_new_file (argv[1], "r", &error);
160 if (!in)
162 fprintf (stderr, "Cannot open %s: %s\n", argv[1], error->message);
163 return 1;
166 while (TRUE)
168 gsize term_pos;
169 gchar **columns;
171 if (g_io_channel_read_line_string (in, buffer, &term_pos, &error) != G_IO_STATUS_NORMAL)
172 break;
174 if (line_to_do && line != line_to_do)
175 goto next;
177 buffer->str[term_pos] = '\0';
179 if (buffer->str[0] == '#') /* Comment */
180 goto next;
181 if (buffer->str[0] == '@') /* Part */
183 fprintf (stderr, "\nProcessing %s\n", buffer->str + 1);
184 goto next;
187 columns = g_strsplit (buffer->str, ";", -1);
188 if (!columns[0])
189 goto next;
191 if (!process_one (line, columns))
192 return 1;
193 g_strfreev (columns);
195 next:
196 g_string_truncate (buffer, 0);
197 line++;
200 if (error)
202 fprintf (stderr, "Error reading test file, %s\n", error->message);
203 return 1;
206 g_io_channel_unref (in);
207 g_string_free (buffer, TRUE);
209 return !success;