aboutsummaryrefslogtreecommitdiff
path: root/tests/notifications-test.cc
blob: 2aff7aec71d97443880546c187db9d947c4012ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/*
 * Copyright © 2015 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; version 3.
 *
 * 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/>.
 *
 * Authors:
 *      Ted Gould <ted@canonical.com>
 */

#include <memory>

#include <gtest/gtest.h>
#include <gio/gio.h>
#include <libdbustest/dbus-test.h>
#include <libnotify/notify.h>

#include "notifications-mock.h"
#include "gtest-gvariant.h"

extern "C" {
#include "indicator-sound-service.h"
#include "vala-mocks.h"
}

class NotificationsTest : public ::testing::Test
{
	protected:
		DbusTestService * service = NULL;

		GDBusConnection * session = NULL;
		std::shared_ptr<NotificationsMock> notifications;

		virtual void SetUp() {
			g_setenv("GSETTINGS_SCHEMA_DIR", SCHEMA_DIR, TRUE);
			g_setenv("GSETTINGS_BACKEND", "memory", TRUE);

			service = dbus_test_service_new(NULL);
			dbus_test_service_set_bus(service, DBUS_TEST_SERVICE_BUS_SESSION);

			/* Useful for debugging test failures, not needed all the time (until it fails) */
			#if 0
			auto bustle = std::shared_ptr<DbusTestTask>([]() {
				DbusTestTask * bustle = DBUS_TEST_TASK(dbus_test_bustle_new("notifications-test.bustle"));
				dbus_test_task_set_name(bustle, "Bustle");
				dbus_test_task_set_bus(bustle, DBUS_TEST_SERVICE_BUS_SESSION);
				return bustle;
			}(), [](DbusTestTask * bustle) {
				g_clear_object(&bustle);
			});
			dbus_test_service_add_task(service, bustle.get());
			#endif

			notifications = std::make_shared<NotificationsMock>();

			dbus_test_service_add_task(service, (DbusTestTask*)*notifications);
			dbus_test_service_start_tasks(service);

			session = g_bus_get_sync(G_BUS_TYPE_SESSION, NULL, NULL);
			ASSERT_NE(nullptr, session);
			g_dbus_connection_set_exit_on_close(session, FALSE);
			g_object_add_weak_pointer(G_OBJECT(session), (gpointer *)&session);

			/* This is done in main.c */
			notify_init("indicator-sound");
		}

		virtual void TearDown() {
			if (notify_is_initted())
				notify_uninit();

			notifications.reset();
			g_clear_object(&service);

			g_object_unref(session);

			unsigned int cleartry = 0;
			while (session != NULL && cleartry < 100) {
				loop(100);
				cleartry++;
			}

			ASSERT_EQ(nullptr, session);
		}

		static gboolean timeout_cb (gpointer user_data) {
			GMainLoop * loop = static_cast<GMainLoop *>(user_data);
			g_main_loop_quit(loop);
			return G_SOURCE_REMOVE;
		}

		void loop (unsigned int ms) {
			GMainLoop * loop = g_main_loop_new(NULL, FALSE);
			g_timeout_add(ms, timeout_cb, loop);
			g_main_loop_run(loop);
			g_main_loop_unref(loop);
		}

		static int unref_idle (gpointer user_data) {
			g_variant_unref(static_cast<GVariant *>(user_data));
			return G_SOURCE_REMOVE;
		}

		std::shared_ptr<MediaPlayerList> playerListMock () {
			auto playerList = std::shared_ptr<MediaPlayerList>(
				MEDIA_PLAYER_LIST(media_player_list_mock_new()),
				[](MediaPlayerList * list) {
					g_clear_object(&list);
				});
			return playerList;
		}

		std::shared_ptr<VolumeControl> volumeControlMock () {
			auto volumeControl = std::shared_ptr<VolumeControl>(
				VOLUME_CONTROL(volume_control_mock_new()),
				[](VolumeControl * control){
					g_clear_object(&control);
				});
			return volumeControl;
		}

		std::shared_ptr<IndicatorSoundService> standardService (std::shared_ptr<VolumeControl> volumeControl, std::shared_ptr<MediaPlayerList> playerList) {
			auto soundService = std::shared_ptr<IndicatorSoundService>(
				indicator_sound_service_new(playerList.get(), volumeControl.get(), nullptr),
				[](IndicatorSoundService * service){
					g_clear_object(&service);
				});

			return soundService;
		}
};

TEST_F(NotificationsTest, BasicObject) {
	auto soundService = standardService(volumeControlMock(), playerListMock());

	/* Give some time settle */
	loop(50);

	/* Auto free */
}

TEST_F(NotificationsTest, VolumeChanges) {
	auto volumeControl = volumeControlMock();
	auto soundService = standardService(volumeControl, playerListMock());

	/* Set a volume */
	notifications->clearNotifications();
	volume_control_set_volume(volumeControl.get(), 50.0);
	loop(50);
	auto notev = notifications->getNotifications();
	ASSERT_EQ(1, notev.size());
	EXPECT_EQ("indicator-sound", notev[0].app_name);
	EXPECT_EQ("Volume", notev[0].summary);
	EXPECT_EQ(0, notev[0].actions.size());
	EXPECT_GVARIANT_EQ("@s 'true'", notev[0].hints["x-canonical-private-synchronous"]);
	EXPECT_GVARIANT_EQ("@i 5000", notev[0].hints["value"]);

	/* Set a different volume */
	notifications->clearNotifications();
	volume_control_set_volume(volumeControl.get(), 60.0);
	loop(50);
	notev = notifications->getNotifications();
	ASSERT_EQ(1, notev.size());
	EXPECT_GVARIANT_EQ("@i 6000", notev[0].hints["value"]);

	/* Set the same volume */
	notifications->clearNotifications();
	volume_control_set_volume(volumeControl.get(), 60.0);
	loop(50);
	notev = notifications->getNotifications();
	ASSERT_EQ(0, notev.size());

	/* Change just a little */
	notifications->clearNotifications();
	volume_control_set_volume(volumeControl.get(), 60.001);
	loop(50);
	notev = notifications->getNotifications();
	ASSERT_EQ(0, notev.size());
}