X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=tests%2Fcheck_modest-conf.c;h=668a1469658922ad472d155c9fd48859ff316851;hp=2a08c9075a2905376cd3f7d86ab84fa7873441ea;hb=733195be2097c3663a10e2e1e097fa6d37eb6306;hpb=cdd7a6d4dad11f659c34d0d3841b79a01f21d0e8 diff --git a/tests/check_modest-conf.c b/tests/check_modest-conf.c index 2a08c90..668a146 100644 --- a/tests/check_modest-conf.c +++ b/tests/check_modest-conf.c @@ -30,7 +30,21 @@ #include #include #include +#include #include +#include + +static void +fx_setup_modest_conf () +{ + fail_unless (gtk_init_check (NULL, NULL)); + + fail_unless (g_setenv (MODEST_DIR_ENV, ".modesttest", TRUE)); + fail_unless (g_setenv (MODEST_NAMESPACE_ENV, "/apps/modesttest", TRUE)); + + fail_unless (modest_init (0, NULL), "Failed running modest_init"); + +} START_TEST (test_modest_conf_new) { @@ -46,8 +60,8 @@ END_TEST START_TEST (test_modest_conf_store_retrieve_string) { ModestConf *conf = modest_conf_new (); - const gchar *key = MODEST_CONF_NAMESPACE "/teststring"; - const gchar *key2 = MODEST_CONF_NAMESPACE "/teststring2"; + const gchar *key = modest_defs_namespace ("/teststring"); + const gchar *key2 = modest_defs_namespace ("/teststring2"); const gchar *data = "hello in Korean: 안녕하세요"; gchar *data2; @@ -86,8 +100,8 @@ END_TEST START_TEST (test_modest_conf_store_retrieve_bool) { ModestConf *conf = modest_conf_new (); - const gchar *key = MODEST_CONF_NAMESPACE "/teststring"; - const gchar *key2 = MODEST_CONF_NAMESPACE "/teststring2"; + const gchar *key = modest_defs_namespace ("/teststring"); + const gchar *key2 = modest_defs_namespace ("/teststring2"); gboolean data = TRUE, data2; @@ -121,8 +135,8 @@ END_TEST START_TEST (test_modest_conf_store_retrieve_int) { ModestConf *conf = modest_conf_new (); - const gchar *key = MODEST_CONF_NAMESPACE "/teststring"; - const gchar *key2 = MODEST_CONF_NAMESPACE "/teststring2"; + const gchar *key = modest_defs_namespace ("/teststring"); + const gchar *key2 = modest_defs_namespace ("/teststring2"); gint data = 99, data2; @@ -160,6 +174,9 @@ modest_conf_suite (void) Suite *suite = suite_create ("ModestConf"); TCase *tc_core = tcase_create ("core"); + tcase_add_checked_fixture (tc_core, + fx_setup_modest_conf, + NULL); tcase_add_test (tc_core, test_modest_conf_new); tcase_add_test (tc_core, test_modest_conf_store_retrieve_string); tcase_add_test (tc_core, test_modest_conf_store_retrieve_bool);