aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-03-12 23:18:20 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-03-12 23:18:20 +0000
commit18c935c6944a5f374a59367607669da45221d8d1 (patch)
tree7be606b44e8a9dcf4cc0942b3ec8f111c7decc13
parent88bfcb671328040b79c9d6ca966402539524326d (diff)
Test script to verify that timezone cache is properly removed on zonefile alteration.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@252133 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--tests/test_time.c114
1 files changed, 114 insertions, 0 deletions
diff --git a/tests/test_time.c b/tests/test_time.c
new file mode 100644
index 000000000..3dfb5d86b
--- /dev/null
+++ b/tests/test_time.c
@@ -0,0 +1,114 @@
+/*
+ * Asterisk -- An open source telephony toolkit.
+ *
+ * Copyright (C) 2009, Digium, Inc.
+ *
+ * Tilghman Lesher <tlesher AT digium DOT com>
+ *
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2. See the LICENSE file
+ * at the top of the source tree.
+ */
+
+/*!
+ * \file
+ * \brief Timezone tests
+ *
+ * \author\verbatim Tilghman Lesher <tlesher AT digium DOT com> \endverbatim
+ *
+ * \ingroup tests
+ */
+
+/*** MODULEINFO
+ <depend>TEST_FRAMEWORK</depend>
+ ***/
+
+#include "asterisk.h"
+
+ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
+
+#include "asterisk/utils.h"
+#include "asterisk/app.h"
+#include "asterisk/module.h"
+#include "asterisk/test.h"
+
+#ifndef TZDIR
+#ifdef SOLARIS
+#define TZDIR "/usr/share/lib/zoneinfo"
+#else
+#define TZDIR "/usr/share/zoneinfo"
+#endif /* defined SOLARIS */
+#endif /* !defined TZDIR */
+
+AST_TEST_DEFINE(test_timezone_watch)
+{
+ const char *zones[2] = { "America/Chicago", "America/New_York" };
+ int type, i, res = AST_TEST_PASS;
+ struct timeval tv = ast_tvnow();
+ struct ast_tm atm[2];
+ char tmpdir[] = "/tmp/timezone.XXXXXX";
+ char tzfile[50], syscmd[256];
+
+ switch (cmd) {
+ case TEST_INIT:
+ info->name = "timezone_watch";
+ info->category = "main/stdtime/";
+ info->summary = "Verify deleting timezone file purges cache";
+ info->description =
+ "Verifies that the caching engine properly destroys a timezone entry when its file is deleted.";
+ return AST_TEST_NOT_RUN;
+ case TEST_EXECUTE:
+ break;
+ }
+
+ if (!mkdtemp(tmpdir)) {
+ ast_test_status_update(test, "Unable to create working directory: %s\n", strerror(errno));
+ return AST_TEST_NOT_RUN;
+ }
+ snprintf(tzfile, sizeof(tzfile), "%s/test", tmpdir);
+
+ /* Allow system(3) to function correctly */
+ ast_replace_sigchld();
+
+ for (type = 0; type < 2; type++) {
+ ast_test_status_update(test, "Executing %s test...\n", type == 0 ? "deletion" : "symlink");
+ for (i = 0; i < ARRAY_LEN(zones); i++) {
+ snprintf(syscmd, sizeof(syscmd), "%s " TZDIR "/%s %s", type == 0 ? "cp" : "ln -sf", zones[i], tzfile);
+ system(syscmd);
+ ast_localtime(&tv, &atm[i], tzfile);
+ if (i != 0) {
+ if (atm[i].tm_hour == atm[i - 1].tm_hour) {
+ res = AST_TEST_FAIL;
+ ast_test_status_update(test, "Failed %s test\n", type == 0 ? "deletion" : "symlink");
+ }
+ }
+ }
+ }
+
+ snprintf(syscmd, sizeof(syscmd), "rm -rf %s", tmpdir);
+
+ /* Restore SIGCHLD handler */
+ ast_unreplace_sigchld();
+
+ return res;
+}
+
+static int unload_module(void)
+{
+ AST_TEST_UNREGISTER(test_timezone_watch);
+ return 0;
+}
+
+static int load_module(void)
+{
+ AST_TEST_REGISTER(test_timezone_watch);
+ return AST_MODULE_LOAD_SUCCESS;
+}
+
+AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Time Tests");