aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2014-07-31 15:25:15 -0500
committerCharles Kerr <charles.kerr@canonical.com>2014-07-31 15:25:15 -0500
commite789710c2888b79e3abfbdcdda50d8334848ebc3 (patch)
tree4c80043902b12e19f35959363395cfc3fefa9643 /tests
parentaf1b645de9b8116ead5ad72583f51afe28350818 (diff)
downloadayatana-indicator-datetime-e789710c2888b79e3abfbdcdda50d8334848ebc3.tar.gz
ayatana-indicator-datetime-e789710c2888b79e3abfbdcdda50d8334848ebc3.tar.bz2
ayatana-indicator-datetime-e789710c2888b79e3abfbdcdda50d8334848ebc3.zip
add haptic feedback unit tests
Diffstat (limited to 'tests')
-rw-r--r--tests/test-snap.cpp33
1 files changed, 32 insertions, 1 deletions
diff --git a/tests/test-snap.cpp b/tests/test-snap.cpp
index 9a049fa..018d6f9 100644
--- a/tests/test-snap.cpp
+++ b/tests/test-snap.cpp
@@ -56,6 +56,8 @@ private:
protected:
+ static constexpr char const * HAPTIC_METHOD_VIBRATE {"Vibrate"};
+
static constexpr int SCREEN_COOKIE {8675309};
static constexpr char const * SCREEN_METHOD_KEEP_DISPLAY_ON {"keepDisplayOn"};
static constexpr char const * SCREEN_METHOD_REMOVE_DISPLAY_ON_REQUEST {"removeDisplayOnRequest"};
@@ -88,9 +90,11 @@ protected:
DbusTestDbusMock * notify_mock = nullptr;
DbusTestDbusMock * powerd_mock = nullptr;
DbusTestDbusMock * screen_mock = nullptr;
+ DbusTestDbusMock * haptic_mock = nullptr;
DbusTestDbusMockObject * notify_obj = nullptr;
DbusTestDbusMockObject * powerd_obj = nullptr;
DbusTestDbusMockObject * screen_obj = nullptr;
+ DbusTestDbusMockObject * haptic_obj = nullptr;
void SetUp()
{
@@ -235,9 +239,28 @@ protected:
"",
&error);
g_assert_no_error (error);
-
dbus_test_service_add_task(service, DBUS_TEST_TASK(screen_mock));
+ ///
+ /// Add the haptic mock
+ ///
+
+ haptic_mock = dbus_test_dbus_mock_new(BUS_HAPTIC_NAME);
+ haptic_obj = dbus_test_dbus_mock_get_object(haptic_mock,
+ BUS_HAPTIC_PATH,
+ BUS_HAPTIC_INTERFACE,
+ &error);
+
+ dbus_test_dbus_mock_object_add_method(haptic_mock,
+ haptic_obj,
+ HAPTIC_METHOD_VIBRATE,
+ G_VARIANT_TYPE("(u)"),
+ nullptr,
+ "",
+ &error);
+ g_assert_no_error (error);
+ dbus_test_service_add_task(service, DBUS_TEST_TASK(haptic_mock));
+
// start 'em up.
// make the system bus work off the mock bus too, since that's
@@ -259,6 +282,7 @@ protected:
virtual void TearDown()
{
+ g_clear_object(&haptic_mock);
g_clear_object(&screen_mock);
g_clear_object(&powerd_mock);
g_clear_object(&notify_mock);
@@ -392,6 +416,13 @@ TEST_F(SnapFixture, InhibitSleep)
nullptr,
&error));
+ // confirm that haptic feedback got called
+ EXPECT_TRUE (dbus_test_dbus_mock_object_check_method_call (haptic_mock,
+ haptic_obj,
+ HAPTIC_METHOD_VIBRATE,
+ nullptr,
+ &error));
+
// force-close the snap
wait_msec(100);
delete snap;