summaryrefslogtreecommitdiff
path: root/test/run-tests.c
blob: b9ce062c22039d3e3b163ccd3f037fbf53b24b14 (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
/* Copyright 2013 Endless Mobile, Inc. */

#include <glib-object.h>
#include <glib.h>
#include <gtk/gtk.h>
#include <endless/endless.h>

#include "run-tests.h"

/* Test fixture for running a test from an EosApplication's "startup" handler */
void
app_window_test_fixture_setup (AppWindowTestFixture *fixture,
                               gconstpointer callback)
{
  fixture->app = eos_application_new (TEST_APPLICATION_ID, 0);
  g_signal_connect(fixture->app, "startup", G_CALLBACK (callback),
                   NULL);
}

void
app_window_test_fixture_test (AppWindowTestFixture *fixture,
                              gconstpointer unused)
{
  g_application_run (G_APPLICATION (fixture->app), 0, NULL);
}

void
app_window_test_fixture_teardown (AppWindowTestFixture *fixture,
                                  gconstpointer unused)
{
  g_object_unref (fixture->app);
}


static void
add_widget_to_list_cb (GtkWidget *widget,
                       gpointer   data)
{
  GList **list = (GList**) data;
  *list = g_list_append (*list, widget);
}

GList *
container_get_all_children (GtkContainer *container)
{
  GList *children = NULL;
  gtk_container_forall (container,
                        add_widget_to_list_cb,
                        &children);
  return children;
}

static GtkWidget *
container_find_descendant_with_type_recurse (GtkWidget *widget,
                                             GType type)
{
  if (G_TYPE_CHECK_INSTANCE_TYPE (widget, type))
    return widget;
  if (GTK_IS_CONTAINER (widget))
    {
      GList *children = container_get_all_children (GTK_CONTAINER (widget));
      for (guint i = 0; i < g_list_length (children); i++)
        {
          GtkWidget *descendant = container_find_descendant_with_type_recurse (g_list_nth_data (children, i),
                                                                               type);
          if (descendant != NULL)
            return descendant;
        }
    }
  return NULL;
}

/* Query all the descendants of container, return the first found of the desired
 type, or null*/
GtkWidget *
container_find_descendant_with_type (GtkContainer *container,
                                     GType type)
{
  return container_find_descendant_with_type_recurse (GTK_WIDGET (container), type);
}

int
main (int    argc,
      char **argv)
{
  g_test_init (&argc, &argv, NULL);
  gtk_init (&argc, &argv);

  add_init_tests ();
  add_hello_tests ();
  add_application_tests ();
  add_window_tests ();
  add_page_manager_tests ();
  add_splash_page_manager_tests ();
  add_action_menu_tests ();

  return g_test_run ();
}