mirror of
https://github.com/brl/mutter.git
synced 2024-11-27 10:30:47 -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>
52 lines
1.6 KiB
C
52 lines
1.6 KiB
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
/*
|
|
* Copyright (C) 2017 Red Hat
|
|
*
|
|
* 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, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
* 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef META_ORIENTATION_MANAGER_H
|
|
#define META_ORIENTATION_MANAGER_H
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include "core/util-private.h"
|
|
|
|
typedef enum
|
|
{
|
|
META_ORIENTATION_UNDEFINED,
|
|
META_ORIENTATION_NORMAL,
|
|
META_ORIENTATION_BOTTOM_UP,
|
|
META_ORIENTATION_LEFT_UP,
|
|
META_ORIENTATION_RIGHT_UP
|
|
} MetaOrientation;
|
|
#define META_N_ORIENTATIONS (META_ORIENTATION_RIGHT_UP + 1)
|
|
|
|
#define META_TYPE_ORIENTATION_MANAGER (meta_orientation_manager_get_type ())
|
|
|
|
META_EXPORT_TEST
|
|
G_DECLARE_FINAL_TYPE (MetaOrientationManager, meta_orientation_manager,
|
|
META, ORIENTATION_MANAGER, GObject)
|
|
|
|
META_EXPORT_TEST
|
|
MetaOrientation meta_orientation_manager_get_orientation (MetaOrientationManager *self);
|
|
|
|
META_EXPORT_TEST
|
|
gboolean meta_orientation_manager_has_accelerometer (MetaOrientationManager *self);
|
|
|
|
#endif /* META_ORIENTATION_MANAGER_H */
|