diff options
author | Ted Gould <ted@gould.cx> | 2013-11-19 11:16:02 +0000 |
---|---|---|
committer | Tarmac <Unknown> | 2013-11-19 11:16:02 +0000 |
commit | 9775c49015325765ab6ce4b781567d723484f00b (patch) | |
tree | c11b540c57c30ae32a0b394abb22a9054930512a | |
parent | cac428b0a433a03f9a611a53d0bdf38c255181f0 (diff) | |
parent | 7c2b5448a186614299da1f16da3b87619dd97ef0 (diff) | |
download | ayatana-indicator-sound-9775c49015325765ab6ce4b781567d723484f00b.tar.gz ayatana-indicator-sound-9775c49015325765ab6ce4b781567d723484f00b.tar.bz2 ayatana-indicator-sound-9775c49015325765ab6ce4b781567d723484f00b.zip |
Test name watching utilities.
Approved by Lars Uebernickel, PS Jenkins bot.
-rw-r--r-- | CMakeLists.txt | 5 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rw-r--r-- | tests/CMakeLists.txt | 22 | ||||
-rw-r--r-- | tests/name-watch-test.cc | 175 |
4 files changed, 204 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 837d9ec..ecd2f12 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -68,5 +68,10 @@ add_subdirectory(data) add_subdirectory(src) enable_testing() + +set (GTEST_SOURCE_DIR /usr/src/gtest/src) +set (GTEST_INCLUDE_DIR ${GTEST_SOURCE_DIR}/..) +set (GTEST_LIBS -lpthread) + add_subdirectory(tests) diff --git a/debian/control b/debian/control index 9104d0c..ab0c0f1 100644 --- a/debian/control +++ b/debian/control @@ -5,11 +5,13 @@ Maintainer: Ubuntu Desktop Team <ubuntu-desktop@lists.ubuntu.com> XSBC-Original-Maintainer: Conor Curran <conor.curran@canonical.com> Build-Depends: debhelper (>= 9.0), cmake, + dbus, dh-translations, gnome-common, autotools-dev, valac (>= 0.20), libglib2.0-dev (>= 2.22.3), + libgtest-dev, liburl-dispatcher1-dev, libpulse-dev (>= 0.9.18), libpulse-mainloop-glib0 (>= 0.9.18), diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index e69de29..8e79fd0 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -0,0 +1,22 @@ + +########################### +# Google Test +########################### + +include_directories(${GTEST_INCLUDE_DIR}) + +add_library (gtest STATIC + ${GTEST_SOURCE_DIR}/gtest-all.cc + ${GTEST_SOURCE_DIR}/gtest_main.cc) +target_link_libraries(gtest ${GTEST_LIBS}) + + +########################### +# Name Watch Test +########################### + +include_directories(${CMAKE_SOURCE_DIR}/src) +add_executable (name-watch-test name-watch-test.cc ${CMAKE_SOURCE_DIR}/src/bus-watch-namespace.c) +target_link_libraries (name-watch-test gtest ${SOUNDSERVICE_LIBRARIES}) +add_test(name-watch-test name-watch-test) + diff --git a/tests/name-watch-test.cc b/tests/name-watch-test.cc new file mode 100644 index 0000000..d7e85b4 --- /dev/null +++ b/tests/name-watch-test.cc @@ -0,0 +1,175 @@ +/* + * Copyright 2013 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 <gio/gio.h> +#include <gtest/gtest.h> + +extern "C" { +#include "bus-watch-namespace.h" +} + +class NameWatchTest : public ::testing::Test +{ + private: + GTestDBus * testbus = NULL; + + protected: + virtual void SetUp() { + testbus = g_test_dbus_new(G_TEST_DBUS_NONE); + g_test_dbus_up(testbus); + } + + virtual void TearDown() { + g_test_dbus_down(testbus); + g_clear_object(&testbus); + } + + 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); + } +}; + +typedef struct { + guint appeared; + guint vanished; +} callback_count_t; + +static void +appeared_simple_cb (GDBusConnection * bus, const gchar * name, const gchar * owner, gpointer user_data) +{ + callback_count_t * callback_count = static_cast<callback_count_t *>(user_data); + callback_count->appeared++; +} + +static void +vanished_simple_cb (GDBusConnection * bus, const gchar * name, gpointer user_data) +{ + callback_count_t * callback_count = static_cast<callback_count_t *>(user_data); + callback_count->vanished++; +} + + +TEST_F(NameWatchTest, BaseWatch) +{ + callback_count_t callback_count = {0}; + + guint ns_watch = bus_watch_namespace(G_BUS_TYPE_SESSION, + "com.foo", + appeared_simple_cb, + vanished_simple_cb, + &callback_count, + NULL); + + guint name1 = g_bus_own_name(G_BUS_TYPE_SESSION, + "com.foo.bar", + G_BUS_NAME_OWNER_FLAGS_NONE, + NULL, NULL, NULL, NULL, NULL); + guint name2 = g_bus_own_name(G_BUS_TYPE_SESSION, + "com.foo.bar_too", + G_BUS_NAME_OWNER_FLAGS_NONE, + NULL, NULL, NULL, NULL, NULL); + + loop(100); + + ASSERT_EQ(callback_count.appeared, 2); + + g_bus_unown_name(name1); + g_bus_unown_name(name2); + + loop(100); + + ASSERT_EQ(callback_count.vanished, 2); + + bus_unwatch_namespace(ns_watch); +} + +TEST_F(NameWatchTest, NonMatches) +{ + callback_count_t callback_count = {0}; + + guint ns_watch = bus_watch_namespace(G_BUS_TYPE_SESSION, + "com.foo", + appeared_simple_cb, + vanished_simple_cb, + &callback_count, + NULL); + + guint name1 = g_bus_own_name(G_BUS_TYPE_SESSION, + "com.foobar.bar", + G_BUS_NAME_OWNER_FLAGS_NONE, + NULL, NULL, NULL, NULL, NULL); + guint name2 = g_bus_own_name(G_BUS_TYPE_SESSION, + "com.bar.com.foo", + G_BUS_NAME_OWNER_FLAGS_NONE, + NULL, NULL, NULL, NULL, NULL); + + loop(100); + + ASSERT_EQ(callback_count.appeared, 0); + + g_bus_unown_name(name1); + g_bus_unown_name(name2); + + loop(100); + + ASSERT_EQ(callback_count.vanished, 0); + + bus_unwatch_namespace(ns_watch); +} + +TEST_F(NameWatchTest, StartupNames) +{ + guint name1 = g_bus_own_name(G_BUS_TYPE_SESSION, + "com.foo.bar", + G_BUS_NAME_OWNER_FLAGS_NONE, + NULL, NULL, NULL, NULL, NULL); + + loop(100); + + callback_count_t callback_count = {0}; + + guint ns_watch = bus_watch_namespace(G_BUS_TYPE_SESSION, + "com.foo", + appeared_simple_cb, + vanished_simple_cb, + &callback_count, + NULL); + + loop(100); + + ASSERT_EQ(callback_count.appeared, 1); + + g_bus_unown_name(name1); + + loop(100); + + ASSERT_EQ(callback_count.vanished, 1); + + bus_unwatch_namespace(ns_watch); +} + |