blob: e00e601f96c9c3619b790fe0539dd0e3cde20bd6 [file] [log] [blame]
Behdad Esfahbod9faa9802011-04-11 12:46:49 -04001/*
Behdad Esfahbod2409d5f2011-04-21 17:14:28 -04002 * Copyright © 2011 Google, Inc.
Behdad Esfahbod9faa9802011-04-11 12:46:49 -04003 *
4 * This is part of HarfBuzz, a text shaping library.
5 *
6 * Permission is hereby granted, without written agreement and without
7 * license or royalty fees, to use, copy, modify, and distribute this
8 * software and its documentation for any purpose, provided that the
9 * above copyright notice and the following two paragraphs appear in
10 * all copies of this software.
11 *
12 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
13 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
15 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
16 * DAMAGE.
17 *
18 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
19 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
21 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
22 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
23 *
24 * Google Author(s): Behdad Esfahbod
25 */
26
27#include "hb-test.h"
28
Behdad Esfahbod6af9cff2011-04-29 12:00:38 -040029/* Unit tests for hb-common.h */
30
Behdad Esfahbod9faa9802011-04-11 12:46:49 -040031
32static void
33test_types_int (void)
34{
Behdad Esfahbod47443792011-04-11 19:47:33 -040035 /* We already ASSERT_STATIC these in hb-private.h, but anyway */
Behdad Esfahbod9faa9802011-04-11 12:46:49 -040036 g_assert_cmpint (sizeof (int8_t), ==, 1);
37 g_assert_cmpint (sizeof (uint8_t), ==, 1);
38 g_assert_cmpint (sizeof (int16_t), ==, 2);
39 g_assert_cmpint (sizeof (uint16_t), ==, 2);
40 g_assert_cmpint (sizeof (int32_t), ==, 4);
41 g_assert_cmpint (sizeof (uint32_t), ==, 4);
42 g_assert_cmpint (sizeof (int64_t), ==, 8);
43 g_assert_cmpint (sizeof (uint64_t), ==, 8);
44
45 g_assert_cmpint (sizeof (hb_codepoint_t), ==, 4);
46 g_assert_cmpint (sizeof (hb_position_t), ==, 4);
47 g_assert_cmpint (sizeof (hb_mask_t), ==, 4);
48 g_assert_cmpint (sizeof (hb_var_int_t), ==, 4);
49}
50
51static void
52test_types_direction (void)
53{
Behdad Esfahboddb60c962011-04-11 16:17:02 -040054 g_assert_cmpint ((signed) HB_DIRECTION_INVALID, ==, -1);
Behdad Esfahbod9faa9802011-04-11 12:46:49 -040055 g_assert_cmpint (HB_DIRECTION_LTR, ==, 0);
56
57 g_assert (HB_DIRECTION_IS_HORIZONTAL (HB_DIRECTION_LTR));
58 g_assert (HB_DIRECTION_IS_HORIZONTAL (HB_DIRECTION_RTL));
59 g_assert (!HB_DIRECTION_IS_HORIZONTAL (HB_DIRECTION_TTB));
60 g_assert (!HB_DIRECTION_IS_HORIZONTAL (HB_DIRECTION_BTT));
61
62 g_assert (!HB_DIRECTION_IS_VERTICAL (HB_DIRECTION_LTR));
63 g_assert (!HB_DIRECTION_IS_VERTICAL (HB_DIRECTION_RTL));
64 g_assert (HB_DIRECTION_IS_VERTICAL (HB_DIRECTION_TTB));
65 g_assert (HB_DIRECTION_IS_VERTICAL (HB_DIRECTION_BTT));
66
67 g_assert (HB_DIRECTION_IS_FORWARD (HB_DIRECTION_LTR));
68 g_assert (HB_DIRECTION_IS_FORWARD (HB_DIRECTION_TTB));
69 g_assert (!HB_DIRECTION_IS_FORWARD (HB_DIRECTION_RTL));
70 g_assert (!HB_DIRECTION_IS_FORWARD (HB_DIRECTION_BTT));
71
72 g_assert (!HB_DIRECTION_IS_BACKWARD (HB_DIRECTION_LTR));
73 g_assert (!HB_DIRECTION_IS_BACKWARD (HB_DIRECTION_TTB));
74 g_assert (HB_DIRECTION_IS_BACKWARD (HB_DIRECTION_RTL));
75 g_assert (HB_DIRECTION_IS_BACKWARD (HB_DIRECTION_BTT));
76
77 g_assert_cmpint (HB_DIRECTION_REVERSE (HB_DIRECTION_LTR), ==, HB_DIRECTION_RTL);
78 g_assert_cmpint (HB_DIRECTION_REVERSE (HB_DIRECTION_RTL), ==, HB_DIRECTION_LTR);
79 g_assert_cmpint (HB_DIRECTION_REVERSE (HB_DIRECTION_TTB), ==, HB_DIRECTION_BTT);
80 g_assert_cmpint (HB_DIRECTION_REVERSE (HB_DIRECTION_BTT), ==, HB_DIRECTION_TTB);
Behdad Esfahbod39a840a2011-04-27 14:48:19 -040081
Behdad Esfahbod4c9fe882011-08-26 09:18:53 +020082 g_assert_cmpint (HB_DIRECTION_INVALID, ==, hb_direction_from_string (NULL, -1));
83 g_assert_cmpint (HB_DIRECTION_INVALID, ==, hb_direction_from_string ("", -1));
84 g_assert_cmpint (HB_DIRECTION_INVALID, ==, hb_direction_from_string ("t", 0));
85 g_assert_cmpint (HB_DIRECTION_INVALID, ==, hb_direction_from_string ("x", -1));
86 g_assert_cmpint (HB_DIRECTION_RTL, ==, hb_direction_from_string ("r", -1));
87 g_assert_cmpint (HB_DIRECTION_RTL, ==, hb_direction_from_string ("rtl", -1));
88 g_assert_cmpint (HB_DIRECTION_RTL, ==, hb_direction_from_string ("RtL", -1));
89 g_assert_cmpint (HB_DIRECTION_RTL, ==, hb_direction_from_string ("right-to-left", -1));
90 g_assert_cmpint (HB_DIRECTION_TTB, ==, hb_direction_from_string ("ttb", -1));
Behdad Esfahbod654f88f2011-05-27 03:38:46 -040091
92 g_assert (0 == strcmp ("ltr", hb_direction_to_string (HB_DIRECTION_LTR)));
93 g_assert (0 == strcmp ("rtl", hb_direction_to_string (HB_DIRECTION_RTL)));
94 g_assert (0 == strcmp ("ttb", hb_direction_to_string (HB_DIRECTION_TTB)));
95 g_assert (0 == strcmp ("btt", hb_direction_to_string (HB_DIRECTION_BTT)));
96 g_assert (0 == strcmp ("invalid", hb_direction_to_string (HB_DIRECTION_INVALID)));
Behdad Esfahbod9faa9802011-04-11 12:46:49 -040097}
98
99static void
100test_types_tag (void)
101{
102 g_assert_cmphex (HB_TAG_NONE, ==, 0);
Behdad Esfahbod7ff74012011-04-11 13:27:30 -0400103
Behdad Esfahbod9faa9802011-04-11 12:46:49 -0400104 g_assert_cmphex (HB_TAG ('a','B','c','D'), ==, 0x61426344);
105
Behdad Esfahbod4c9fe882011-08-26 09:18:53 +0200106 g_assert_cmphex (hb_tag_from_string ("aBcDe", -1), ==, 0x61426344);
107 g_assert_cmphex (hb_tag_from_string ("aBcD", -1), ==, 0x61426344);
108 g_assert_cmphex (hb_tag_from_string ("aBc", -1), ==, 0x61426320);
109 g_assert_cmphex (hb_tag_from_string ("aB", -1), ==, 0x61422020);
110 g_assert_cmphex (hb_tag_from_string ("a", -1), ==, 0x61202020);
111 g_assert_cmphex (hb_tag_from_string ("aBcDe", 1), ==, 0x61202020);
112 g_assert_cmphex (hb_tag_from_string ("aBcDe", 2), ==, 0x61422020);
113 g_assert_cmphex (hb_tag_from_string ("aBcDe", 3), ==, 0x61426320);
114 g_assert_cmphex (hb_tag_from_string ("aBcDe", 4), ==, 0x61426344);
115 g_assert_cmphex (hb_tag_from_string ("aBcDe", 4), ==, 0x61426344);
Behdad Esfahbod7ff74012011-04-11 13:27:30 -0400116
Behdad Esfahbod4c9fe882011-08-26 09:18:53 +0200117 g_assert_cmphex (hb_tag_from_string ("", -1), ==, HB_TAG_NONE);
118 g_assert_cmphex (hb_tag_from_string ("x", 0), ==, HB_TAG_NONE);
119 g_assert_cmphex (hb_tag_from_string (NULL, -1), ==, HB_TAG_NONE);
Behdad Esfahbod9faa9802011-04-11 12:46:49 -0400120}
121
Behdad Esfahboddb60c962011-04-11 16:17:02 -0400122static void
123test_types_script (void)
124{
125 hb_tag_t arab = HB_TAG_CHAR4 ("arab");
126 hb_tag_t Arab = HB_TAG_CHAR4 ("Arab");
127 hb_tag_t ARAB = HB_TAG_CHAR4 ("ARAB");
128
129 hb_tag_t wWyZ = HB_TAG_CHAR4 ("wWyZ");
130 hb_tag_t Wwyz = HB_TAG_CHAR4 ("Wwyz");
131
132 hb_tag_t x123 = HB_TAG_CHAR4 ("x123");
133
Behdad Esfahbod39a840a2011-04-27 14:48:19 -0400134 g_assert_cmpint (HB_SCRIPT_INVALID, ==, (hb_script_t) HB_TAG_NONE);
Behdad Esfahboddb60c962011-04-11 16:17:02 -0400135 g_assert_cmphex (HB_SCRIPT_ARABIC, !=, HB_SCRIPT_LATIN);
136
Behdad Esfahbod4c9fe882011-08-26 09:18:53 +0200137 g_assert_cmphex (HB_SCRIPT_INVALID, ==, hb_script_from_string (NULL, -1));
138 g_assert_cmphex (HB_SCRIPT_INVALID, ==, hb_script_from_string ("", -1));
139 g_assert_cmphex (HB_SCRIPT_INVALID, ==, hb_script_from_string ("x", 0));
140 g_assert_cmphex (HB_SCRIPT_UNKNOWN, ==, hb_script_from_string ("x", -1));
Behdad Esfahbod39a840a2011-04-27 14:48:19 -0400141
Behdad Esfahbod4c9fe882011-08-26 09:18:53 +0200142 g_assert_cmphex (HB_SCRIPT_ARABIC, ==, hb_script_from_string ("arab", -1));
143 g_assert_cmphex (HB_SCRIPT_ARABIC, ==, hb_script_from_string ("Arab", -1));
144 g_assert_cmphex (HB_SCRIPT_ARABIC, ==, hb_script_from_string ("ARAB", -1));
145 g_assert_cmphex (HB_SCRIPT_ARABIC, ==, hb_script_from_string ("Arabic", 6));
146 g_assert_cmphex (HB_SCRIPT_ARABIC, !=, hb_script_from_string ("Arabic", 3));
Behdad Esfahbod39a840a2011-04-27 14:48:19 -0400147
Behdad Esfahboddb60c962011-04-11 16:17:02 -0400148 g_assert_cmphex (HB_SCRIPT_ARABIC, ==, hb_script_from_iso15924_tag (arab));
149 g_assert_cmphex (HB_SCRIPT_ARABIC, ==, hb_script_from_iso15924_tag (Arab));
150 g_assert_cmphex (HB_SCRIPT_ARABIC, ==, hb_script_from_iso15924_tag (ARAB));
151
152 /* Arbitrary tags that look like may be valid ISO 15924 should be preserved. */
Behdad Esfahbod4c9fe882011-08-26 09:18:53 +0200153 g_assert_cmphex (HB_SCRIPT_UNKNOWN, !=, hb_script_from_string ("wWyZ", -1));
Behdad Esfahboddb60c962011-04-11 16:17:02 -0400154 g_assert_cmphex (HB_SCRIPT_UNKNOWN, !=, hb_script_from_iso15924_tag (wWyZ));
155 /* Otherwise, UNKNOWN should be returned. */
Behdad Esfahbod4c9fe882011-08-26 09:18:53 +0200156 g_assert_cmphex (HB_SCRIPT_UNKNOWN, ==, hb_script_from_string ("x123", -1));
Behdad Esfahboddb60c962011-04-11 16:17:02 -0400157 g_assert_cmphex (HB_SCRIPT_UNKNOWN, ==, hb_script_from_iso15924_tag (x123));
158
159 g_assert_cmphex (hb_script_to_iso15924_tag (HB_SCRIPT_ARABIC), ==, Arab);
160 g_assert_cmphex (hb_script_to_iso15924_tag (hb_script_from_iso15924_tag (wWyZ)), ==, Wwyz);
161
162 g_assert_cmpint (hb_script_get_horizontal_direction (HB_SCRIPT_LATIN), ==, HB_DIRECTION_LTR);
163 g_assert_cmpint (hb_script_get_horizontal_direction (HB_SCRIPT_ARABIC), ==, HB_DIRECTION_RTL);
164 g_assert_cmpint (hb_script_get_horizontal_direction (hb_script_from_iso15924_tag (wWyZ)), ==, HB_DIRECTION_LTR);
165}
166
Behdad Esfahbod09125572011-04-11 17:49:33 -0400167static void
168test_types_language (void)
169{
Behdad Esfahbod4c9fe882011-08-26 09:18:53 +0200170 hb_language_t fa = hb_language_from_string ("fa", -1);
171 hb_language_t fa_IR = hb_language_from_string ("fa_IR", -1);
172 hb_language_t fa_ir = hb_language_from_string ("fa-ir", -1);
173 hb_language_t en = hb_language_from_string ("en", -1);
Behdad Esfahbod09125572011-04-11 17:49:33 -0400174
Behdad Esfahbod1a64f6e2011-05-13 22:55:32 -0400175 g_assert (HB_LANGUAGE_INVALID == NULL);
176
Behdad Esfahbod09125572011-04-11 17:49:33 -0400177 g_assert (fa != NULL);
178 g_assert (fa_IR != NULL);
179 g_assert (fa_IR == fa_ir);
180
181 g_assert (en != NULL);
182 g_assert (en != fa);
183
184 /* Test recall */
Behdad Esfahbod4c9fe882011-08-26 09:18:53 +0200185 g_assert (en == hb_language_from_string ("en", -1));
186 g_assert (en == hb_language_from_string ("eN", -1));
187 g_assert (en == hb_language_from_string ("Enx", 2));
Behdad Esfahbod09125572011-04-11 17:49:33 -0400188
Behdad Esfahbod4c9fe882011-08-26 09:18:53 +0200189 g_assert (HB_LANGUAGE_INVALID == hb_language_from_string (NULL, -1));
190 g_assert (HB_LANGUAGE_INVALID == hb_language_from_string ("", -1));
191 g_assert (HB_LANGUAGE_INVALID == hb_language_from_string ("en", 0));
192 g_assert (HB_LANGUAGE_INVALID != hb_language_from_string ("en", 1));
Behdad Esfahbod1a64f6e2011-05-13 22:55:32 -0400193 g_assert (NULL == hb_language_to_string (HB_LANGUAGE_INVALID));
Behdad Esfahbod34fb5522011-05-06 00:04:28 -0400194
195 /* Not sure how to test this better. Setting env vars
196 * here doesn't sound like the right approach, and I'm
197 * not sure that it even works. */
Behdad Esfahbod1a64f6e2011-05-13 22:55:32 -0400198 g_assert (HB_LANGUAGE_INVALID != hb_language_get_default ());
Behdad Esfahbod09125572011-04-11 17:49:33 -0400199}
200
Behdad Esfahbod9faa9802011-04-11 12:46:49 -0400201int
Behdad Esfahbod9385caa2011-04-11 19:43:51 -0400202main (int argc, char **argv)
Behdad Esfahbod9faa9802011-04-11 12:46:49 -0400203{
Behdad Esfahbodaafe3952011-04-28 17:10:44 -0400204 hb_test_init (&argc, &argv);
Behdad Esfahbod9faa9802011-04-11 12:46:49 -0400205
Behdad Esfahbodaafe3952011-04-28 17:10:44 -0400206 hb_test_add (test_types_int);
207 hb_test_add (test_types_direction);
208 hb_test_add (test_types_tag);
209 hb_test_add (test_types_script);
210 hb_test_add (test_types_language);
Behdad Esfahbod9faa9802011-04-11 12:46:49 -0400211
Behdad Esfahbodaafe3952011-04-28 17:10:44 -0400212 return hb_test_run();
Behdad Esfahbod9faa9802011-04-11 12:46:49 -0400213}