mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 12:03:21 +01:00
61 lines
1.2 KiB
PHP
61 lines
1.2 KiB
PHP
<?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.
|
|
*
|
|
*/
|
|
|
|
require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php';
|
|
|
|
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']
|
|
);
|
|
|
|
$this->assertEquals($expected, $actual);
|
|
|
|
if (isset($current_timezone))
|
|
{
|
|
date_default_timezone_set($current_timezone);
|
|
}
|
|
}
|
|
}
|