aboutsummaryrefslogtreecommitdiff
path: root/tests/sound-menu.cc
blob: e8ba2f9e69c462c533d70383ce49bcad7a3bc9cb (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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
/*
 * 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);
        }

        void verify_item_attribute (GMenuModel * mm, guint index, const gchar * name, GVariant * value) {
            g_variant_ref_sink(value);

            gchar * variantstr = g_variant_print(value, TRUE);
            g_debug("Expecting item %d to have a '%s' attribute: %s", index, name, variantstr);

            const GVariantType * type = g_variant_get_type(value);
            GVariant * itemval = g_menu_model_get_item_attribute_value(mm, index, name, type);

            ASSERT_NE(nullptr, itemval);
            EXPECT_TRUE(g_variant_equal(itemval, value));

            g_variant_unref(value);
        }

        void verify_item_attribute_is_not_set(GMenuModel * mm, guint index, const gchar * name, const GVariantType * type) {
            GVariant * itemval = g_menu_model_get_item_attribute_value(mm, index, name, type);
            EXPECT_EQ(itemval, nullptr);
        }

        void check_player_control_buttons(bool canPlay, bool canNext, bool canPrev)
        {
            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,
                    "mock-can-do-play", canPlay,
                    "mock-can-do-next", canNext,
                    "mock-can-do-prev", canPrev,
                    NULL)
            );
            g_clear_object(&track);

            sound_menu_add_player(menu, MEDIA_PLAYER(media));

            ASSERT_NE(nullptr, menu->menu);
            EXPECT_EQ(2, g_menu_model_get_n_items(G_MENU_MODEL(menu->menu)));

            GMenuModel * section = g_menu_model_get_item_link(G_MENU_MODEL(menu->menu), 1, G_MENU_LINK_SECTION);
            ASSERT_NE(nullptr, section);
            EXPECT_EQ(2, g_menu_model_get_n_items(section)); /* No playlists, so two items */

            /* Player display */
            verify_item_attribute(section, 0, "action", g_variant_new_string("indicator.player-id"));
            verify_item_attribute(section, 0, "x-ayatana-type", g_variant_new_string("org.ayatana.indicator.media-player"));

            /* Player control */
            verify_item_attribute(section, 1, "x-ayatana-type", g_variant_new_string("org.ayatana.indicator.playback-item"));
        //verify_item_attribute(section, 1, "x-ayatana-play-action", g_variant_new_string(""));
        if (!canPlay) {
                verify_item_attribute_is_not_set(section, 1, "x-ayatana-play-action", G_VARIANT_TYPE_STRING);
        } else {
            verify_item_attribute(section, 1, "x-ayatana-play-action", g_variant_new_string("indicator.play.player-id"));
        }
        if (!canNext) {
                verify_item_attribute_is_not_set(section, 1, "x-ayatana-next-action", G_VARIANT_TYPE_STRING);
        } else {
            verify_item_attribute(section, 1, "x-ayatana-next-action", g_variant_new_string("indicator.next.player-id"));
        }
        if (!canPrev) {
                verify_item_attribute_is_not_set(section, 1, "x-ayatana-previous-action", G_VARIANT_TYPE_STRING);
        } else {
            verify_item_attribute(section, 1, "x-ayatana-previous-action", g_variant_new_string("indicator.previous.player-id"));
        }

            g_clear_object(&section);

            sound_menu_remove_player(menu, MEDIA_PLAYER(media));

            EXPECT_EQ(1, g_menu_model_get_n_items(G_MENU_MODEL(menu->menu)));

            g_clear_object(&media);
            g_clear_object(&menu);
        }
};

TEST_F(SoundMenuTest, BasicObject) {
    SoundMenu * menu = sound_menu_new (nullptr, SOUND_MENU_DISPLAY_FLAGS_NONE);

    ASSERT_NE(nullptr, menu);

    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,
            "mock-can-do-play", TRUE,
            "mock-can-do-next", TRUE,
            "mock-can-do-prev", TRUE,
            NULL)
    );
    g_clear_object(&track);

    sound_menu_add_player(menu, MEDIA_PLAYER(media));

    ASSERT_NE(nullptr, menu->menu);
    EXPECT_EQ(2, g_menu_model_get_n_items(G_MENU_MODEL(menu->menu)));

    GMenuModel * section = g_menu_model_get_item_link(G_MENU_MODEL(menu->menu), 1, G_MENU_LINK_SECTION);
    ASSERT_NE(nullptr, section);
    EXPECT_EQ(2, g_menu_model_get_n_items(section)); /* No playlists, so two items */

    /* Player display */
    verify_item_attribute(section, 0, "action", g_variant_new_string("indicator.player-id"));
    verify_item_attribute(section, 0, "x-ayatana-type", g_variant_new_string("org.ayatana.indicator.media-player"));

    /* Player control */
    verify_item_attribute(section, 1, "x-ayatana-type", g_variant_new_string("org.ayatana.indicator.playback-item"));
    verify_item_attribute(section, 1, "x-ayatana-play-action", g_variant_new_string("indicator.play.player-id"));
    verify_item_attribute(section, 1, "x-ayatana-next-action", g_variant_new_string("indicator.next.player-id"));
    verify_item_attribute(section, 1, "x-ayatana-previous-action", g_variant_new_string("indicator.previous.player-id"));

    g_clear_object(&section);

    sound_menu_remove_player(menu, MEDIA_PLAYER(media));

    EXPECT_EQ(1, g_menu_model_get_n_items(G_MENU_MODEL(menu->menu)));

    g_clear_object(&media);
    g_clear_object(&menu);
    return;
}

TEST_F(SoundMenuTest, AddRemovePlayerNoPlayNextPrev) {
    check_player_control_buttons(false, false, false);
}

TEST_F(SoundMenuTest, AddRemovePlayerNoNext) {
    check_player_control_buttons(true, false, true);
}

TEST_F(SoundMenuTest, AddRemovePlayerNoPrev) {
    check_player_control_buttons(true, true, false);
}

TEST_F(SoundMenuTest, AddRemovePlayerNoPlay) {
    check_player_control_buttons(false, true, true);
}

//