summaryrefslogtreecommitdiff
path: root/tests/dbus/test-tpl-observer.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/dbus/test-tpl-observer.c')
-rw-r--r--tests/dbus/test-tpl-observer.c49
1 files changed, 49 insertions, 0 deletions
diff --git a/tests/dbus/test-tpl-observer.c b/tests/dbus/test-tpl-observer.c
new file mode 100644
index 0000000..cc78c40
--- /dev/null
+++ b/tests/dbus/test-tpl-observer.c
@@ -0,0 +1,49 @@
+#include <telepathy-logger/channel-factory-internal.h>
+#include <telepathy-logger/observer-internal.h>
+
+static gint factory_counter = 0;
+
+static TplChannel *
+mock_factory (const gchar *chan_type,
+ TpConnection *conn, const gchar *object_path, GHashTable *tp_chan_props,
+ TpAccount *tp_acc, GError **error)
+{
+ factory_counter += 1;
+ return NULL;
+}
+
+
+
+int
+main (int argc, char **argv)
+{
+ TplObserver *obs, *obs2;
+
+ g_type_init ();
+
+ obs = _tpl_observer_new ();
+
+ /* TplObserver is a singleton, be sure both references point to the same
+ * memory address */
+ obs2 = _tpl_observer_new ();
+ g_assert (obs == obs2);
+
+ /* unref the second singleton pointer and check that the it is still
+ * valid: checking correct object ref-counting after each _dup() call */
+ g_object_unref (obs2);
+ g_assert (TPL_IS_OBSERVER (obs));
+
+ /* it points to the same mem area, it should be still valid */
+ g_assert (TPL_IS_OBSERVER (obs2));
+
+ /* register a ChanFactory and test ObserveChannel() */
+ _tpl_observer_set_channel_factory (obs, mock_factory);
+
+
+ /* proper disposal for the singleton when no references are present */
+ g_object_unref (obs);
+ g_assert (!TPL_IS_OBSERVER (obs));
+
+ return 0;
+}
+