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
|
/*
* Copyright © 2014 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 <gtest/gtest.h>
#include <gio/gio.h>
extern "C" {
#include "indicator-sound-service.h"
#include "vala-mocks.h"
}
class SoundMenuTest : public ::testing::Test
{
protected:
GTestDBus * bus = nullptr;
virtual void SetUp() {
bus = g_test_dbus_new(G_TEST_DBUS_NONE);
g_test_dbus_up(bus);
}
virtual void TearDown() {
g_test_dbus_down(bus);
g_clear_object(&bus);
}
};
TEST_F(SoundMenuTest, BasicObject) {
SoundMenu * menu = sound_menu_new (nullptr, SOUND_MENU_DISPLAY_FLAGS_NONE);
g_clear_object(&menu);
return;
}
TEST_F(SoundMenuTest, AddRemovePlayer) {
SoundMenu * menu = sound_menu_new (nullptr, SOUND_MENU_DISPLAY_FLAGS_NONE);
MediaPlayerTrack * track = media_player_track_new("Artist", "Title", "Album", "http://art.url");
MediaPlayerMock * media = MEDIA_PLAYER_MOCK(
g_object_new(TYPE_MEDIA_PLAYER_MOCK,
"mock-id", "player-id",
"mock-name", "Test Player",
"mock-state", "Playing",
"mock-is-running", TRUE,
"mock-can-raise", FALSE,
"mock-current-track", track,
NULL)
);
g_clear_object(&track);
sound_menu_add_player(menu, MEDIA_PLAYER(media));
/* TODO: Verify */
sound_menu_remove_player(menu, MEDIA_PLAYER(media));
/* TODO: Verify */
g_clear_object(&media);
g_clear_object(&menu);
return;
}
|