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
|
#include "config.h"
#include <string.h>
#include <glib.h>
#include <glib-object.h>
#include <telepathy-glib/enums.h>
#include <telepathy-glib/interfaces.h>
#include <telepathy-glib/errors.h>
#include "src/connection.h"
static void
test_handles (guint handle_type)
{
TpHandleRepoIface *repos[NUM_TP_HANDLE_TYPES];
TpHandleRepoIface *tp_repo = NULL;
GError *error = NULL;
guint i;
TpHandle handle = 0;
const gchar *jid = "handle.test@foobar";
const gchar *return_jid;
for (i = 0; i < NUM_TP_HANDLE_TYPES; i++)
{
repos[i] = NULL;
}
_gabble_connection_create_handle_repos (NULL, repos);
tp_repo = repos[handle_type];
g_assert (tp_repo != NULL);
/* Handle zero is never valid */
g_assert (tp_handle_is_valid (tp_repo, 0, &error) == FALSE);
/* this should probably be InvalidHandle, but it was InvalidArgument in
* older telepathy-glib */
g_assert (error->code == TP_ERROR_INVALID_ARGUMENT ||
error->code == TP_ERROR_INVALID_HANDLE);
g_error_free (error);
error = NULL;
/* Properly return error when handle isn't in the repo */
g_assert (tp_handle_is_valid (tp_repo, 65536, &error) == FALSE);
/* this should really be InvalidHandle, but it was InvalidArgument in
* older telepathy-glib */
g_assert (error->code == TP_ERROR_INVALID_ARGUMENT ||
error->code == TP_ERROR_INVALID_HANDLE);
g_error_free (error);
error = NULL;
/* Properly return when error out argument isn't provided */
g_assert (tp_handle_is_valid (tp_repo, 65536, NULL) == FALSE);
/* It's not there to start with, unless we're using the static repo */
handle = tp_handle_lookup (tp_repo, jid, NULL, NULL);
g_assert (handle == 0);
/* ... but when we call tp_handle_ensure we get a new ref to it */
handle = tp_handle_ensure (tp_repo, jid, NULL, NULL);
g_assert (handle != 0);
/* Try to inspect it */
return_jid = tp_handle_inspect (tp_repo, handle);
g_assert (!strcmp (return_jid, jid));
/* Now unref it */
tp_handle_unref (tp_repo, handle);
for (i = 0; i < NUM_TP_HANDLE_TYPES; i++)
{
if (repos[i])
g_object_unref ((GObject *) repos[i]);
}
}
int main (int argc, char **argv)
{
g_type_init ();
test_handles (TP_HANDLE_TYPE_CONTACT);
test_handles (TP_HANDLE_TYPE_ROOM);
return 0;
}
|