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
|
/* Pango
* testtabs.c: Test program for PangoTabArray
*
* Copyright (C) 2021 Matthias Clasen
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include <glib.h>
#include <pango/pango.h>
static void
test_tabs_basic (void)
{
PangoTabArray *tabs;
PangoTabAlign align;
int location;
tabs = pango_tab_array_new (1, TRUE);
g_assert_true (pango_tab_array_get_positions_in_pixels (tabs));
g_assert_true (pango_tab_array_get_size (tabs) == 1);
pango_tab_array_set_tab (tabs, 0, PANGO_TAB_LEFT, 10);
pango_tab_array_get_tab (tabs, 0, &align, &location);
g_assert_true (align == PANGO_TAB_LEFT);
g_assert_true (location == 10);
pango_tab_array_free (tabs);
}
static void
test_tabs_copy (void)
{
PangoTabArray *tabs, *tabs2;
PangoTabAlign *alignments;
int *locations;
tabs = pango_tab_array_new_with_positions (2, TRUE,
PANGO_TAB_LEFT, 10,
PANGO_TAB_LEFT, 20);
tabs2 = pango_tab_array_copy (tabs);
pango_tab_array_get_tabs (tabs2, &alignments, &locations);
g_assert_true (alignments[0] == PANGO_TAB_LEFT);
g_assert_true (alignments[1] == PANGO_TAB_LEFT);
g_assert_true (locations[0] == 10);
g_assert_true (locations[1] == 20);
g_free (alignments);
g_free (locations);
pango_tab_array_free (tabs);
pango_tab_array_free (tabs2);
}
static void
test_tabs_resize (void)
{
PangoTabArray *tabs;
PangoTabAlign *alignments;
int *locations;
tabs = pango_tab_array_new (1, TRUE);
pango_tab_array_set_tab (tabs, 0, PANGO_TAB_LEFT, 10);
g_assert_cmpint (pango_tab_array_get_size (tabs), ==, 1);
pango_tab_array_resize (tabs, 2);
g_assert_cmpint (pango_tab_array_get_size (tabs), ==, 2);
pango_tab_array_set_tab (tabs, 1, PANGO_TAB_RIGHT, 20);
pango_tab_array_set_tab (tabs, 2, PANGO_TAB_CENTER, 30);
pango_tab_array_set_tab (tabs, 3, PANGO_TAB_DECIMAL, 40);
g_assert_cmpint (pango_tab_array_get_size (tabs), ==, 4);
pango_tab_array_get_tabs (tabs, &alignments, &locations);
g_assert_cmpint (alignments[0], ==, PANGO_TAB_LEFT);
g_assert_cmpint (alignments[1], ==, PANGO_TAB_RIGHT);
g_assert_cmpint (alignments[2], ==, PANGO_TAB_CENTER);
g_assert_cmpint (alignments[3], ==, PANGO_TAB_DECIMAL);
g_assert_cmpint (locations[0], ==, 10);
g_assert_cmpint (locations[1], ==, 20);
g_assert_cmpint (locations[2], ==, 30);
g_assert_cmpint (locations[3], ==, 40);
g_free (alignments);
g_free (locations);
pango_tab_array_free (tabs);
}
int
main (int argc, char *argv[])
{
g_test_init (&argc, &argv, NULL);
g_test_add_func ("/tabs/basic", test_tabs_basic);
g_test_add_func ("/tabs/copy", test_tabs_copy);
g_test_add_func ("/tabs/resize", test_tabs_resize);
return g_test_run ();
}
|