-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMigration_UI_Test.php
More file actions
540 lines (462 loc) · 13.8 KB
/
Migration_UI_Test.php
File metadata and controls
540 lines (462 loc) · 13.8 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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
<?php
/**
* Migration UI Utility Tests.
*
* Tests for the Migration_UI utility class.
*
* @since 0.0.1
*
* @package StellarWP\Migrations\Tests\Utilities
*/
declare( strict_types=1 );
namespace StellarWP\Migrations\Tests\Utilities;
use DateTime;
use lucatume\WPBrowser\TestCase\WPTestCase;
use StellarWP\Migrations\Contracts\Migration;
use StellarWP\Migrations\Enums\Operation;
use StellarWP\Migrations\Enums\Status;
use StellarWP\Migrations\Models\Execution;
use StellarWP\Migrations\Utilities\Migration_UI;
use StellarWP\Schema\Tables\Contracts\Table;
/**
* Migration UI Utility Tests.
*
* @since 0.0.1
*
* @package StellarWP\Migrations\Tests\Utilities
*/
class Migration_UI_Test extends WPTestCase {
/**
* Creates a mock Migration with the given behavior.
*
* @param array<string, mixed> $config Configuration for the mock (get_status, get_total_items, get_latest_execution, is_applicable, can_run).
*
* @return Migration
*/
private function create_migration_mock( array $config = [] ): Migration {
$migration = $this->createMock( Migration::class );
$status = $config['get_status'] ?? Status::PENDING();
$migration->method( 'get_status' )->willReturn( $status );
$total_items = $config['get_total_items'] ?? 10;
$migration->method( 'get_total_items' )->willReturnCallback(
static function ( ?Operation $op = null ) use ( $total_items, $config ) {
if ( $op !== null && $op->getValue() === Operation::DOWN()->getValue() ) {
return $config['get_total_items_down'] ?? $total_items;
}
return $total_items;
}
);
$migration->method( 'get_latest_execution' )->willReturn( $config['get_latest_execution'] ?? null );
$migration->method( 'is_applicable' )->willReturn( $config['is_applicable'] ?? true );
$migration->method( 'can_run' )->willReturn( $config['can_run'] ?? true );
return $migration;
}
/**
* Creates a test Execution with optional overrides.
*
* @param array<string, mixed> $overrides Attributes to override defaults.
*
* @return Execution
*/
private function create_execution( array $overrides = [] ): Execution {
$defaults = [
'id' => 1,
'migration_id' => 'test_migration',
'start_date_gmt' => new DateTime( '2024-01-15 10:00:00' ),
'end_date_gmt' => new DateTime( '2024-01-15 10:05:00' ),
'status' => Status::COMPLETED()->getValue(),
'items_total' => 100,
'items_processed' => 100,
'parent_execution_id' => null,
'created_at' => new DateTime( '2024-01-15 09:55:00' ),
];
return new Execution( array_merge( $defaults, $overrides ) );
}
// -------------------------------------------------------------------------
// get_display_status()
// -------------------------------------------------------------------------
/**
* @test
*/
public function it_should_return_not_applicable_when_pending_and_zero_items(): void {
$migration = $this->create_migration_mock(
[
'get_status' => Status::PENDING(),
'get_total_items' => 0,
]
);
$ui = new Migration_UI( $migration );
$result = $ui->get_display_status();
$this->assertTrue( $result->equals( Status::NOT_APPLICABLE() ) );
}
/**
* @test
*/
public function it_should_return_pending_when_pending_and_has_items(): void {
$migration = $this->create_migration_mock(
[
'get_status' => Status::PENDING(),
'get_total_items' => 5,
]
);
$ui = new Migration_UI( $migration );
$result = $ui->get_display_status();
$this->assertTrue( $result->equals( Status::PENDING() ) );
}
/**
* @test
*/
public function it_should_return_failed_when_reverted_and_parent_execution_failed(): void {
$parent_execution = $this->create_execution(
[
'id' => 100,
'status' => Status::FAILED()->getValue(),
]
);
$latest_execution = $this->create_execution(
[
'id' => 101,
'parent_execution_id' => 100,
'status' => Status::REVERTED()->getValue(),
]
);
$migration = $this->create_migration_mock(
[
'get_status' => Status::REVERTED(),
'get_latest_execution' => $latest_execution,
]
);
$ui = new Migration_UI( $migration );
if ( function_exists( 'uopz_set_return' ) ) {
uopz_set_return( Table::class, 'get_by_id', $parent_execution, false );
}
try {
$result = $ui->get_display_status();
$this->assertTrue( $result->equals( Status::FAILED() ) );
} finally {
if ( function_exists( 'uopz_unset_return' ) ) {
uopz_unset_return( Table::class, 'get_by_id' );
}
}
}
/**
* @test
*/
public function it_should_return_reverted_when_reverted_and_no_parent_execution(): void {
$migration = $this->create_migration_mock(
[
'get_status' => Status::REVERTED(),
'get_latest_execution' => null,
]
);
$ui = new Migration_UI( $migration );
$result = $ui->get_display_status();
$this->assertTrue( $result->equals( Status::REVERTED() ) );
}
/**
* @test
*/
public function it_should_return_status_as_is_when_completed(): void {
$migration = $this->create_migration_mock(
[
'get_status' => Status::COMPLETED(),
'get_total_items' => 10,
]
);
$ui = new Migration_UI( $migration );
$result = $ui->get_display_status();
$this->assertTrue( $result->equals( Status::COMPLETED() ) );
}
// -------------------------------------------------------------------------
// get_display_status_label()
// -------------------------------------------------------------------------
/**
* @test
*/
public function it_should_return_default_label_when_no_parent_execution(): void {
$migration = $this->create_migration_mock(
[
'get_status' => Status::COMPLETED(),
'get_latest_execution' => null,
]
);
$ui = new Migration_UI( $migration );
$result = $ui->get_display_status_label();
$this->assertSame( Status::COMPLETED()->get_label(), $result );
}
/**
* @test
*/
public function it_should_append_auto_reverted_when_reverted_and_parent_failed(): void {
$parent_execution = $this->create_execution(
[
'id' => 100,
'status' => Status::FAILED()->getValue(),
]
);
$latest_execution = $this->create_execution(
[
'id' => 101,
'parent_execution_id' => 100,
'status' => Status::REVERTED()->getValue(),
]
);
$migration = $this->create_migration_mock(
[
'get_status' => Status::REVERTED(),
'get_latest_execution' => $latest_execution,
]
);
$ui = new Migration_UI( $migration );
if ( function_exists( 'uopz_set_return' ) ) {
uopz_set_return( Table::class, 'get_by_id', $parent_execution, false );
}
try {
$result = $ui->get_display_status_label();
$this->assertStringContainsString( Status::FAILED()->get_label(), $result );
$this->assertStringContainsString( ' (auto-reverted)', $result );
} finally {
if ( function_exists( 'uopz_unset_return' ) ) {
uopz_unset_return( Table::class, 'get_by_id' );
}
}
}
/**
* @test
*/
public function it_should_append_auto_revert_failed_when_failed_and_parent_failed(): void {
$parent_execution = $this->create_execution(
[
'id' => 100,
'status' => Status::FAILED()->getValue(),
]
);
$latest_execution = $this->create_execution(
[
'id' => 101,
'parent_execution_id' => 100,
'status' => Status::FAILED()->getValue(),
]
);
$migration = $this->create_migration_mock(
[
'get_status' => Status::FAILED(),
'get_latest_execution' => $latest_execution,
]
);
$ui = new Migration_UI( $migration );
if ( function_exists( 'uopz_set_return' ) ) {
uopz_set_return( Table::class, 'get_by_id', $parent_execution, false );
}
try {
$result = $ui->get_display_status_label();
$this->assertStringContainsString( Status::FAILED()->get_label(), $result );
$this->assertStringContainsString( ' (auto-revert failed)', $result );
} finally {
if ( function_exists( 'uopz_unset_return' ) ) {
uopz_unset_return( Table::class, 'get_by_id' );
}
}
}
// -------------------------------------------------------------------------
// get_run_action_label()
// -------------------------------------------------------------------------
/**
* @test
* @dataProvider run_action_label_provider
*
* @param Status $display_status Display status (used to drive the mock).
* @param string $expected Expected label substring.
*/
public function it_should_return_correct_run_action_label( Status $display_status, string $expected ): void {
$migration = $this->create_migration_mock(
[
'get_status' => $display_status,
'get_total_items' => 10,
]
);
$ui = new Migration_UI( $migration );
$result = $ui->get_run_action_label();
$this->assertStringContainsString( $expected, $result );
}
/**
* Data provider for run action label.
*
* @return array<string, array<int, mixed>>
*/
public static function run_action_label_provider(): array {
return [
'completed' => [ Status::COMPLETED(), 'Re-run' ],
'reverted' => [ Status::REVERTED(), 'Re-run' ],
'failed' => [ Status::FAILED(), 'Retry' ],
'pending' => [ Status::PENDING(), 'Start' ],
];
}
// -------------------------------------------------------------------------
// show_run()
// -------------------------------------------------------------------------
/**
* @test
*/
public function it_should_show_run_when_applicable_can_run_has_items_and_runnable_status(): void {
$migration = $this->create_migration_mock(
[
'get_status' => Status::PENDING(),
'get_total_items' => 5,
'is_applicable' => true,
'can_run' => true,
]
);
$ui = new Migration_UI( $migration );
$result = $ui->show_run();
$this->assertTrue( $result );
}
/**
* @test
*/
public function it_should_not_show_run_when_zero_items(): void {
$migration = $this->create_migration_mock(
[
'get_status' => Status::PENDING(),
'get_total_items' => 0,
'is_applicable' => true,
'can_run' => true,
]
);
$ui = new Migration_UI( $migration );
$result = $ui->show_run();
$this->assertFalse( $result );
}
/**
* @test
*/
public function it_should_not_show_run_when_not_applicable(): void {
$migration = $this->create_migration_mock(
[
'get_status' => Status::PENDING(),
'get_total_items' => 5,
'is_applicable' => false,
'can_run' => true,
]
);
$ui = new Migration_UI( $migration );
$result = $ui->show_run();
$this->assertFalse( $result );
}
/**
* @test
*/
public function it_should_not_show_run_when_cannot_run(): void {
$migration = $this->create_migration_mock(
[
'get_status' => Status::PENDING(),
'get_total_items' => 5,
'is_applicable' => true,
'can_run' => false,
]
);
$ui = new Migration_UI( $migration );
$result = $ui->show_run();
$this->assertFalse( $result );
}
/**
* @test
*/
public function it_should_show_run_for_completed_and_reverted(): void {
foreach ( [ Status::COMPLETED(), Status::REVERTED() ] as $status ) {
$migration = $this->create_migration_mock(
[
'get_status' => $status,
'get_total_items' => 5,
'is_applicable' => true,
'can_run' => true,
]
);
$ui = new Migration_UI( $migration );
$result = $ui->show_run();
$this->assertTrue( $result, 'show_run should be true for status: ' . $status->getValue() );
}
}
// -------------------------------------------------------------------------
// show_rollback()
// -------------------------------------------------------------------------
/**
* @test
*/
public function it_should_show_rollback_when_applicable_completed_and_has_down_items(): void {
$migration = $this->create_migration_mock(
[
'get_status' => Status::COMPLETED(),
'get_total_items' => 10,
'get_total_items_down' => 10,
'is_applicable' => true,
]
);
$ui = new Migration_UI( $migration );
$result = $ui->show_rollback();
$this->assertTrue( $result );
}
/**
* @test
*/
public function it_should_not_show_rollback_when_zero_down_items(): void {
$migration = $this->create_migration_mock(
[
'get_status' => Status::COMPLETED(),
'get_total_items' => 10,
'get_total_items_down' => 0,
'is_applicable' => true,
]
);
$ui = new Migration_UI( $migration );
$result = $ui->show_rollback();
$this->assertFalse( $result );
}
/**
* @test
*/
public function it_should_not_show_rollback_when_not_applicable(): void {
$migration = $this->create_migration_mock(
[
'get_status' => Status::COMPLETED(),
'get_total_items_down' => 10,
'is_applicable' => false,
]
);
$ui = new Migration_UI( $migration );
$result = $ui->show_rollback();
$this->assertFalse( $result );
}
/**
* @test
*/
public function it_should_not_show_rollback_when_pending(): void {
$migration = $this->create_migration_mock(
[
'get_status' => Status::PENDING(),
'get_total_items_down' => 10,
'is_applicable' => true,
]
);
$ui = new Migration_UI( $migration );
$result = $ui->show_rollback();
$this->assertFalse( $result );
}
/**
* @test
*/
public function it_should_show_rollback_for_failed_and_canceled(): void {
foreach ( [ Status::FAILED(), Status::CANCELED() ] as $status ) {
$migration = $this->create_migration_mock(
[
'get_status' => $status,
'get_total_items_down' => 5,
'is_applicable' => true,
]
);
$ui = new Migration_UI( $migration );
$result = $ui->show_rollback();
$this->assertTrue( $result, 'show_rollback should be true for status: ' . $status->getValue() );
}
}
}