-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathUtilsTest.php
More file actions
283 lines (263 loc) · 6.89 KB
/
UtilsTest.php
File metadata and controls
283 lines (263 loc) · 6.89 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
<?php
/**
* Unit Tests: Util Functions
*
* @package Parsely\Tests
*/
declare(strict_types=1);
namespace Parsely\Tests\Unit\Utils;
use Parsely\Utils\Utils;
use Yoast\WPTestUtils\BrainMonkey\TestCase;
/**
* Unit Tests: Util Functions
*
* @phpstan-type Test_UTC_Date_Format_Data array{
* args: array{
* days: int,
* },
* expected_output: string,
* msg: string,
* }
*
* @phpstan-type Test_Formatted_Number_Data array{
* args: array{
* number: int,
* },
* expected_output: string,
* msg: string,
* }
*
* @phpstan-type Test_Formatted_Time_Data array{
* args: array{
* seconds: int,
* },
* expected_output: string,
* msg: string,
* }
*
* @phpstan-type Test_Convert_To_Associative_Data array{
* args: array{
* obj: \stdClass,
* },
* expected_output: array<mixed>,
* msg: string,
* }
*/
final class UtilsTest extends TestCase {
/**
* Tests get_utc_date_format function.
*
* @covers function \Parsely\Utils\Utils::get_utc_date_format
*/
public function test_get_utc_date_format(): void {
$current_date = gmdate( Utils::DATE_UTC_FORMAT );
$past_date = gmdate( Utils::DATE_UTC_FORMAT, strtotime( '-1 days' ) );
$future_date = gmdate( Utils::DATE_UTC_FORMAT, strtotime( '1 days' ) );
/**
* Variable.
*
* @var array<Test_UTC_Date_Format_Data>
*/
$tests_data = array(
array(
'args' => array( 'days' => 0 ),
'expected_output' => $current_date,
'msg' => 'Should match with the format of the current date.',
),
array(
'args' => array( 'days' => -1 ),
'expected_output' => $past_date,
'msg' => 'Should match with the format of the past date.',
),
array(
'args' => array( 'days' => 1 ),
'expected_output' => $future_date,
'msg' => 'Should match with the format of the future date.',
),
);
foreach ( $tests_data as $t ) {
$args = $t['args'];
$output = Utils::get_utc_date_format( $args['days'] );
self::assertSame( $t['expected_output'], $output, $t['msg'] );
}
}
/**
* Tests get_formatted_number function.
*
* @covers function \Parsely\Utils\Utils::get_formatted_number
*/
public function test_get_formatted_number(): void {
$this->mock_wordpress_functions();
/**
* Variable.
*
* @var array<Test_Formatted_Number_Data>
*/
$tests_data = array(
array(
'args' => array( 'number' => 0 ),
'expected_output' => '0',
'msg' => 'Should show number without any special format.',
),
array(
'args' => array( 'number' => 10 ),
'expected_output' => '10',
'msg' => 'Should show number without any special format.',
),
array(
'args' => array( 'number' => 1000 ),
'expected_output' => '1k',
'msg' => 'Should show number in thousands format.',
),
array(
'args' => array( 'number' => 1100 ),
'expected_output' => '1.1k',
'msg' => 'Should show number in thousands format.',
),
array(
'args' => array( 'number' => 1000000 ),
'expected_output' => '1M',
'msg' => 'Should show number in millions format.',
),
array(
'args' => array( 'number' => 1000000000 ),
'expected_output' => '1B',
'msg' => 'Should show number in billions format.',
),
);
foreach ( $tests_data as $t ) {
$args = $t['args'];
$output = Utils::get_formatted_number( (string) $args['number'] );
self::assertSame( $t['expected_output'], $output, $t['msg'] );
}
}
/**
* Tests get_formatted_time function.
*
* @covers function \Parsely\Utils\Utils::get_formatted_time
*/
public function test_get_formatted_time(): void {
$this->mock_wordpress_functions();
/**
* Variable.
*
* @var array<Test_Formatted_Time_Data>
*/
$tests_data = array(
array(
'args' => array( 'seconds' => 0 ),
'expected_output' => '0 sec.',
'msg' => 'Should show seconds.',
),
array(
'args' => array( 'seconds' => 0.5 ),
'expected_output' => '1 sec.',
'msg' => 'Should show seconds.',
),
array(
'args' => array( 'seconds' => 0.5000 ),
'expected_output' => '1 sec.',
'msg' => 'Should show seconds.',
),
array(
'args' => array( 'seconds' => 0.51 ),
'expected_output' => '1 sec.',
'msg' => 'Should show seconds.',
),
array(
'args' => array( 'seconds' => 59 ),
'expected_output' => '59 sec.',
'msg' => 'Should show seconds.',
),
array(
'args' => array( 'seconds' => 65 ),
'expected_output' => '1:05',
'msg' => 'Should show minute and seconds.',
),
array(
'args' => array( 'seconds' => 3665 ),
'expected_output' => '1:01:05',
'msg' => 'Should show hour, minute and seconds.',
),
);
foreach ( $tests_data as $t ) {
$args = $t['args'];
$output = Utils::get_formatted_time( $args['seconds'] );
self::assertSame( $t['expected_output'], $output, $t['msg'] );
}
}
/**
* Tests convert_to_associative_array function.
*
* @covers function \Parsely\Utils\Utils::convert_to_associative_array
*/
public function test_convert_to_associative_array(): void {
/**
* Variable.
*
* @var array<Test_Convert_To_Associative_Data>
*/
$tests_data = array(
array(
'args' => array(
'obj' => (object) array(
'first' => 1,
'second' => 2,
),
),
'expected_output' => array(
'first' => 1,
'second' => 2,
),
'msg' => 'Should convert simple stdClass to array.',
),
array(
'args' => array(
'obj' => (object) array(
'first' => 1,
'second' => (object) array(
'third' => 3,
'fourth' => (object) array( 'five' => 5 ),
),
),
),
'expected_output' => array(
'first' => 1,
'second' => array(
'third' => 3,
'fourth' => array( 'five' => 5 ),
),
),
'msg' => 'Should convert multi-level nested stdClass to array.',
),
);
foreach ( $tests_data as $t ) {
$args = $t['args'];
$output = Utils::convert_to_associative_array( $args['obj'] );
self::assertSame( $t['expected_output'], $output, $t['msg'] );
}
}
/**
* Mocks some WordPress functions needed by the calling tests.
*
* @since 3.9.1
*/
public function mock_wordpress_functions(): void {
// Mock __() function.
\Brain\Monkey\Functions\expect( '__' )
->with( \Mockery::type( 'string' ) )
->andReturnUsing(
function ( string $str ): string {
return $str;
}
);
// Mock esc_html() function.
\Brain\Monkey\Functions\expect( 'esc_html' )
->with( \Mockery::type( 'string' ) )
->andReturnUsing(
function ( string $str ): string {
return $str;
}
);
}
}