Changing the license headers and all the licesing stuff to LGPL version 2 OR LATER.
[hildon] / tests / check_test.c
1 /*
2  * This file is a part of hildon tests
3  *
4  * Copyright (C) 2006, 2007 Nokia Corporation, all rights reserved.
5  *
6  * Contact: Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; version 2.1 of
11  * the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  *
23  */
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <X11/Xlibint.h>
28 #include <gtk/gtk.h>
29 #include <check.h>
30 #include <gconf/gconf-client.h>
31
32 #include "test_suites.h"
33
34 /* Define environment checking results defines */
35 #define ENVIRONMENT_X_ERROR       1
36 #define ENVIRONMENT_MAEMO_ERROR   2
37 #define ENVIRONMENT_OK            3
38
39 /* This is used for the Gconf availability check */
40 #define GCONF_TEST_PATH "/hildon/tests/flag"
41
42 /* ------------------------ Helper functions ------------------------ */
43
44 /**
45  * Creates the list of suites to be run.
46  */
47 static SRunner *
48 configure_tests(gint environment)
49 {
50   SRunner *sr;
51   
52   /* Create srunner object with the first test suite */
53   sr = srunner_create(create_hildon_range_editor_suite());
54   srunner_add_suite(sr, create_hildon_number_editor_suite());
55   srunner_add_suite(sr, create_hildon_time_editor_suite());
56   srunner_add_suite(sr, create_hildon_time_picker_suite());
57   srunner_add_suite(sr, create_hildon_date_editor_suite());
58   srunner_add_suite(sr, create_hildon_weekday_picker_suite());
59   srunner_add_suite(sr, create_hildon_controlbar_suite());
60   srunner_add_suite(sr, create_hildon_color_button_suite());
61   srunner_add_suite(sr, create_hildon_color_chooser_suite());
62   srunner_add_suite(sr, create_hildon_seekbar_suite());
63   /* srunner_add_suite(sr, create_hildon_dialoghelp_suite()); */
64   srunner_add_suite(sr, create_hildon_calendar_popup_suite());
65   srunner_add_suite(sr, create_hildon_caption_suite());
66   srunner_add_suite(sr, create_hildon_helper_suite());
67   srunner_add_suite(sr, create_hildon_find_toolbar_suite());
68   /* srunner_add_suite(sr, create_hildon_name_password_dialog_suite());
69   srunner_add_suite(sr, create_hildon_get_password_dialog_suite());
70   srunner_add_suite(sr, create_hildon_set_password_dialog_suite()); */
71   srunner_add_suite(sr, create_hildon_sort_dialog_suite());
72   srunner_add_suite(sr, create_hildon_code_dialog_suite());
73   srunner_add_suite(sr, create_hildon_note_suite());
74   srunner_add_suite(sr, create_hildon_volumebar_suite());
75   srunner_add_suite(sr, create_hildon_volumebar_range_suite());
76   srunner_add_suite(sr, create_hildon_wizard_dialog_suite());
77   /* srunner_add_suite(sr, create_hildon_scroll_area_suite()); */
78   srunner_add_suite(sr, create_hildon_banner_suite());
79   srunner_add_suite(sr, create_hildon_font_selection_dialog_suite());
80   srunner_add_suite(sr, create_hildon_window_suite());
81
82   /* Disable tests that need maemo environment to be up if it is not running */
83   if (environment != ENVIRONMENT_MAEMO_ERROR)
84     {
85       /* srunner_add_suite(sr, create_hildon_system_sound_suite()); */
86       /* srunner_add_suite(sr, create_hildon_color_selector_suite()); */
87       srunner_add_suite(sr, create_hildon_program_suite());
88     }
89  
90   return sr;
91 }
92
93
94 /**
95  * Checks environment configuration for tests execution
96  */
97 static gint 
98 check_environment()
99 {
100   Display *display = NULL;
101   GConfClient *client = NULL;
102   GError *gconf_error = NULL;
103
104   /* Check X server availability */
105   if ((display = XOpenDisplay(NULL)) == NULL)
106     return ENVIRONMENT_X_ERROR;
107   else
108     XCloseDisplay(display);
109
110   /* Check maemo environment is up. We do this checking gconf is available */
111   g_type_init();
112   client = gconf_client_get_default();
113   gconf_client_get(client, GCONF_TEST_PATH ,&gconf_error);
114   if (gconf_error)
115     return ENVIRONMENT_MAEMO_ERROR;
116
117   /* Environment is ok */
118   return ENVIRONMENT_OK;
119 }
120
121 /**
122  * --------------------------------------------------------------------------
123  * Main program
124  * --------------------------------------------------------------------------
125  */
126 int main(void)
127 {
128   int nf = 0;
129   gint environment = 0;
130
131   /* Show test start header */
132   printf("\n");
133   printf("******************************************************************\n");
134   printf(" Executing hildon-libs unit tests.... \n");
135   printf("******************************************************************\n\n");
136
137   /* Check environment is ok to run the tests */
138   environment = check_environment();
139   if (environment == ENVIRONMENT_X_ERROR)
140     {
141       printf("\n-------------------------- ERROR ------------------------------------");
142       printf("\nNo X server found. Check you have an X server up and running and the");
143       printf("\nDISPLAY environment variable set properly.");
144       printf("\n---------------------------------------------------------------------\n");
145       return EXIT_FAILURE;
146     }
147   else if (environment == ENVIRONMENT_MAEMO_ERROR)
148     {
149       printf("\n------------------------- WARNING -----------------------------------");
150       printf("\nMaemo environment is not running. Some tests that depend on Gconf and");
151       printf("\nDbus will be disabled. To fix this you should startup the environment");
152       printf("\nexecuting \"af-sb-init.sh start\" before running the tests.");
153       printf("\n---------------------------------------------------------------------\n");
154     }
155
156   /* Configure test suites to be executed */
157   SRunner *sr = configure_tests(environment);
158
159   /* Run tests */
160   srunner_run_all(sr, CK_NORMAL);//CK_VERBOSE);
161
162   /* Retrieve number of failed tests */
163   nf = srunner_ntests_failed(sr);
164
165   /* Free resouces */
166   srunner_free(sr);
167
168   /* Return global success or failure */
169   return (nf == 0) ? EXIT_SUCCESS : EXIT_FAILURE; 
170 }