aboutsummaryrefslogtreecommitdiff
path: root/tests/test-sound.cpp
diff options
context:
space:
mode:
authorArthur Mello <arthur.mello@canonical.com>2016-06-23 16:04:50 -0300
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-08-29 14:37:39 +0200
commitf3f17677a2718fb47cda50cd6c64c9650448ea2e (patch)
tree3bba3d8d41defbd53e3c77bac752c2c6fa78dc96 /tests/test-sound.cpp
parent525a38eb600292ffb764f6b5de058f9ba6ddd2b8 (diff)
downloadayatana-indicator-datetime-f3f17677a2718fb47cda50cd6c64c9650448ea2e.tar.gz
ayatana-indicator-datetime-f3f17677a2718fb47cda50cd6c64c9650448ea2e.tar.bz2
ayatana-indicator-datetime-f3f17677a2718fb47cda50cd6c64c9650448ea2e.zip
Set calendar notification settings to true in case GSettings schema is not available Make sure calendar notification settings are correct during tests
Diffstat (limited to 'tests/test-sound.cpp')
-rw-r--r--tests/test-sound.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/test-sound.cpp b/tests/test-sound.cpp
index 9dbd212..f808db6 100644
--- a/tests/test-sound.cpp
+++ b/tests/test-sound.cpp
@@ -59,6 +59,12 @@ TEST_F(NotificationFixture, InteractiveDuration)
auto sb = std::make_shared<ayatana::indicator::notifications::DefaultSoundBuilder>();
auto snap = create_snap(ne, sb, settings);
+ settings->cal_notification_enabled.set(true);
+ settings->cal_notification_sounds.set(true);
+ settings->cal_notification_vibrations.set(true);
+ settings->cal_notification_bubbles.set(true);
+ settings->cal_notification_list.set(true);
+
make_interactive();
// call the Snap Decision
@@ -150,6 +156,12 @@ TEST_F(NotificationFixture,DefaultSounds)
auto sb = std::make_shared<TestSoundBuilder>();
auto func = [this](const Appointment&, const Alarm&, const Snap::Response&){g_idle_add(quit_idle, loop);};
+ settings->cal_notification_enabled.set(true);
+ settings->cal_notification_sounds.set(true);
+ settings->cal_notification_vibrations.set(true);
+ settings->cal_notification_bubbles.set(true);
+ settings->cal_notification_list.set(true);
+
const struct {
Appointment appointment;
std::string expected_role;