aboutsummaryrefslogtreecommitdiff
path: root/tests/check_test.c
blob: c82c4387a52a530ce2670a5b8647116cd8a4fadc (plain)
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
/*
 * 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 <stdio.h>
#include <stdlib.h>
#include <X11/Xlibint.h>
#include <gtk/gtk.h>
#include <check.h>
#include <gconf/gconf-client.h>

#include "test_suites.h"

/* Define environment checking results defines */
#define ENVIRONMENT_X_ERROR       1
#define ENVIRONMENT_MAEMO_ERROR   2
#define ENVIRONMENT_OK            3

/* This is used for the Gconf availability check */
#define GCONF_TEST_PATH "/hildon/tests/flag"

/* ------------------------ Helper functions ------------------------ */

/**
 * Creates the list of suites to be run.
 */
static SRunner *
configure_tests(gint environment)
{
  SRunner *sr;
  
  /* Create srunner object with the first test suite */

  sr = srunner_create(create_hildon_caption_suite());
#ifndef HILDON_DISABLE_DEPRECATED
  srunner_add_suite(sr, create_hildon_number_editor_suite());
  srunner_add_suite(sr, create_hildon_time_editor_suite());
  srunner_add_suite(sr, create_hildon_time_picker_suite());
  srunner_add_suite(sr, create_hildon_date_editor_suite());
  srunner_add_suite(sr, create_hildon_weekday_picker_suite());
  srunner_add_suite(sr, create_hildon_controlbar_suite());
  srunner_add_suite(sr, create_hildon_color_button_suite());
  srunner_add_suite(sr, create_hildon_color_chooser_suite());
  srunner_add_suite(sr, create_hildon_seekbar_suite());
  /* srunner_add_suite(sr, create_hildon_dialoghelp_suite()); */
  srunner_add_suite(sr, create_hildon_calendar_popup_suite());
  srunner_add_suite(sr, create_hildon_range_editor_suite());
  /* srunner_add_suite(sr, create_hildon_name_password_dialog_suite());
  srunner_add_suite(sr, create_hildon_get_password_dialog_suite());
  srunner_add_suite(sr, create_hildon_set_password_dialog_suite()); */
  srunner_add_suite(sr, create_hildon_sort_dialog_suite());
  srunner_add_suite(sr, create_hildon_code_dialog_suite());
  srunner_add_suite(sr, create_hildon_volumebar_suite());
  srunner_add_suite(sr, create_hildon_volumebar_range_suite());
  srunner_add_suite(sr, create_hildon_font_selection_dialog_suite());
#endif /* HILDON_DISABLE_DEPRECATED */

  srunner_add_suite(sr, create_hildon_find_toolbar_suite());
  srunner_add_suite(sr, create_hildon_note_suite());
  srunner_add_suite(sr, create_hildon_wizard_dialog_suite());
  /* srunner_add_suite(sr, create_hildon_scroll_area_suite()); */
#ifndef HILDON_DISABLE_DEPRECATED
  /* HildonBanner is not deprecated, but all the functions tested in
     this suite are deprecated*/
  srunner_add_suite(sr, create_hildon_banner_suite());
#endif
  srunner_add_suite(sr, create_hildon_window_suite());
  srunner_add_suite(sr, create_hildon_helper_suite());
  srunner_add_suite(sr, create_hildon_picker_button_suite());

  /* Disable tests that need maemo environment to be up if it is not running */
  if (environment != ENVIRONMENT_MAEMO_ERROR)
    {
      /* srunner_add_suite(sr, create_hildon_system_sound_suite()); */
      /* srunner_add_suite(sr, create_hildon_color_selector_suite()); */
      srunner_add_suite(sr, create_hildon_program_suite());
    }
 
  return sr;
}


/**
 * Checks environment configuration for tests execution
 */
static gint 
check_environment()
{
  Display *display = NULL;
  GConfClient *client = NULL;
  GError *gconf_error = NULL;

  /* Check X server availability */
  if ((display = XOpenDisplay(NULL)) == NULL)
    return ENVIRONMENT_X_ERROR;
  else
    XCloseDisplay(display);

  /* Check maemo environment is up. We do this checking gconf is available */
  g_type_init();
  client = gconf_client_get_default();
  gconf_client_get(client, GCONF_TEST_PATH ,&gconf_error);
  if (gconf_error)
    return ENVIRONMENT_MAEMO_ERROR;

  /* Environment is ok */
  return ENVIRONMENT_OK;
}

/**
 * --------------------------------------------------------------------------
 * Main program
 * --------------------------------------------------------------------------
 */
int main(void)
{
  int nf = 0;
  gint environment = 0;

  /* Show test start header */
  printf("\n");
  printf("******************************************************************\n");
  printf(" Executing hildon-libs unit tests.... \n");
  printf("******************************************************************\n\n");

  /* Check environment is ok to run the tests */
  environment = check_environment();
  if (environment == ENVIRONMENT_X_ERROR)
    {
      printf("\n-------------------------- ERROR ------------------------------------");
      printf("\nNo X server found. Check you have an X server up and running and the");
      printf("\nDISPLAY environment variable set properly.");
      printf("\n---------------------------------------------------------------------\n");
      return EXIT_FAILURE;
    }
  else if (environment == ENVIRONMENT_MAEMO_ERROR)
    {
      printf("\n------------------------- WARNING -----------------------------------");
      printf("\nMaemo environment is not running. Some tests that depend on Gconf and");
      printf("\nDbus will be disabled. To fix this you should startup the environment");
      printf("\nexecuting \"af-sb-init.sh start\" before running the tests.");
      printf("\n---------------------------------------------------------------------\n");
    }

  /* Configure test suites to be executed */
  SRunner *sr = configure_tests(environment);

  /* Run tests */
  srunner_run_all(sr, CK_NORMAL);//CK_VERBOSE);

  /* Retrieve number of failed tests */
  nf = srunner_ntests_failed(sr);

  /* Free resouces */
  srunner_free(sr);

  /* Return global success or failure */
  return (nf == 0) ? EXIT_SUCCESS : EXIT_FAILURE; 
}