2017-08-18 02:27:42 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "backends/meta-monitor-manager-private.h"
|
2017-03-28 00:35:19 -04:00
|
|
|
#include "backends/meta-crtc.h"
|
2017-03-24 05:35:51 -04:00
|
|
|
#include "backends/meta-output.h"
|
2017-08-18 02:27:42 -04:00
|
|
|
#include "compositor/meta-plugin-manager.h"
|
2018-07-10 04:36:24 -04:00
|
|
|
#include "core/display-private.h"
|
2017-08-18 02:27:42 -04:00
|
|
|
#include "core/main-private.h"
|
|
|
|
#include "meta/main.h"
|
|
|
|
#include "tests/meta-backend-test.h"
|
|
|
|
#include "tests/meta-monitor-manager-test.h"
|
2018-07-12 16:20:20 -04:00
|
|
|
#include "tests/test-utils.h"
|
2017-08-18 02:27:42 -04:00
|
|
|
#include "wayland/meta-wayland.h"
|
|
|
|
|
|
|
|
#define ALL_TRANSFORMS ((1 << (META_MONITOR_TRANSFORM_FLIPPED_270 + 1)) - 1)
|
2019-05-17 18:35:30 -04:00
|
|
|
#define FRAME_WARNING "Frame has assigned frame counter but no frame drawn time"
|
2017-08-18 02:27:42 -04:00
|
|
|
|
|
|
|
static gboolean
|
|
|
|
run_tests (gpointer data)
|
|
|
|
{
|
|
|
|
MetaBackend *backend = meta_get_backend ();
|
|
|
|
MetaSettings *settings = meta_backend_get_settings (backend);
|
|
|
|
gboolean ret;
|
|
|
|
|
2019-05-17 18:35:30 -04:00
|
|
|
g_test_log_set_fatal_handler (NULL, NULL);
|
|
|
|
|
2017-08-18 02:27:42 -04:00
|
|
|
meta_settings_override_experimental_features (settings);
|
|
|
|
|
|
|
|
meta_settings_enable_experimental_feature (
|
|
|
|
settings,
|
|
|
|
META_EXPERIMENTAL_FEATURE_SCALE_MONITOR_FRAMEBUFFER);
|
|
|
|
|
|
|
|
ret = g_test_run ();
|
|
|
|
|
|
|
|
meta_quit (ret != 0);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2019-05-17 18:35:30 -04:00
|
|
|
static gboolean
|
|
|
|
ignore_frame_counter_warning (const gchar *log_domain,
|
|
|
|
GLogLevelFlags log_level,
|
|
|
|
const gchar *message,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
if ((log_level & G_LOG_LEVEL_WARNING) &&
|
|
|
|
g_strcmp0 (log_domain, "mutter") == 0 &&
|
|
|
|
g_str_has_suffix (message, FRAME_WARNING))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2017-08-18 02:27:42 -04:00
|
|
|
static void
|
|
|
|
meta_test_headless_start (void)
|
|
|
|
{
|
|
|
|
MetaBackend *backend = meta_get_backend ();
|
|
|
|
MetaMonitorManager *monitor_manager =
|
|
|
|
meta_backend_get_monitor_manager (backend);
|
2017-07-10 06:19:32 -04:00
|
|
|
GList *gpus;
|
|
|
|
MetaGpu *gpu;
|
2017-08-18 02:27:42 -04:00
|
|
|
|
2019-01-11 09:35:42 -05:00
|
|
|
gpus = meta_backend_get_gpus (backend);
|
2017-07-10 06:19:32 -04:00
|
|
|
g_assert_cmpint ((int) g_list_length (gpus), ==, 1);
|
|
|
|
|
|
|
|
gpu = gpus->data;
|
|
|
|
g_assert_null (meta_gpu_get_modes (gpu));
|
|
|
|
g_assert_null (meta_gpu_get_outputs (gpu));
|
|
|
|
g_assert_null (meta_gpu_get_crtcs (gpu));
|
2017-08-18 02:27:42 -04:00
|
|
|
g_assert_null (monitor_manager->monitors);
|
|
|
|
g_assert_null (monitor_manager->logical_monitors);
|
|
|
|
|
|
|
|
g_assert_cmpint (monitor_manager->screen_width,
|
|
|
|
==,
|
|
|
|
META_MONITOR_MANAGER_MIN_SCREEN_WIDTH);
|
|
|
|
g_assert_cmpint (monitor_manager->screen_height,
|
|
|
|
==,
|
|
|
|
META_MONITOR_MANAGER_MIN_SCREEN_HEIGHT);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_test_headless_monitor_getters (void)
|
|
|
|
{
|
|
|
|
MetaDisplay *display;
|
|
|
|
int index;
|
|
|
|
|
|
|
|
display = meta_get_display ();
|
|
|
|
|
2017-08-26 15:22:34 -04:00
|
|
|
index = meta_display_get_monitor_index_for_rect (display,
|
|
|
|
&(MetaRectangle) { 0 });
|
2017-08-18 02:27:42 -04:00
|
|
|
g_assert_cmpint (index, ==, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_test_headless_monitor_connect (void)
|
|
|
|
{
|
|
|
|
MetaBackend *backend = meta_get_backend ();
|
|
|
|
MetaMonitorManager *monitor_manager =
|
|
|
|
meta_backend_get_monitor_manager (backend);
|
|
|
|
MetaMonitorManagerTest *monitor_manager_test =
|
|
|
|
META_MONITOR_MANAGER_TEST (monitor_manager);
|
|
|
|
MetaMonitorTestSetup *test_setup;
|
|
|
|
MetaCrtcMode **modes;
|
2017-03-28 04:52:15 -04:00
|
|
|
MetaCrtcMode *crtc_mode;
|
2017-03-28 00:35:19 -04:00
|
|
|
MetaCrtc *crtc;
|
2017-08-18 02:27:42 -04:00
|
|
|
MetaCrtc **possible_crtcs;
|
2017-03-24 05:35:51 -04:00
|
|
|
MetaOutput *output;
|
2017-08-18 02:27:42 -04:00
|
|
|
GList *logical_monitors;
|
|
|
|
ClutterActor *stage;
|
|
|
|
|
|
|
|
test_setup = g_new0 (MetaMonitorTestSetup, 1);
|
2017-03-28 04:52:15 -04:00
|
|
|
|
|
|
|
crtc_mode = g_object_new (META_TYPE_CRTC_MODE, NULL);
|
|
|
|
crtc_mode->mode_id = 1;
|
|
|
|
crtc_mode->width = 1024;
|
|
|
|
crtc_mode->height = 768;
|
|
|
|
crtc_mode->refresh_rate = 60.0;
|
|
|
|
test_setup->modes = g_list_append (NULL, crtc_mode);
|
2017-08-18 02:27:42 -04:00
|
|
|
|
2017-03-28 00:35:19 -04:00
|
|
|
crtc = g_object_new (META_TYPE_CRTC, NULL);
|
|
|
|
crtc->crtc_id = 1;
|
|
|
|
crtc->all_transforms = ALL_TRANSFORMS;
|
|
|
|
test_setup->crtcs = g_list_append (NULL, crtc);
|
2017-08-18 02:27:42 -04:00
|
|
|
|
|
|
|
modes = g_new0 (MetaCrtcMode *, 1);
|
2017-03-28 04:52:15 -04:00
|
|
|
modes[0] = crtc_mode;
|
2017-08-18 02:27:42 -04:00
|
|
|
|
|
|
|
possible_crtcs = g_new0 (MetaCrtc *, 1);
|
2017-03-28 00:35:19 -04:00
|
|
|
possible_crtcs[0] = g_list_first (test_setup->crtcs)->data;
|
2017-08-18 02:27:42 -04:00
|
|
|
|
2017-03-24 05:35:51 -04:00
|
|
|
output = g_object_new (META_TYPE_OUTPUT, NULL);
|
|
|
|
output->winsys_id = 1;
|
|
|
|
output->name = g_strdup ("DP-1");
|
|
|
|
output->vendor = g_strdup ("MetaProduct's Inc.");
|
|
|
|
output->product = g_strdup ("MetaMonitor");
|
|
|
|
output->serial = g_strdup ("0x987654");
|
|
|
|
output->preferred_mode = modes[0];
|
|
|
|
output->n_modes = 1;
|
|
|
|
output->modes = modes;
|
|
|
|
output->n_possible_crtcs = 1;
|
|
|
|
output->possible_crtcs = possible_crtcs;
|
|
|
|
output->connector_type = META_CONNECTOR_TYPE_DisplayPort;
|
|
|
|
test_setup->outputs = g_list_append (NULL, output);
|
2017-08-18 02:27:42 -04:00
|
|
|
|
|
|
|
meta_monitor_manager_test_emulate_hotplug (monitor_manager_test, test_setup);
|
|
|
|
|
|
|
|
logical_monitors =
|
|
|
|
meta_monitor_manager_get_logical_monitors (monitor_manager);
|
|
|
|
g_assert_cmpint (g_list_length (logical_monitors), ==, 1);
|
|
|
|
|
|
|
|
g_assert_cmpint (monitor_manager->screen_width, ==, 1024);
|
|
|
|
g_assert_cmpint (monitor_manager->screen_height, ==, 768);
|
|
|
|
|
|
|
|
stage = meta_backend_get_stage (backend);
|
|
|
|
g_assert_cmpint (clutter_actor_get_width (stage), ==, 1024);
|
|
|
|
g_assert_cmpint (clutter_actor_get_height (stage), ==, 768);
|
|
|
|
}
|
|
|
|
|
|
|
|
static MetaMonitorTestSetup *
|
|
|
|
create_headless_test_setup (void)
|
|
|
|
{
|
|
|
|
return g_new0 (MetaMonitorTestSetup, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
init_tests (int argc, char **argv)
|
|
|
|
{
|
2020-02-25 04:18:22 -05:00
|
|
|
meta_monitor_manager_test_init_test_setup (create_headless_test_setup);
|
2017-08-18 02:27:42 -04:00
|
|
|
|
|
|
|
g_test_add_func ("/headless-start/start", meta_test_headless_start);
|
|
|
|
g_test_add_func ("/headless-start/monitor-getters",
|
|
|
|
meta_test_headless_monitor_getters);
|
|
|
|
g_test_add_func ("/headless-start/connect",
|
|
|
|
meta_test_headless_monitor_connect);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char *argv[])
|
|
|
|
{
|
2018-07-16 10:58:43 -04:00
|
|
|
test_init (&argc, &argv);
|
2017-08-18 02:27:42 -04:00
|
|
|
init_tests (argc, argv);
|
|
|
|
|
2018-07-12 16:20:20 -04:00
|
|
|
meta_plugin_manager_load (test_get_plugin_name ());
|
2017-08-18 02:27:42 -04:00
|
|
|
|
|
|
|
meta_override_compositor_configuration (META_COMPOSITOR_TYPE_WAYLAND,
|
|
|
|
META_TYPE_BACKEND_TEST);
|
|
|
|
|
|
|
|
meta_init ();
|
|
|
|
meta_register_with_session ();
|
|
|
|
|
2019-05-17 18:35:30 -04:00
|
|
|
g_test_log_set_fatal_handler (ignore_frame_counter_warning, NULL);
|
|
|
|
|
2017-08-18 02:27:42 -04:00
|
|
|
g_idle_add (run_tests, NULL);
|
|
|
|
|
|
|
|
return meta_run ();
|
|
|
|
}
|