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 191 192 193 194 195
|
/*
* Copyright (C) 2020 Purism SPC
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
* Author: Guido Günther <agx@sigxcpu.org>
*/
#include "testlib.h"
#include "testlib-full-shell.h"
#include "fake-clock.h"
#include "log.h"
#include "shell-priv.h"
#include <handy.h>
#include <call-ui.h>
/**
* PhoshTestFullShellFixture:
*
* Test fixture for tests that want to run the full shell and
* compositor. If you only need a compositor see `PhocTestCompositorFixture`.
*/
GPid comp_pid;
static gboolean
stop_shell (gpointer unused)
{
g_debug ("Stopping shell");
gtk_main_quit ();
return G_SOURCE_REMOVE;
}
static void
kill_compositor (int signum)
{
kill (comp_pid, SIGTERM);
}
static gpointer
phosh_test_full_shell_thread (gpointer data)
{
PhoshShell *shell = NULL;
GLogLevelFlags flags;
PhoshTestFullShellFixture *fixture = (PhoshTestFullShellFixture *)data;
/* Fake the date/time to that of the initial commit to Phosh git repository.
* (sha d1cf1f02a3ff65331d755cb7bb4f765222f23354 = "Wed Jan 24 14:26:37 2018 +0100")
* This is apparently also "Belly Laugh Day", so there you go. */
g_autoptr (GDateTime) fake_offset = g_date_time_new_utc (2018, 1, 24, 13, 26, 37);
PhoshFakeClock*wall_clock = phosh_fake_clock_new (fake_offset);
g_autoptr (GtkCssProvider) provider = gtk_css_provider_new ();
/* compositor setup in thread since this invokes gdk already */
fixture->state = phosh_test_compositor_new (FALSE);
/* We assume only one compositor running at a given time */
comp_pid = fixture->state->pid;
signal (SIGTRAP, kill_compositor);
gtk_init (NULL, NULL);
hdy_init ();
cui_init (TRUE);
phosh_log_set_log_domains (fixture->log_domains);
/* Drop warnings from the fatal log mask since there's plenty
* when running without recommended DBus services */
flags = g_log_set_always_fatal (0);
g_log_set_always_fatal (flags & ~G_LOG_LEVEL_WARNING);
shell = phosh_shell_new ();
phosh_shell_set_default (shell);
phosh_wall_clock_set_default (PHOSH_WALL_CLOCK (wall_clock));
gtk_css_provider_load_from_resource (provider,
"/mobi/phosh/tests/screenshot-no-anim-overrides.css");
gtk_style_context_add_provider_for_screen (gdk_screen_get_default (),
GTK_STYLE_PROVIDER (provider),
GTK_STYLE_PROVIDER_PRIORITY_USER);
g_assert_false (phosh_shell_is_startup_finished (shell));
/* Process events to startup shell */
while (g_main_context_pending (NULL))
g_main_context_iteration (NULL, FALSE);
g_assert_true (phosh_shell_is_startup_finished (shell));
g_async_queue_push (fixture->queue, (gpointer)TRUE);
gtk_main ();
g_assert_finalize_object (wall_clock);
g_assert_finalize_object (shell);
cui_uninit ();
phosh_test_compositor_free (fixture->state);
/* Process events to tear down compositor */
while (g_main_context_pending (NULL))
g_main_context_iteration (NULL, FALSE);
phosh_log_set_log_domains (NULL);
return NULL;
}
PhoshTestFullShellFixtureCfg *
phosh_test_full_shell_fixture_cfg_new (const char *log_domains)
{
PhoshTestFullShellFixtureCfg *self = g_new0 (PhoshTestFullShellFixtureCfg, 1);
const char *domains;
domains = g_getenv ("G_MESSAGES_DEBUG");
if (domains != NULL && strlen (domains))
log_domains = domains;
if (log_domains)
self->log_domains = g_strdup (log_domains);
return self;
}
void
phosh_test_full_shell_fixture_cfg_dispose (PhoshTestFullShellFixtureCfg *self)
{
g_clear_pointer (&self->log_domains, g_free);
g_free (self);
}
/**
* phosh_test_full_shell_setup:
* @fixture: Test fixture
* @data: Data for test setup
*
* Sets up a test environment with compositor, own DBus session bus and running shell object. This
* function is meant to be used with g_test_add().
*/
void
phosh_test_full_shell_setup (PhoshTestFullShellFixture *fixture, gconstpointer data)
{
const PhoshTestFullShellFixtureCfg *cfg = data;
g_autoptr (GError) err = NULL;
fixture->bus = g_test_dbus_new (G_TEST_DBUS_NONE);
g_test_dbus_up (fixture->bus);
g_setenv ("NO_AT_BRIDGE", "1", TRUE);
fixture->tmpdir = g_dir_make_tmp ("phosh-test-comp.XXXXXX", &err);
g_assert_no_error (err);
g_setenv ("XDG_RUNTIME_DIR", fixture->tmpdir, TRUE);
if (cfg->log_domains)
fixture->log_domains = g_strdup (cfg->log_domains);
/* Run shell in a thread so we can sync call to the DBus interfaces */
fixture->queue = g_async_queue_new ();
fixture->comp_and_shell = g_thread_new ("comp-and-shell-thread", phosh_test_full_shell_thread, fixture);
}
/**
* phosh_test_full_shell_teardown:
* @fixture: Test fixture
* @unused: Data for test setup
*
* Tears down the test environment that was setup with
* phosh_test_full_shell_setup(). This function is meant to be used
* with g_test_add().
*/
void
phosh_test_full_shell_teardown (PhoshTestFullShellFixture *fixture, gconstpointer unused)
{
g_autoptr (GFile) file = g_file_new_for_path (fixture->tmpdir);
gdk_threads_add_idle (stop_shell, NULL);
g_thread_join (fixture->comp_and_shell);
g_async_queue_unref (fixture->queue);
g_test_dbus_down (fixture->bus);
signal (SIGTRAP, SIG_DFL);
phosh_test_remove_tree (file);
g_free (fixture->tmpdir);
g_free (fixture->log_domains);
}
|