diff options
author | Xan Lopez <xan@igalia.com> | 2012-05-10 00:10:33 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-05-10 00:10:33 +0800 |
commit | 3a759d2daf17ee1152bc3cfc6b1e7eb198177e76 (patch) | |
tree | d39bd9421122fdf0d703c98dde37e41bb67f0b73 | |
parent | cc55649fb5923e1ba1c89c3c8aa25b1cb9401cda (diff) | |
download | gsoc2013-epiphany-3a759d2daf17ee1152bc3cfc6b1e7eb198177e76.tar.gz gsoc2013-epiphany-3a759d2daf17ee1152bc3cfc6b1e7eb198177e76.tar.zst gsoc2013-epiphany-3a759d2daf17ee1152bc3cfc6b1e7eb198177e76.zip |
tests: start tests for the migration code
Trivial first test, we just check the migration binary runs and does
not catastrophically.
-rw-r--r-- | tests/Makefile.am | 4 | ||||
-rw-r--r-- | tests/ephy-migration-test.c | 62 |
2 files changed, 66 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index cb0944267..c44b95706 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -4,6 +4,7 @@ noinst_PROGRAMS = \ test-ephy-embed-utils \ test-ephy-history \ test-ephy-location-entry \ + test-ephy-migration \ test-ephy-search-entry \ test-ephy-sqlite \ test-ephy-web-view \ @@ -125,6 +126,9 @@ test_ephy_history_SOURCES = \ test_ephy_location_entry_SOURCES = \ ephy-location-entry-test.c +test_ephy_migration_SOURCES = \ + ephy-migration-test.c + test_ephy_search_entry_SOURCES = \ ephy-search-entry-test.c diff --git a/tests/ephy-migration-test.c b/tests/ephy-migration-test.c new file mode 100644 index 000000000..8acfdb461 --- /dev/null +++ b/tests/ephy-migration-test.c @@ -0,0 +1,62 @@ +/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* + * ephy-migration-test.c + * + * Copyright © 2012 - Igalia S.L. + * + * Epiphany is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * Epiphany is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Epiphany; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301 USA + */ + +#include "config.h" + +#include "ephy-debug.h" +#include "ephy-embed-prefs.h" +#include "ephy-embed-private.h" +#include "ephy-file-helpers.h" +#include "ephy-private.h" +#include "ephy-profile-utils.h" + +#include <gtk/gtk.h> + +static void +test_do_migration_simple (void) +{ + gboolean ret; + + ret = ephy_profile_utils_do_migration (); + g_assert (ret); +} + +int +main (int argc, char *argv[]) +{ + gtk_test_init (&argc, &argv); + + ephy_debug_init (); + ephy_embed_prefs_init (); + + if (!ephy_file_helpers_init (NULL, + EPHY_FILE_HELPERS_PRIVATE_PROFILE | EPHY_FILE_HELPERS_ENSURE_EXISTS, + NULL)) { + g_debug ("Something wrong happened with ephy_file_helpers_init()"); + return -1; + } + + g_test_add_func ("/lib/ephy-profile-utils/do_migration_simple", + test_do_migration_simple); + + return g_test_run (); +} |