]> git.0d.be Git - empathy.git/blob - tests/check-empathy-helpers.c
Updated Oriya Translation
[empathy.git] / tests / check-empathy-helpers.c
1 /*
2  * check-empathy-helpers.c - Source for some check helpers
3  * Copyright (C) 2007-2008 Collabora Ltd.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  */
19
20 #include <stdio.h>
21 #include <stdlib.h>
22
23 #include <glib/gstdio.h>
24 #include <gconf/gconf.h>
25 #include <gconf/gconf-client.h>
26
27 #include <libempathy/empathy-account-manager.h>
28
29 #include "check-helpers.h"
30 #include "check-empathy-helpers.h"
31
32 gchar *
33 get_xml_file (const gchar *filename)
34 {
35   return g_build_filename (g_getenv ("EMPATHY_SRCDIR"), "tests", "xml",
36       filename, NULL);
37 }
38
39 gchar *
40 get_user_xml_file (const gchar *filename)
41 {
42   return g_build_filename (g_get_tmp_dir (), filename, NULL);
43 }
44
45 void
46 copy_xml_file (const gchar *orig,
47                const gchar *dest)
48 {
49   gboolean result;
50   gchar *buffer;
51   gsize length;
52   gchar *sample;
53   gchar *file;
54
55   sample = get_xml_file (orig);
56   result = g_file_get_contents (sample, &buffer, &length, NULL);
57   fail_if (!result);
58
59   file = get_user_xml_file (dest);
60   result = g_file_set_contents (file, buffer, length, NULL);
61   fail_if (!result);
62
63   g_free (sample);
64   g_free (file);
65   g_free (buffer);
66 }
67
68 EmpathyAccount *
69 get_test_account (void)
70 {
71   McProfile *profile;
72   EmpathyAccountManager *account_manager;
73   EmpathyAccount *account;
74   GList *accounts;
75
76   account_manager = empathy_account_manager_dup_singleton ();
77   profile = mc_profile_lookup ("test");
78   accounts = mc_accounts_list_by_profile (profile);
79   if (g_list_length (accounts) == 0)
80     {
81       /* need to create a test account */
82       account = empathy_account_manager_create (account_manager, profile);
83     }
84   else
85     {
86       /* reuse an existing test account */
87       McAccount *mc_account;
88       mc_account = accounts->data;
89       account = empathy_account_manager_lookup (account_manager,
90         mc_account_get_unique_name (mc_account));
91     }
92   g_object_unref (account_manager);
93
94   g_object_unref (profile);
95
96   return account;
97 }
98
99 /* Not used for now as there is no API to remove completely gconf keys.
100  * So we reuse existing accounts instead of creating new ones */
101 void
102 destroy_test_account (EmpathyAccount *account)
103 {
104   GConfClient *client;
105   gchar *path;
106   GError *error = NULL;
107   GSList *entries = NULL, *l;
108   EmpathyAccountManager *manager;
109
110   client = gconf_client_get_default ();
111   path = g_strdup_printf ("/apps/telepathy/mc/accounts/%s",
112       empathy_account_get_unique_name (account));
113
114   entries = gconf_client_all_entries (client, path, &error);
115   if (error != NULL)
116     {
117       g_print ("failed to list entries in %s: %s\n", path, error->message);
118       g_error_free (error);
119       error = NULL;
120     }
121
122   for (l = entries; l != NULL; l = g_slist_next (l))
123     {
124       GConfEntry *entry = l->data;
125
126       if (g_str_has_suffix (entry->key, "data_dir"))
127         {
128           gchar *dir;
129
130           dir = gconf_client_get_string (client, entry->key, &error);
131           if (error != NULL)
132             {
133               g_print ("get data_dir string failed: %s\n", entry->key);
134               g_error_free (error);
135               error = NULL;
136             }
137           else
138             {
139               if (g_rmdir (dir) != 0)
140                 g_print ("can't remove %s\n", dir);
141             }
142
143           g_free (dir);
144         }
145
146       /* FIXME: this doesn't remove the key */
147       gconf_client_unset (client, entry->key, &error);
148       if (error != NULL)
149         {
150           g_print ("unset of %s failed: %s\n", path, error->message);
151           g_error_free (error);
152           error = NULL;
153         }
154
155       gconf_entry_unref (entry);
156     }
157
158   g_slist_free (entries);
159
160   g_object_unref (client);
161   g_free (path);
162
163   manager = empathy_account_manager_dup_singleton ();
164   empathy_account_manager_remove (manager, account);
165   g_object_unref (account);
166   g_object_unref (manager);
167 }