From 10b0f321c88a813a2d72244fe14d2dbde8ab6911 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Fri, 3 Dec 2010 20:45:01 +0200 Subject: [PATCH] * update some unit test cases --- src/mu-store.h | 2 +- src/tests/test-mu-msg.c | 2 +- src/tests/test-mu-store.c | 197 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 199 insertions(+), 2 deletions(-) create mode 100644 src/tests/test-mu-store.c diff --git a/src/mu-store.h b/src/mu-store.h index ff982b50..9e2163a1 100644 --- a/src/mu-store.h +++ b/src/mu-store.h @@ -116,7 +116,7 @@ MuResult mu_store_store (MuStore *store, MuMsg *msg); * @return TRUE if it succeeded, FALSE otherwise */ MuResult mu_store_remove (MuStore *store, - const char* msgpath); + const char* msgpath); /** diff --git a/src/tests/test-mu-msg.c b/src/tests/test-mu-msg.c index 320e6d7a..984bc263 100644 --- a/src/tests/test-mu-msg.c +++ b/src/tests/test-mu-msg.c @@ -17,7 +17,7 @@ ** */ -#ifdef HAVE_CONFIG_H +#if HAVE_CONFIG_H #include "config.h" #endif /*HAVE_CONFIG_H*/ diff --git a/src/tests/test-mu-store.c b/src/tests/test-mu-store.c new file mode 100644 index 00000000..2cc659a5 --- /dev/null +++ b/src/tests/test-mu-store.c @@ -0,0 +1,197 @@ +/* +** Copyright (C) 2008-2010 Dirk-Jan C. Binnema +** +** This program 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 3, or (at your option) any +** later version. +** +** This program 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 this program; if not, write to the Free Software Foundation, +** Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +** +*/ + +#if HAVE_CONFIG_H +#include "config.h" +#endif /*HAVE_CONFIG_H*/ + +#include +#include +#include +#include + +#include + +#include "test-mu-common.h" +#include "src/mu-store.h" + +static void +test_mu_store_new_destroy (void) +{ + MuStore *store; + gchar* tmpdir; + GError *err; + + tmpdir = test_mu_common_get_random_tmpdir(); + g_assert (tmpdir); + + err = NULL; + store = mu_store_new (tmpdir, &err); + g_assert (store); + g_assert (err == NULL); + + g_assert_cmpuint (0,==,mu_store_count (store)); + + mu_store_flush (store); + + mu_store_destroy (store); + + g_free (tmpdir); +} + + +static void +test_mu_store_version (void) +{ + MuStore *store; + gchar* tmpdir; + GError *err; + const char* my_version; + + tmpdir = test_mu_common_get_random_tmpdir(); + g_assert (tmpdir); + + err = NULL; + store = mu_store_new (tmpdir, &err); + g_assert (store); + g_assert (err == NULL); + + g_assert_cmpuint (0,==,mu_store_count (store)); + g_assert_cmpstr (MU_XAPIAN_DB_VERSION,==,mu_store_version(store)); + + my_version = "test123"; + g_assert (mu_store_set_version (store, my_version)); + g_assert_cmpstr (mu_store_version(store), ==, my_version); + + mu_store_destroy (store); + g_free (tmpdir); +} + + +static void +test_mu_store_store_and_count (void) +{ + MuMsg *msg; + MuStore *store; + gchar* tmpdir; + GError *err; + + tmpdir = test_mu_common_get_random_tmpdir(); + g_assert (tmpdir); + + store = mu_store_new (tmpdir, NULL); + g_assert (store); + + g_assert_cmpuint (0,==,mu_store_count (store)); + + mu_msg_gmime_init (); + + /* add one */ + err = NULL; + msg = mu_msg_new (MU_TESTMAILDIR "cur/1283599333.1840_11.cthulhu!2,", + NULL, &err); + + g_assert (msg); + g_assert_cmpuint (mu_store_store (store, msg), ==, MU_OK); + g_assert_cmpuint (1,==,mu_store_count (store)); + g_assert_cmpuint (TRUE,==,mu_store_contains_message + (store, MU_TESTMAILDIR "cur/1283599333.1840_11.cthulhu!2,")); + mu_msg_destroy (msg); + + /* add another one */ + msg = mu_msg_new (MU_TESTMAILDIR2 "bar/cur/mail3", + NULL, NULL); + g_assert (msg); + g_assert_cmpuint (mu_store_store (store, msg), ==, MU_OK); + g_assert_cmpuint (2,==,mu_store_count (store)); + g_assert_cmpuint (TRUE,==,mu_store_contains_message + (store, MU_TESTMAILDIR2 "bar/cur/mail3")); + mu_msg_destroy (msg); + + /* try to add the first one again. count should be 2 still */ + msg = mu_msg_new (MU_TESTMAILDIR "cur/1283599333.1840_11.cthulhu!2,", + NULL, NULL); + g_assert_cmpuint (mu_store_store (store, msg), ==, MU_OK); + g_assert_cmpuint (2,==,mu_store_count (store)); + + mu_msg_destroy (msg); + mu_msg_gmime_uninit (); + + mu_store_destroy (store); +} + + +static void +test_mu_store_store_remove_and_count (void) +{ + MuMsg *msg; + MuStore *store; + gchar* tmpdir; + GError *err; + + tmpdir = test_mu_common_get_random_tmpdir(); + g_assert (tmpdir); + + store = mu_store_new (tmpdir, NULL); + g_assert (store); + + g_assert_cmpuint (0,==,mu_store_count (store)); + + mu_msg_gmime_init (); + + /* add one */ + err = NULL; + msg = mu_msg_new (MU_TESTMAILDIR "cur/1283599333.1840_11.cthulhu!2,", + NULL, &err); + g_assert (msg); + g_assert_cmpuint (mu_store_store (store, msg), ==, MU_OK); + g_assert_cmpuint (1,==,mu_store_count (store)); + mu_msg_destroy (msg); + + /* remove one */ + mu_store_remove (store, MU_TESTMAILDIR "cur/1283599333.1840_11.cthulhu!2,"); + g_assert_cmpuint (0,==,mu_store_count (store)); + g_assert_cmpuint (FALSE,==,mu_store_contains_message + (store, MU_TESTMAILDIR "cur/1283599333.1840_11.cthulhu!2,")); + + mu_msg_gmime_uninit (); + mu_store_destroy (store); +} + + +int +main (int argc, char *argv[]) +{ + g_test_init (&argc, &argv, NULL); + + /* mu_runtime_init/uninit */ + g_test_add_func ("/mu-store/mu-store-new-destroy", + test_mu_store_new_destroy); + g_test_add_func ("/mu-store/mu-store-version", + test_mu_store_version); + g_test_add_func ("/mu-store/mu-store-store-and-count", + test_mu_store_store_and_count); + g_test_add_func ("/mu-store/mu-store-store-remove-and-count", + test_mu_store_store_remove_and_count); + g_log_set_handler (NULL, + G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION, + (GLogFunc)black_hole, NULL); + + return g_test_run (); +}