summaryrefslogtreecommitdiff
path: root/tests/contact-search-result.c
diff options
context:
space:
mode:
authorEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-01-15 21:09:30 +0000
committerEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-01-26 17:59:01 +0000
commit175244fb67f2f6192a4bf73711ee62870d92d541 (patch)
tree949cc23f0c2cf516488c5f6ea5e8b5eceaec6e15 /tests/contact-search-result.c
parent70d305f1019d19b103b54755c46c6e5e83085a6d (diff)
downloadtelepathy-glib-175244fb67f2f6192a4bf73711ee62870d92d541.tar.gz
Add tests for TpContactSearchResult
Diffstat (limited to 'tests/contact-search-result.c')
-rw-r--r--tests/contact-search-result.c73
1 files changed, 73 insertions, 0 deletions
diff --git a/tests/contact-search-result.c b/tests/contact-search-result.c
new file mode 100644
index 000000000..e07205686
--- /dev/null
+++ b/tests/contact-search-result.c
@@ -0,0 +1,73 @@
+/* Tests of TpContactSearchResult
+ *
+ * Copyright © 2010-2011 Collabora Ltd. <http://www.collabora.co.uk/>
+ *
+ * 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 <glib.h>
+
+#include "telepathy-glib/contact-search-internal.h"
+
+#include <telepathy-glib/dbus.h>
+#include <telepathy-glib/debug.h>
+#include <telepathy-glib/enums.h>
+#include <telepathy-glib/gtypes.h>
+#include <telepathy-glib/interfaces.h>
+#include <telepathy-glib/util.h>
+
+#include "tests/lib/util.h"
+
+static void
+test_contact_search_result (void)
+{
+ TpContactSearchResult *result;
+ TpContactInfoField *field;
+ const gchar *identifier;
+ GList *fields;
+ gchar *field_value = "Joe";
+
+ result = _tp_contact_search_result_new ("id");
+ g_assert (TP_IS_CONTACT_SEARCH_RESULT (result));
+
+ identifier = tp_contact_search_result_get_identifier (result);
+ g_assert_cmpstr (identifier, ==, "id");
+
+ fields = tp_contact_search_result_get_fields (result);
+ g_assert (fields == NULL);
+
+ field = tp_contact_search_result_get_field (result, "fn");
+ g_assert (field == NULL);
+
+ field = tp_contact_info_field_new ("fn", NULL, &field_value);
+ g_assert (field != NULL);
+
+ _tp_contact_search_result_insert_field (result, field);
+ fields = tp_contact_search_result_get_fields (result);
+ g_assert (fields != NULL);
+ g_list_free (fields);
+
+ field = tp_contact_search_result_get_field (result, "fn");
+ g_assert (field != NULL);
+ g_assert_cmpstr (field->field_value[0], ==, field_value);
+
+ g_object_unref (result);
+}
+
+int
+main (int argc,
+ char **argv)
+{
+ g_type_init ();
+ tp_debug_set_flags ("all");
+
+ g_test_init (&argc, &argv, NULL);
+ g_test_bug_base ("http://bugs.freedesktop.org/show_bug.cgi?id=");
+
+ g_test_add_func ("/contact-search/contact-search-result",
+ test_contact_search_result);
+
+ return g_test_run ();
+}