mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 16:40:41 -05:00
bf54a16f92
Create a test system bus and use it to run all the tests, add a mock SensorsProxy (via dbusmock template) server that implements the net.hadess.SensorProxy interface. To make testing easier, the service is created on request of a proxy for it, whose lifetime controls the mock service lifetime as well. This is done using a further mock service that is used to manage the others, using python-dbusmock to simplify the handling. Add basic tests for the orientation manager. As per the usage dbusmock, we're now launching all the tests under such wrapper, so that local dbus environment won't ever considered, and there's no risk that it may affect the tests results both locally and in CI. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1233>
42 lines
1.5 KiB
C
42 lines
1.5 KiB
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
/*
|
|
* Copyright (C) 2020 Canonical, Ltd.
|
|
*
|
|
* 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/>.
|
|
*
|
|
* Author: Marco Trevisan <marco.trevisan@canonical.com>
|
|
*/
|
|
|
|
#ifndef META_SENSORS_PROXY_MOCK_H
|
|
#define META_SENSORS_PROXY_MOCK_H
|
|
|
|
#include "backends/meta-orientation-manager.h"
|
|
|
|
typedef GDBusProxy MetaSensorsProxyMock;
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC (MetaSensorsProxyMock, g_object_unref)
|
|
|
|
META_EXPORT
|
|
MetaSensorsProxyMock * meta_sensors_proxy_mock_get (void);
|
|
|
|
META_EXPORT
|
|
void meta_sensors_proxy_mock_set_property (MetaSensorsProxyMock *proxy,
|
|
const gchar *property_name,
|
|
GVariant *value);
|
|
|
|
META_EXPORT
|
|
void meta_sensors_proxy_mock_set_orientation (MetaSensorsProxyMock *proxy,
|
|
MetaOrientation orientation);
|
|
|
|
#endif /* META_SENSORS_PROXY_MOCK_H */
|