mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
The `Europe/Kiev` timezone has been deprecated in PHP 8.2 and replaced with `Europe/Kyiv`. The tests updated in this commit are testing the WordPress date/time functionality. They are **not** testing whether WP or PHP can handle deprecated timezone names correctly. To ensure the tests follow the original purpose, the use of `Europe/Kiev` within these tests is now replaced with the `Europe/Helsinki` timezone, which is within the same timezone as `Europe/Kyiv`. This should ensure that these tests run without issue and test what they are supposed to be testing on every supported PHP version (unless at some point in the future `Europe/Helsinki` would be renamed, but that's a bridge to cross if and when). Note: Separate tests should/will be added to ensure that relevant date/time related functions handle a deprecated timezone correctly, but that is not something ''these'' tests are supposed to be testing. Follow-up to [45853], [45856], [45876], [45882], [45887], [45908], [45914], [46577], [46154], [46580], [46864], [46974], [54207]. Props jrf, costdev. See #56468. git-svn-id: https://develop.svn.wordpress.org/trunk@54217 602fd350-edb4-49c9-b593-d223f7449a82
140 lines
4.7 KiB
PHP
140 lines
4.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group date
|
|
* @group datetime
|
|
* @group post
|
|
* @covers ::get_post_time
|
|
* @covers ::get_post_modified_time
|
|
*/
|
|
class Tests_Date_GetPostTime extends WP_UnitTestCase {
|
|
|
|
/**
|
|
* Cleans up.
|
|
*/
|
|
public function tear_down() {
|
|
// Reset the timezone option to the default value.
|
|
update_option( 'timezone_string', '' );
|
|
|
|
parent::tear_down();
|
|
}
|
|
|
|
/**
|
|
* @ticket 28310
|
|
*/
|
|
public function test_get_post_time_returns_correct_time_with_post_id() {
|
|
$post_id = self::factory()->post->create( array( 'post_date' => '2014-03-01 16:35:00' ) );
|
|
|
|
$this->assertSame( '16:35:00', get_post_time( 'H:i:s', false, $post_id ) );
|
|
}
|
|
|
|
/**
|
|
* @ticket 28310
|
|
*/
|
|
public function test_get_post_time_returns_false_with_null_or_non_existing_post() {
|
|
$this->assertFalse( get_post_time() );
|
|
$this->assertFalse( get_post_time( 'h:i:s' ) );
|
|
$this->assertFalse( get_post_time( '', false, 9 ) );
|
|
$this->assertFalse( get_post_time( 'h:i:s', false, 9 ) );
|
|
}
|
|
|
|
/**
|
|
* @ticket 28310
|
|
*/
|
|
public function test_get_post_modified_time_returns_correct_time_with_post_id() {
|
|
$post_id = self::factory()->post->create( array( 'post_date' => '2014-03-01 16:35:00' ) );
|
|
|
|
$this->assertSame( '16:35:00', get_post_modified_time( 'H:i:s', false, $post_id ) );
|
|
}
|
|
|
|
/**
|
|
* @ticket 28310
|
|
*/
|
|
public function test_get_post_modified_time_returns_false_with_null_or_non_existing_post() {
|
|
$this->assertFalse( get_post_modified_time() );
|
|
$this->assertFalse( get_post_modified_time( 'h:i:s' ) );
|
|
$this->assertFalse( get_post_modified_time( '', false, 9 ) );
|
|
$this->assertFalse( get_post_modified_time( 'h:i:s', false, 9 ) );
|
|
}
|
|
|
|
/**
|
|
* @ticket 25002
|
|
*/
|
|
public function test_should_return_wp_timestamp() {
|
|
$timezone = 'Europe/Helsinki';
|
|
update_option( 'timezone_string', $timezone );
|
|
|
|
$datetime = new DateTimeImmutable( 'now', new DateTimeZone( $timezone ) );
|
|
$mysql = $datetime->format( 'Y-m-d H:i:s' );
|
|
$timestamp = $datetime->getTimestamp();
|
|
$wp_timestamp = $datetime->getTimestamp() + $datetime->getOffset();
|
|
|
|
$post_id = self::factory()->post->create(
|
|
array(
|
|
'post_date' => $mysql,
|
|
'post_modified' => $mysql,
|
|
)
|
|
);
|
|
|
|
$this->assertSame( $wp_timestamp, get_post_time( 'U', false, $post_id ) );
|
|
$this->assertSame( $wp_timestamp, get_post_time( 'G', false, $post_id ) );
|
|
$this->assertSame( $timestamp, get_post_time( 'U', true, $post_id ) );
|
|
$this->assertSame( $timestamp, get_post_time( 'G', true, $post_id ) );
|
|
$this->assertSame( $wp_timestamp, get_post_modified_time( 'U', false, $post_id ) );
|
|
$this->assertSame( $wp_timestamp, get_post_modified_time( 'G', false, $post_id ) );
|
|
$this->assertSame( $timestamp, get_post_modified_time( 'U', true, $post_id ) );
|
|
$this->assertSame( $timestamp, get_post_modified_time( 'G', true, $post_id ) );
|
|
}
|
|
|
|
/**
|
|
* @ticket 25002
|
|
*/
|
|
public function test_should_return_time() {
|
|
$timezone = 'Europe/Helsinki';
|
|
update_option( 'timezone_string', $timezone );
|
|
|
|
$datetime = new DateTimeImmutable( 'now', new DateTimeZone( $timezone ) );
|
|
$mysql = $datetime->format( 'Y-m-d H:i:s' );
|
|
$rfc3339 = $datetime->format( DATE_RFC3339 );
|
|
$rfc3339_utc = $datetime->setTimezone( new DateTimeZone( 'UTC' ) )->format( DATE_RFC3339 );
|
|
$post_id = self::factory()->post->create(
|
|
array(
|
|
'post_date' => $mysql,
|
|
'post_modified' => $mysql,
|
|
)
|
|
);
|
|
|
|
$this->assertSame( $rfc3339, get_post_time( DATE_RFC3339, false, $post_id ) );
|
|
$this->assertSame( $rfc3339_utc, get_post_time( DATE_RFC3339, true, $post_id ) );
|
|
$this->assertSame( $rfc3339, get_post_time( DATE_RFC3339, false, $post_id, true ) );
|
|
$this->assertSame( $rfc3339_utc, get_post_time( DATE_RFC3339, true, $post_id, true ) );
|
|
$this->assertSame( $rfc3339, get_post_modified_time( DATE_RFC3339, false, $post_id ) );
|
|
$this->assertSame( $rfc3339_utc, get_post_modified_time( DATE_RFC3339, true, $post_id ) );
|
|
$this->assertSame( $rfc3339, get_post_modified_time( DATE_RFC3339, false, $post_id, true ) );
|
|
$this->assertSame( $rfc3339_utc, get_post_modified_time( DATE_RFC3339, true, $post_id, true ) );
|
|
}
|
|
|
|
/**
|
|
* @ticket 48384
|
|
*/
|
|
public function test_should_keep_utc_time_on_timezone_change() {
|
|
$timezone = 'UTC';
|
|
update_option( 'timezone_string', $timezone );
|
|
|
|
$datetime = new DateTimeImmutable( 'now', new DateTimeZone( $timezone ) );
|
|
$mysql = $datetime->format( 'Y-m-d H:i:s' );
|
|
$rfc3339 = $datetime->format( DATE_RFC3339 );
|
|
$post_id = self::factory()->post->create(
|
|
array(
|
|
'post_date' => $mysql,
|
|
'post_modified' => $mysql,
|
|
)
|
|
);
|
|
|
|
update_option( 'timezone_string', 'Europe/Helsinki' );
|
|
|
|
$this->assertSame( $rfc3339, get_post_time( DATE_RFC3339, true, $post_id ) );
|
|
$this->assertSame( $rfc3339, get_post_modified_time( DATE_RFC3339, true, $post_id ) );
|
|
}
|
|
}
|