summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2008-04-02 18:06:50 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2008-04-02 18:06:50 +0000
commit7b6f71f0df753ccb2326d40b37f031d86e2bea5c (patch)
tree26e1d6e27b34ae5513c073ee59dd023ca755d266 /tests
parent9c7b9b09696bb47a81c2b123478852a03bb1b60d (diff)
Add test-channel-introspect, a basic test of introspecting a channel
Diffstat (limited to 'tests')
-rw-r--r--tests/dbus/Makefile.am6
-rw-r--r--tests/dbus/channel-introspect.c111
2 files changed, 117 insertions, 0 deletions
diff --git a/tests/dbus/Makefile.am b/tests/dbus/Makefile.am
index b78c5a647..44cf4ebe3 100644
--- a/tests/dbus/Makefile.am
+++ b/tests/dbus/Makefile.am
@@ -1,5 +1,6 @@
noinst_PROGRAMS = \
test-call-cancellation \
+ test-channel-introspect \
test-connection-getinterfaces-failure \
test-dbus \
test-disconnection \
@@ -14,6 +15,11 @@ test_call_cancellation_LDADD = \
$(TP_GLIB_LIBS) \
../lib/libtp-glib-tests.la
+test_channel_introspect_LDADD = \
+ $(TP_GLIB_LIBS) \
+ ../lib/libtp-glib-tests.la
+test_channel_introspect_SOURCES = channel-introspect.c
+
test_connection_getinterfaces_failure_LDADD = \
$(TP_GLIB_LIBS) \
../lib/libtp-glib-tests.la
diff --git a/tests/dbus/channel-introspect.c b/tests/dbus/channel-introspect.c
new file mode 100644
index 000000000..084d104e1
--- /dev/null
+++ b/tests/dbus/channel-introspect.c
@@ -0,0 +1,111 @@
+/* Basic introspection on a channel (template for further regression tests)
+ *
+ * Copyright (C) 2007-2008 Collabora Ltd. <http://www.collabora.co.uk/>
+ * Copyright (C) 2007-2008 Nokia Corporation
+ *
+ * Copying and distribution of this file, with or without modification,
+ * are permitted in any medium without royalty provided the copyright
+ * notice and this notice are preserved.
+ */
+
+#include <telepathy-glib/channel.h>
+#include <telepathy-glib/connection.h>
+#include <telepathy-glib/dbus.h>
+#include <telepathy-glib/debug.h>
+#include <telepathy-glib/interfaces.h>
+
+#include "tests/lib/myassert.h"
+#include "tests/lib/simple-conn.h"
+#include "tests/lib/textchan-null.h"
+
+static int fail = 0;
+
+static void
+myassert_failed (void)
+{
+ fail = 1;
+}
+
+int
+main (int argc,
+ char **argv)
+{
+ SimpleConnection *service_conn;
+ TpBaseConnection *service_conn_as_base;
+ TpHandleRepoIface *contact_repo;
+ TestTextChannelNull *service_chan;
+ TpDBusDaemon *dbus;
+ TpConnection *conn;
+ TpChannel *chan;
+ GError *error = NULL;
+ gchar *name;
+ gchar *conn_path;
+ gchar *chan_path;
+ TpHandle handle;
+
+ g_type_init ();
+ tp_debug_set_flags ("all");
+
+ service_conn = SIMPLE_CONNECTION (g_object_new (SIMPLE_TYPE_CONNECTION,
+ "account", "me@example.com",
+ "protocol", "simple",
+ NULL));
+ service_conn_as_base = TP_BASE_CONNECTION (service_conn);
+ MYASSERT (service_conn != NULL, "");
+ MYASSERT (service_conn_as_base != NULL, "");
+
+ MYASSERT (tp_base_connection_register (service_conn_as_base, "simple",
+ &name, &conn_path, &error), "");
+ MYASSERT_NO_ERROR (error);
+
+ dbus = tp_dbus_daemon_new (tp_get_bus ());
+ conn = tp_connection_new (dbus, name, conn_path, &error);
+ MYASSERT (conn != NULL, "");
+ MYASSERT_NO_ERROR (error);
+
+ MYASSERT (tp_connection_run_until_ready (conn, TRUE, &error, NULL),
+ "");
+ MYASSERT_NO_ERROR (error);
+
+ contact_repo = tp_base_connection_get_handles (service_conn_as_base,
+ TP_HANDLE_TYPE_CONTACT);
+ MYASSERT (contact_repo != NULL, "");
+
+ handle = tp_handle_ensure (contact_repo, "them@example.org", NULL, &error);
+ MYASSERT_NO_ERROR (error);
+
+ chan_path = g_strdup_printf ("%s/Channel", conn_path);
+
+ service_chan = TEST_TEXT_CHANNEL_NULL (g_object_new (
+ TEST_TYPE_TEXT_CHANNEL_NULL,
+ "connection", service_conn,
+ "object-path", chan_path,
+ "handle", handle,
+ NULL));
+
+ /* Check that introspecting a channel that has no extra interfaces is OK */
+
+ chan = tp_channel_new (conn, chan_path, TP_IFACE_CHANNEL_TYPE_TEXT,
+ TP_HANDLE_TYPE_CONTACT, handle, &error);
+ MYASSERT_NO_ERROR (error);
+
+ tp_channel_run_until_ready (chan, &error, NULL);
+ MYASSERT_NO_ERROR (error);
+
+ MYASSERT (tp_cli_connection_run_disconnect (conn, -1, &error, NULL), "");
+ MYASSERT_NO_ERROR (error);
+
+ tp_handle_unref (contact_repo, handle);
+ g_object_unref (chan);
+ g_object_unref (conn);
+ g_object_unref (service_chan);
+
+ service_conn_as_base = NULL;
+ g_object_unref (service_conn);
+ g_object_unref (dbus);
+ g_free (name);
+ g_free (conn_path);
+ g_free (chan_path);
+
+ return fail;
+}