summaryrefslogtreecommitdiff
path: root/tests/test-searches.c
blob: d524ba6466ea955a63f2bd1454991841a31d73a5 (plain)
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
87
88
89
90
91
#include "constants.h"

#include <glib.h>

#include <telepathy-logger/debug-internal.h>
#include <telepathy-logger/log-manager.h>
#include <telepathy-logger/log-manager-internal.h>
#include <telepathy-logger/log-store-internal.h>
#include <telepathy-logger/log-store-xml-internal.h>


static GMainLoop *loop = NULL;

static void
got_dates_cb (GObject *obj, GAsyncResult *result, gpointer user_data)
{
  GList *ret;
  GError *error = NULL;

  tpl_log_manager_get_dates_finish (TPL_LOG_MANAGER (obj), result, &ret,
      &error);
  g_assert_no_error (error);

  for (; ret != NULL; ret = g_list_next (ret))
    {
      GDate *date = ret->data;
      /* g_assert (!tp_strdiff (date, "12345678")); */
      g_date_free (date);
    }
    g_list_free (ret);
    g_main_loop_quit (loop);
}

int
main (int argc, char *argv[])
{
  GError *error = NULL;
  TpDBusDaemon *dbus;
  TpAccount *acc;
  TplLogManager *manager;
  TplLogStore *logstore;
  GList *ret, *loc;

  g_type_init ();

  dbus = tp_dbus_daemon_dup (&error);
  if (error != NULL)
    {
      g_debug ("%s", error->message);
    }
  acc = tp_account_new (dbus, ACCOUNT_PATH, NULL);
  if (acc == NULL)
    {
      g_debug ("error during TpAccount creation");
    }

  /* get the LogManager and register a non-default LogManager */
  manager = tpl_log_manager_dup_singleton ();
  logstore = g_object_new (TPL_TYPE_LOG_STORE_XML,
      "name", "Empathy", NULL);
  _tpl_log_manager_register_log_store (manager, logstore);

  /* we are using the blocking API, the non-blocking one is a wrap around, so
   * it's assured to work as long as the blocking API and the wapper work */

  /* we do not want duplicates */
  ret = _tpl_log_manager_get_dates (manager, acc, ID, FALSE);
  ret = g_list_sort (ret, (GCompareFunc) g_strcmp0);
  for (loc = ret; loc; loc = g_list_next (loc))
    if (loc->next)
      g_assert (g_date_compare (loc->data, loc->next->data) != 0);
  g_list_foreach (ret, (GFunc) g_free, NULL);
  g_list_free (ret);


  /* we do not want duplicates */
  ret = _tpl_log_manager_get_chats (manager, acc);
  ret = g_list_sort (ret, (GCompareFunc) _tpl_log_manager_search_hit_compare);
  for (loc = ret; loc; loc = g_list_next (loc))
    if (loc->next)
      g_assert (_tpl_log_manager_search_hit_compare (loc->data,
            loc->next->data) != 0);
  g_list_foreach (ret, (GFunc) _tpl_log_manager_search_hit_free, NULL);
  g_list_free (ret);


  tpl_log_manager_get_dates_async (manager, acc, ID, FALSE, got_dates_cb, NULL);

  loop = g_main_loop_new (NULL, FALSE);
  g_main_loop_run (loop);
}