aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wrapper/gmgetdate_test.php
blob: 08ee491c0f1b90f0f9f5125ad1574bc52671a023 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/

class phpbb_wrapper_gmgetdate_test extends phpbb_test_case
{
	public static function phpbb_gmgetdate_data()
	{
		return array(
			array(''),
			array('UTC'),
			array('Europe/Berlin'),
			array('America/Los_Angeles'),
			array('Antarctica/South_Pole'),
		);
	}

	/**
	 * @dataProvider phpbb_gmgetdate_data
	 */
	public function test_phpbb_gmgetdate($timezone_identifier)
	{
		if ($timezone_identifier)
		{
			$current_timezone = date_default_timezone_get();
			date_default_timezone_set($timezone_identifier);
		}

		$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']
		);

		// Calling second-granularity time functions twice isn't guaranteed to
		// give the same results. As long as they're in the right order, allow
		// a 1 second difference.
		$this->assertGreaterThanOrEqual(
			$expected, $actual,
			'Expected second time to be after (or equal to) the previous one'
		);
		$this->assertLessThanOrEqual(
			1,
			abs($actual - $expected),
			"Expected $actual to be within 1 second of $expected."
		);

		if (isset($current_timezone))
		{
			date_default_timezone_set($current_timezone);
		}
	}
}