blob: a838cfdba976edf96fb190e2dae203f3d9bf2d05 (
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
|
<?php
/**
*
* @package testing
* @copyright (c) 2011 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
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);
}
}
|