aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2011-07-16 22:06:49 -0400
committerNils Adermann <naderman@naderman.de>2011-07-16 22:06:49 -0400
commita33b67fd1a80463602c3603f72ad0f96dd3d9b09 (patch)
treec5304bb4d38ddb3ee224cb0ddac32bd463d169d2 /tests
parent19925ad059a31282467c061a76fb387d2206b357 (diff)
parent0f86034f03c8b81883aed2345d88d197f72c7491 (diff)
downloadforums-a33b67fd1a80463602c3603f72ad0f96dd3d9b09.tar
forums-a33b67fd1a80463602c3603f72ad0f96dd3d9b09.tar.gz
forums-a33b67fd1a80463602c3603f72ad0f96dd3d9b09.tar.bz2
forums-a33b67fd1a80463602c3603f72ad0f96dd3d9b09.tar.xz
forums-a33b67fd1a80463602c3603f72ad0f96dd3d9b09.zip
Merge branch 'develop-olympus' into develop
* develop-olympus: [ticket/10243] Adding a few unit tests for phpbb_gmgetdate(). [ticket/10243] Call phpbb_gmgetdate() from various places. [ticket/10243] Adding wrapper function for getdate() for UTC timestamps.
Diffstat (limited to 'tests')
-rw-r--r--tests/wrapper/gmgetdate_test.php49
1 files changed, 49 insertions, 0 deletions
diff --git a/tests/wrapper/gmgetdate_test.php b/tests/wrapper/gmgetdate_test.php
new file mode 100644
index 0000000000..0b4c3378a9
--- /dev/null
+++ b/tests/wrapper/gmgetdate_test.php
@@ -0,0 +1,49 @@
+<?php
+/**
+*
+* @package testing
+* @copyright (c) 2011 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+*
+*/
+
+require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php';
+
+class phpbb_wrapper_gmgetdate_test extends phpbb_test_case
+{
+ public function test_gmgetdate()
+ {
+ $this->run_gmgetdate_assertion();
+ $this->run_test_with_timezone('UTC');
+ $this->run_test_with_timezone('Europe/Berlin');
+ $this->run_test_with_timezone('America/Los_Angeles');
+ $this->run_test_with_timezone('Antarctica/South_Pole');
+ }
+
+ protected function run_test_with_timezone($timezone_identifier)
+ {
+ $current_timezone = date_default_timezone_get();
+
+ date_default_timezone_set($timezone_identifier);
+ $this->run_gmgetdate_assertion();
+ date_default_timezone_set($current_timezone);
+ }
+
+ protected function run_gmgetdate_assertion()
+ {
+ $expected = time();
+
+ $date_array = phpbb_gmgetdate($expected);
+
+ $actual = gmmktime(
+ $date_array['hours'],
+ $date_array['minutes'],
+ $date_array['seconds'],
+ $date_array['mon'],
+ $date_array['mday'],
+ $date_array['year']
+ );
+
+ $this->assertEquals($expected, $actual);
+ }
+}