forked from WordPress/wordpress-develop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostTime.php
More file actions
88 lines (76 loc) · 3.22 KB
/
postTime.php
File metadata and controls
88 lines (76 loc) · 3.22 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
/**
* @group date
* @group datetime
*/
class Tests_Date_Post_Time extends WP_UnitTestCase {
/**
* @ticket 25002
*/
public function test_should_return_wp_timestamp() {
$timezone = 'Europe/Kiev';
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->assertEquals( $wp_timestamp, get_post_time( 'U', false, $post_id ) );
$this->assertEquals( $wp_timestamp, get_post_time( 'G', false, $post_id ) );
$this->assertEquals( $timestamp, get_post_time( 'U', true, $post_id ) );
$this->assertEquals( $timestamp, get_post_time( 'G', true, $post_id ) );
$this->assertEquals( $wp_timestamp, get_post_modified_time( 'U', false, $post_id ) );
$this->assertEquals( $wp_timestamp, get_post_modified_time( 'G', false, $post_id ) );
$this->assertEquals( $timestamp, get_post_modified_time( 'U', true, $post_id ) );
$this->assertEquals( $timestamp, get_post_modified_time( 'G', true, $post_id ) );
}
/**
* @ticket 25002
*/
public function test_should_return_time() {
$timezone = 'Europe/Kiev';
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->assertEquals( $rfc3339, get_post_time( DATE_RFC3339, false, $post_id ) );
$this->assertEquals( $rfc3339_utc, get_post_time( DATE_RFC3339, true, $post_id ) );
$this->assertEquals( $rfc3339, get_post_time( DATE_RFC3339, false, $post_id, true ) );
$this->assertEquals( $rfc3339_utc, get_post_time( DATE_RFC3339, true, $post_id, true ) );
$this->assertEquals( $rfc3339, get_post_modified_time( DATE_RFC3339, false, $post_id ) );
$this->assertEquals( $rfc3339_utc, get_post_modified_time( DATE_RFC3339, true, $post_id ) );
$this->assertEquals( $rfc3339, get_post_modified_time( DATE_RFC3339, false, $post_id, true ) );
$this->assertEquals( $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/Kiev' );
$this->assertEquals( $rfc3339, get_post_time( DATE_RFC3339, true, $post_id ) );
$this->assertEquals( $rfc3339, get_post_modified_time( DATE_RFC3339, true, $post_id ) );
}
}