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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
|
/*
* This file is a part of hildon tests
*
* Copyright (C) 2006, 2007 Nokia Corporation, all rights reserved.
*
* Contact: Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; version 2.1 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*
*/
#include <stdlib.h>
#include <check.h>
#include <gtk/gtkmain.h>
#include <gtk/gtklabel.h>
#include "test_suites.h"
#include "hildon-helper.h"
/* -------------------- Fixtures -------------------- */
static void
fx_setup_default_helper ()
{
int argc = 0;
gtk_init(&argc, NULL);
}
static void
fx_teardown_default_helper ()
{
}
/* -------------------- Test cases -------------------- */
/* ----- Test case for hildon_helper_set_logical_font -----*/
/**
* Purpose: test setting a new logical font to a GtkWidget
* Cases considered:
* - Set the font name "TimesNewRoman"
*/
START_TEST (test_hildon_helper_set_logical_font_regular)
{
GtkWidget *label = NULL;
gulong signum = G_MAXULONG;
label = gtk_label_new ("test label");
signum = hildon_helper_set_logical_font (label, "TimesNewRoman");
gtk_widget_destroy (GTK_WIDGET (label));
fail_if (signum <= 0,
"hildon-helper: the returned signal id is %ul and should be > 0",
signum);
}
END_TEST
/**
* Purpose: test setting a logical font with invalid parameters
* Cases considered:
* - Set the font name "TimesNewRoman" to a NULL Widget
* - Set a NULL font name to a valid Widget
*/
START_TEST (test_hildon_helper_set_logical_font_invalid)
{
GtkWidget *label = NULL;
gulong signum = G_MAXULONG;
/* Test 1 */
signum = hildon_helper_set_logical_font (NULL, "TimesNewRoman");
fail_if (signum != 0,
"hildon-helper: the returned signal id is %ul and should be 0",
signum);
/* Test 2 */
label = gtk_label_new ("test label");
signum = hildon_helper_set_logical_font (label, NULL);
gtk_widget_destroy (GTK_WIDGET (label));
fail_if (signum != 0,
"hildon-helper: the returned signal id is %ul and should be 0",
signum);
}
END_TEST
/* ----- Test case for hildon_helper_set_logical_color -----*/
/**
* Purpose: test setting a new logical color to a GtkWidget
* Cases considered:
* - Set the logical color "Blue"
*/
START_TEST (test_hildon_helper_set_logical_color_regular)
{
GtkWidget *label = NULL;
gulong signum = G_MAXULONG;
label = gtk_label_new ("test label");
signum = hildon_helper_set_logical_color (label,
GTK_RC_BG,
GTK_STATE_NORMAL,
"Blue");
gtk_widget_destroy (GTK_WIDGET (label));
fail_if (signum <= 0,
"hildon-helper: the returned signal id is %ul and should be > 0",
signum);
}
END_TEST
/**
* Purpose: test setting a logical color with invalid parameters
* Cases considered:
* - Set the color name "Blue" to a NULL Widget
* - Set a NULL color name to a valid Widget
*/
START_TEST (test_hildon_helper_set_logical_color_invalid)
{
GtkWidget *label = NULL;
gulong signum = G_MAXULONG;
/* Test 1 */
signum = hildon_helper_set_logical_color (NULL,
GTK_RC_BG,
GTK_STATE_NORMAL,
"Blue");
fail_if (signum != 0,
"hildon-helper: the returned signal id is %ul and should be 0",
signum);
/* Create the widget */
label = gtk_label_new ("test label");
/* Test 2 */
signum = hildon_helper_set_logical_color (label,
GTK_RC_BG,
GTK_STATE_NORMAL,
NULL);
gtk_widget_destroy (GTK_WIDGET (label));
fail_if (signum != 0,
"hildon-helper: the returned signal id is %ul and should be 0",
signum);
}
END_TEST
/* ---------- Suite creation ---------- */
Suite *create_hildon_helper_suite()
{
/* Create the suite */
Suite *s = suite_create("Hildonhelper");
/* Create test cases */
TCase *tc1 = tcase_create("hildon_helper_set_logical_font");
TCase *tc2 = tcase_create("hildon_helper_set_logical_color");
/* Create test case for set_logical_font and add it to the suite */
tcase_add_checked_fixture(tc1, fx_setup_default_helper, fx_teardown_default_helper);
tcase_add_test(tc1, test_hildon_helper_set_logical_font_regular);
tcase_add_test(tc1, test_hildon_helper_set_logical_font_invalid);
suite_add_tcase (s, tc1);
/* Create test case for set_logical_color and add it to the suite */
tcase_add_checked_fixture(tc2, fx_setup_default_helper, fx_teardown_default_helper);
tcase_add_test(tc2, test_hildon_helper_set_logical_color_regular);
tcase_add_test(tc2, test_hildon_helper_set_logical_color_invalid);
suite_add_tcase (s, tc2);
/* Return created suite */
return s;
}
|