| 
									
										
										
										
											2010-03-12 23:18:20 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Asterisk -- An open source telephony toolkit. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-05-13 05:37:31 +00:00
										 |  |  |  * Copyright (C) 2010, Digium, Inc. | 
					
						
							| 
									
										
										
										
											2010-03-12 23:18:20 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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> | 
					
						
							| 
									
										
										
										
											2011-08-16 20:10:13 +00:00
										 |  |  | 	<support_level>core</support_level> | 
					
						
							| 
									
										
										
										
											2010-03-12 23:18:20 +00:00
										 |  |  |  ***/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #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) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-13 05:37:31 +00:00
										 |  |  | 	const char *zones[] = { "America/Chicago", "America/New_York" }; | 
					
						
							| 
									
										
										
										
											2010-03-12 23:18:20 +00:00
										 |  |  | 	int type, i, res = AST_TEST_PASS; | 
					
						
							|  |  |  | 	struct timeval tv = ast_tvnow(); | 
					
						
							| 
									
										
										
										
											2010-05-13 05:37:31 +00:00
										 |  |  | 	struct ast_tm atm[ARRAY_LEN(zones)]; | 
					
						
							| 
									
										
										
										
											2010-03-12 23:18:20 +00:00
										 |  |  | 	char tmpdir[] = "/tmp/timezone.XXXXXX"; | 
					
						
							|  |  |  | 	char tzfile[50], syscmd[256]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (cmd) { | 
					
						
							|  |  |  | 	case TEST_INIT: | 
					
						
							|  |  |  | 		info->name = "timezone_watch"; | 
					
						
							| 
									
										
										
										
											2010-07-09 17:00:22 +00:00
										 |  |  | 		info->category = "/main/stdtime/"; | 
					
						
							| 
									
										
										
										
											2010-03-12 23:18:20 +00:00
										 |  |  | 		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); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-30 17:50:52 +00:00
										 |  |  | 	for (type = 0; type < | 
					
						
							|  |  |  | #ifdef SOLARIS
 | 
					
						
							|  |  |  | 			1 /* Solaris doesn't use symlinks for timezones */ | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 			2 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 				; type++) { | 
					
						
							| 
									
										
										
										
											2010-03-12 23:18:20 +00:00
										 |  |  | 		ast_test_status_update(test, "Executing %s test...\n", type == 0 ? "deletion" : "symlink"); | 
					
						
							|  |  |  | 		for (i = 0; i < ARRAY_LEN(zones); i++) { | 
					
						
							| 
									
										
										
										
											2010-03-13 22:17:05 +00:00
										 |  |  | 			int system_res; | 
					
						
							| 
									
										
										
										
											2010-03-12 23:18:20 +00:00
										 |  |  | 			snprintf(syscmd, sizeof(syscmd), "%s " TZDIR "/%s %s", type == 0 ? "cp" : "ln -sf", zones[i], tzfile); | 
					
						
							| 
									
										
										
										
											2010-05-13 05:37:31 +00:00
										 |  |  | 			if ((system_res = ast_safe_system(syscmd))) { | 
					
						
							| 
									
										
										
										
											2010-03-16 19:34:01 +00:00
										 |  |  | 				ast_log(LOG_WARNING, "system(%s) returned non-zero: %d\n", syscmd, system_res); | 
					
						
							| 
									
										
										
										
											2010-03-13 22:17:05 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2010-09-30 17:50:52 +00:00
										 |  |  | 			ast_localtime_wakeup_monitor(test); | 
					
						
							|  |  |  | 			ast_test_status_update(test, "Querying timezone %s\n", tzfile); | 
					
						
							| 
									
										
										
										
											2010-03-12 23:18:20 +00:00
										 |  |  | 			ast_localtime(&tv, &atm[i], tzfile); | 
					
						
							|  |  |  | 			if (i != 0) { | 
					
						
							|  |  |  | 				if (atm[i].tm_hour == atm[i - 1].tm_hour) { | 
					
						
							|  |  |  | 					res = AST_TEST_FAIL; | 
					
						
							| 
									
										
										
										
											2010-03-16 19:34:01 +00:00
										 |  |  | 					ast_test_status_update(test, "Failed %s test: %d(%s) = %d(%s)\n", type == 0 ? "deletion" : "symlink", atm[i].tm_hour, zones[i], atm[i-1].tm_hour, zones[i-1]); | 
					
						
							| 
									
										
										
										
											2010-03-12 23:18:20 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2010-03-16 19:34:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-13 05:37:31 +00:00
										 |  |  | 			if (i + 1 != ARRAY_LEN(zones)) { | 
					
						
							|  |  |  | 				/* stat(2) only has resolution to 1 second - must wait, or the mtime is the same */ | 
					
						
							|  |  |  | 				usleep(1100000); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2010-03-12 23:18:20 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	snprintf(syscmd, sizeof(syscmd), "rm -rf %s", tmpdir); | 
					
						
							| 
									
										
										
										
											2010-05-13 05:37:31 +00:00
										 |  |  | 	if (ast_safe_system(syscmd)) { | 
					
						
							| 
									
										
										
										
											2010-03-16 19:34:01 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "system(%s) returned non-zero.\n", syscmd); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-03-12 23:18:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	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"); |