blob: 81b7e1c3389e94051d0675bfa906384f89366481 (
plain) (
blame)
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
|
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <glib/gstdio.h>
#include <gconf/gconf.h>
#include <gconf/gconf-client.h>
#include <check.h>
#include "check-helpers.h"
#include "check-libempathy.h"
#include "check-empathy-helpers.h"
#include <libempathy/empathy-chatroom-manager.h>
#define CHATROOM_SAMPLE "chatrooms-sample.xml"
#define CHATROOM_FILE "chatrooms.xml"
START_TEST (test_empathy_chatroom_manager_new)
{
EmpathyChatroomManager *mgr;
gchar *cmd;
gchar *file;
McProfile *profile;
McAccount *account;
profile = mc_profile_lookup ("test");
account = mc_account_create (profile);
copy_xml_file (CHATROOM_SAMPLE, CHATROOM_FILE);
file = get_user_xml_file (CHATROOM_FILE);
/* change the chatrooms XML file to use the account we just created */
cmd = g_strdup_printf ("sed -i 's/CHANGE_ME/%s/' %s",
mc_account_get_unique_name (account), file);
system (cmd);
g_free (cmd);
mgr = empathy_chatroom_manager_new (file);
fail_if (empathy_chatroom_manager_get_count (mgr, account) != 2);
g_free (file);
g_object_unref (mgr);
g_object_unref (profile);
remove_account_from_gconf (account);
mc_account_delete (account);
g_object_unref (account);
}
END_TEST
TCase *
make_empathy_chatroom_manager_tcase (void)
{
TCase *tc = tcase_create ("empathy-chatroom-manager");
tcase_add_test (tc, test_empathy_chatroom_manager_new);
return tc;
}
|