This source file includes following definitions.
- START_TEST
- main
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 #define TEST_SUITE_NAME "lib/widget"
27
28 #include <config.h>
29
30 #include <check.h>
31
32 #include "lib/widget.h"
33
34 #include "tests/mctest.h"
35
36
37
38
39 START_TEST (test_widget_make_global_local)
40
41 {
42 WRect r;
43 WGroup *g0, *g1, *g2;
44 Widget *w0, *w1, *w2;
45
46
47 g0 = g_new0 (WGroup, 1);
48 rect_init (&r, 20, 20, 40, 40);
49 group_init (g0, &r, NULL, NULL);
50
51
52 w0 = g_new0 (Widget, 1);
53 rect_init (&r, 1, 1, 5, 5);
54 widget_init (w0, &r, widget_default_callback, NULL);
55 group_add_widget (g0, w0);
56
57
58 g1 = g_new0 (WGroup, 1);
59 rect_init (&r, 5, 5, 30, 30);
60 group_init (g1, &r, NULL, NULL);
61
62
63 w1 = g_new0 (Widget, 1);
64 rect_init (&r, 5, 5, 10, 10);
65 widget_init (w1, &r, widget_default_callback, NULL);
66 group_add_widget (g1, w1);
67
68
69 g2 = g_new0 (WGroup, 1);
70 rect_init (&r, 15, 15, 20, 20);
71 group_init (g2, &r, NULL, NULL);
72 group_add_widget (g1, g2);
73
74
75 w2 = g_new0 (Widget, 1);
76 rect_init (&r, 15, 15, 5, 5);
77 widget_init (w2, &r, widget_default_callback, NULL);
78 group_add_widget (g2, w2);
79
80
81 group_add_widget (g0, g1);
82
83
84
85 ck_assert_int_eq (w0->rect.y, 21);
86 ck_assert_int_eq (w0->rect.x, 21);
87
88 ck_assert_int_eq (WIDGET (g1)->rect.y, 25);
89 ck_assert_int_eq (WIDGET (g1)->rect.x, 25);
90
91 ck_assert_int_eq (w1->rect.y, 30);
92 ck_assert_int_eq (w1->rect.x, 30);
93
94 ck_assert_int_eq (WIDGET (g2)->rect.y, 40);
95 ck_assert_int_eq (WIDGET (g2)->rect.x, 40);
96
97 ck_assert_int_eq (w2->rect.y, 55);
98 ck_assert_int_eq (w2->rect.x, 55);
99
100 group_remove_widget (w0);
101 group_remove_widget (g1);
102
103
104
105 ck_assert_int_eq (w0->rect.y, 1);
106 ck_assert_int_eq (w0->rect.x, 1);
107
108
109 ck_assert_int_eq (WIDGET (g1)->rect.y, 5);
110 ck_assert_int_eq (WIDGET (g1)->rect.x, 5);
111
112 ck_assert_int_eq (w1->rect.y, 10);
113 ck_assert_int_eq (w1->rect.x, 10);
114
115 ck_assert_int_eq (WIDGET (g2)->rect.y, 20);
116 ck_assert_int_eq (WIDGET (g2)->rect.x, 20);
117
118 ck_assert_int_eq (w2->rect.y, 35);
119 ck_assert_int_eq (w2->rect.x, 35);
120
121 widget_destroy (w0);
122 widget_destroy (WIDGET (g1));
123 widget_destroy (WIDGET (g0));
124 }
125
126 END_TEST
127
128
129
130
131 int
132 main (void)
133 {
134 TCase *tc_core;
135
136 tc_core = tcase_create ("Core");
137
138
139 tcase_add_test (tc_core, test_widget_make_global_local);
140
141
142 return mctest_run_all (tc_core);
143 }
144
145