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
|
#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);
}
};
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);
g_usleep(100000);
while (g_main_pending())
g_main_iteration(TRUE);
g_usleep(100000);
while (g_main_pending())
g_main_iteration(TRUE);
ASSERT_EQ(callback_count.appeared, 2);
g_bus_unown_name(name1);
g_bus_unown_name(name2);
g_usleep(100000);
while (g_main_pending())
g_main_iteration(TRUE);
ASSERT_EQ(callback_count.vanished, 2);
bus_unwatch_namespace(ns_watch);
}
|