forked from codeigniter4/CodeIgniter4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommandsTest.php
More file actions
493 lines (391 loc) · 15.9 KB
/
CommandsTest.php
File metadata and controls
493 lines (391 loc) · 15.9 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
<?php
declare(strict_types=1);
/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <[email protected]>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace CodeIgniter\CLI;
use CodeIgniter\Autoloader\FileLocator;
use CodeIgniter\Autoloader\FileLocatorInterface;
use CodeIgniter\CLI\Exceptions\CommandNotFoundException;
use CodeIgniter\CodeIgniter;
use CodeIgniter\Log\Logger;
use CodeIgniter\Test\CIUnitTestCase;
use CodeIgniter\Test\ReflectionHelper;
use CodeIgniter\Test\StreamFilterTrait;
use Config\Services;
use ErrorException;
use PHPUnit\Framework\Attributes\After;
use PHPUnit\Framework\Attributes\Before;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\Group;
use ReflectionClass;
use RuntimeException;
use Tests\Support\Commands\Legacy\AppInfo;
use Tests\Support\Commands\Modern\AppAboutCommand;
use Tests\Support\Duplicates\DuplicateLegacy;
use Tests\Support\Duplicates\DuplicateModern;
use Tests\Support\InvalidCommands\EmptyCommandName;
use Tests\Support\InvalidCommands\NoAttributeCommand;
/**
* @internal
*/
#[CoversClass(Commands::class)]
#[CoversClass(CommandNotFoundException::class)]
#[Group('Others')]
final class CommandsTest extends CIUnitTestCase
{
use ReflectionHelper;
use StreamFilterTrait;
#[After]
#[Before]
protected function resetAll(): void
{
$this->resetServices();
CLI::reset();
}
private function getUndecoratedBuffer(): string
{
return preg_replace('/\e\[[^m]+m/', '', $this->getStreamFilterBuffer()) ?? '';
}
private function copyCommand(string $path): void
{
if (! is_dir(APPPATH . 'Commands')) {
mkdir(APPPATH . 'Commands');
}
copy($path, APPPATH . 'Commands/' . basename($path));
clearstatcache(true);
}
private function deleteCommand(string $path): void
{
if (is_file(APPPATH . 'Commands/' . basename($path))) {
unlink(APPPATH . 'Commands/' . basename($path));
}
clearstatcache(true);
}
public function testRunOnUnknownCommand(): void
{
$commands = new Commands();
$this->assertSame(EXIT_ERROR, $commands->runLegacy('app:unknown', []));
$this->assertArrayNotHasKey('app:unknown', $commands->getCommands());
$this->assertSame("\nCommand \"app:unknown\" not found.\n", $this->getUndecoratedBuffer());
$this->resetStreamFilterBuffer();
CLI::resetLastWrite();
$this->assertSame(EXIT_ERROR, $commands->runCommand('app:unknown', [], []));
$this->assertArrayNotHasKey('app:unknown', $commands->getModernCommands());
$this->assertSame("\nCommand \"app:unknown\" not found.\n", $this->getUndecoratedBuffer());
}
public function testRunOnUnknownLegacyCommandButWithOneAlternative(): void
{
$commands = new Commands();
$this->assertSame(EXIT_ERROR, $commands->runLegacy('app:inf', []));
$this->assertSame(
<<<'EOT'
Command "app:inf" not found.
Did you mean this?
app:info
EOT,
$this->getUndecoratedBuffer(),
);
}
public function testRunOnUnknownModernCommandButWithOneAlternative(): void
{
$commands = new Commands();
$this->assertSame(EXIT_ERROR, $commands->runCommand('app:ab', [], []));
$this->assertSame(
<<<'EOT'
Command "app:ab" not found.
Did you mean this?
app:about
EOT,
$this->getUndecoratedBuffer(),
);
}
public function testRunOnUnknownLegacyCommandButWithMultipleAlternatives(): void
{
$commands = new Commands();
$this->assertSame(EXIT_ERROR, $commands->runLegacy('app:', []));
$this->assertSame(
<<<'EOT'
Command "app:" not found.
Did you mean one of these?
app:about
app:destructive
app:info
EOT,
$this->getUndecoratedBuffer(),
);
}
public function testRunOnUnknownLegacyCommandAlsoSuggestsModernAlternatives(): void
{
$commands = new Commands();
$this->assertSame(EXIT_ERROR, $commands->runLegacy('app:ab', []));
$this->assertSame(
<<<'EOT'
Command "app:ab" not found.
Did you mean this?
app:about
EOT,
$this->getUndecoratedBuffer(),
);
}
public function testRunOnUnknownModernCommandAlsoSuggestsLegacyAlternatives(): void
{
$commands = new Commands();
$this->assertSame(EXIT_ERROR, $commands->runCommand('app:inf', [], []));
$this->assertSame(
<<<'EOT'
Command "app:inf" not found.
Did you mean this?
app:info
EOT,
$this->getUndecoratedBuffer(),
);
}
public function testRunOnUnknownModernCommandButWithMultipleAlternatives(): void
{
$commands = new Commands();
$this->assertSame(EXIT_ERROR, $commands->runCommand('clear', [], []));
$this->assertSame(
<<<'EOT'
Command "clear" not found.
Did you mean one of these?
cache:clear
debugbar:clear
logs:clear
EOT,
$this->getUndecoratedBuffer(),
);
}
public function testRunOnAbstractLegacyCommandCannotBeRun(): void
{
$commands = new Commands();
$this->assertSame(EXIT_ERROR, $commands->runLegacy('app:pablo', []));
$this->assertArrayNotHasKey('app:pablo', $commands->getCommands());
$this->assertSame("\nCommand \"app:pablo\" not found.\n", $this->getUndecoratedBuffer());
}
public function testRunOnKnownLegacyCommand(): void
{
$commands = new Commands();
$this->assertSame(EXIT_SUCCESS, $commands->runLegacy('app:info', []));
$this->assertArrayHasKey('app:info', $commands->getCommands());
$this->assertSame(
sprintf("\nCodeIgniter Version: %s\n", CodeIgniter::CI_VERSION),
$this->getUndecoratedBuffer(),
);
}
public function testRunOnKnownModernCommand(): void
{
$commands = new Commands();
$this->assertSame(EXIT_SUCCESS, $commands->runCommand('app:about', ['a'], []));
$this->assertArrayHasKey('app:about', $commands->getModernCommands());
$this->assertSame(
sprintf("\nCodeIgniter Version: %s\n", CodeIgniter::CI_VERSION),
$this->getUndecoratedBuffer(),
);
}
public function testRunOnLegacyCommandReturningNullIsDeprecated(): void
{
$this->expectException(ErrorException::class);
$this->expectExceptionMessage('Since v4.8.0, commands must return an integer exit code. Last command "null:return" exited with null. Defaulting to EXIT_SUCCESS.');
(new Commands())->runLegacy('null:return', []);
}
public function testRunMethodIsDeprecatedInFavorOfRunLegacy(): void
{
$this->expectException(ErrorException::class);
$this->expectExceptionMessage('Since v4.8.0, "CodeIgniter\\CLI\\Commands::run()" is deprecated. Use "CodeIgniter\\CLI\\Commands::runLegacy()" instead.');
(new Commands())->run('app:info', []);
}
public function testDiscoveryWarnsWhenSameCommandNameExistsInBothRegistries(): void
{
$this->injectDuplicateLocator();
$message = wordwrap(
sprintf(
'Warning: The "dup:test" command is defined as both legacy (%s) and modern (%s). The legacy command will be executed. Please rename or remove one.',
DuplicateLegacy::class,
DuplicateModern::class,
),
CLI::getWidth(),
);
$commands = new Commands();
$this->assertSame("\n{$message}\n", $this->getUndecoratedBuffer());
$this->assertArrayHasKey('dup:test', $commands->getCommands());
$this->assertArrayHasKey('dup:test', $commands->getModernCommands());
}
public function testHasLegacyCommand(): void
{
$commands = new Commands();
$this->assertTrue($commands->hasLegacyCommand('app:info'));
$this->assertFalse($commands->hasLegacyCommand('app:about'));
$this->assertFalse($commands->hasLegacyCommand('app:unknown'));
}
public function testHasModernCommand(): void
{
$commands = new Commands();
$this->assertTrue($commands->hasModernCommand('app:about'));
$this->assertFalse($commands->hasModernCommand('app:info'));
$this->assertFalse($commands->hasModernCommand('app:unknown'));
}
public function testCollidingCommandNameIsDetectableFromBothRegistries(): void
{
$this->injectDuplicateLocator();
$commands = new Commands();
$this->assertTrue($commands->hasLegacyCommand('dup:test'));
$this->assertTrue($commands->hasModernCommand('dup:test'));
}
public function testDestructiveCommandIsNotRisky(): void
{
$this->expectException(RuntimeException::class);
command('app:destructive');
}
public function testGetCommand(): void
{
$commands = new Commands();
$this->assertInstanceOf(AppInfo::class, $commands->getCommand('app:info', legacy: true));
$this->assertInstanceOf(AppAboutCommand::class, $commands->getCommand('app:about'));
}
public function testGetCommandOnUnknownLegacyCommand(): void
{
$this->expectException(CommandNotFoundException::class);
$this->expectExceptionMessage('Command "app:unknown" not found.');
(new Commands())->getCommand('app:unknown', legacy: true);
}
public function testGetCommandOnUnknownModernCommand(): void
{
$this->expectException(CommandNotFoundException::class);
$this->expectExceptionMessage('Command "app:unknown" not found.');
(new Commands())->getCommand('app:unknown');
}
public function testDiscoverCommandsDoNotRunTwice(): void
{
$locator = $this->createMock(FileLocatorInterface::class);
$locator
->expects($this->once())
->method('listFiles')
->with('Commands/')
->willReturn([
SUPPORTPATH . 'Commands/Legacy/AppInfo.php',
SUPPORTPATH . 'Commands/Modern/AppAboutCommand.php',
]);
$locator
->expects($this->exactly(2))
->method('findQualifiedNameFromPath')
->willReturnMap([
[SUPPORTPATH . 'Commands/Legacy/AppInfo.php', AppInfo::class],
[SUPPORTPATH . 'Commands/Modern/AppAboutCommand.php', AppAboutCommand::class],
]);
Services::injectMock('locator', $locator);
$commands = new Commands(); // discoverCommands will be called in the constructor
$commands->discoverCommands();
}
public function testDiscoverySkipsModernCommandWithoutCommandAttribute(): void
{
$path = SUPPORTPATH . 'InvalidCommands/NoAttributeCommand.php';
$locator = $this->createMock(FileLocatorInterface::class);
$locator
->expects($this->once())
->method('listFiles')
->with('Commands/')
->willReturn([$path]);
$locator
->expects($this->once())
->method('findQualifiedNameFromPath')
->with($path)
->willReturn(NoAttributeCommand::class);
Services::injectMock('locator', $locator);
$commands = new Commands();
$this->assertSame([], $commands->getModernCommands());
$this->assertSame([], $commands->getCommands());
}
public function testDiscoveryLogsErrorWhenCommandAttributeFailsToInstantiate(): void
{
$path = SUPPORTPATH . 'InvalidCommands/EmptyCommandName.php';
$locator = $this->createMock(FileLocatorInterface::class);
$locator
->expects($this->once())
->method('listFiles')
->with('Commands/')
->willReturn([$path]);
$locator
->expects($this->once())
->method('findQualifiedNameFromPath')
->with($path)
->willReturn(EmptyCommandName::class);
Services::injectMock('locator', $locator);
$logger = $this->createMock(Logger::class);
$logger
->expects($this->once())
->method('error')
->with($this->callback(static fn (string $message): bool => $message !== ''));
$commands = new Commands($logger);
$this->assertSame([], $commands->getModernCommands());
}
public function testDiscoverCommandsWithNoFiles(): void
{
$locator = $this->createMock(FileLocatorInterface::class);
$locator
->expects($this->once())
->method('listFiles')
->with('Commands/')
->willReturn([]);
$locator
->expects($this->never())
->method('findQualifiedNameFromPath');
Services::injectMock('locator', $locator);
new Commands();
}
public function testVerifyCommandThrowsDeprecationWhenCommandsArrayIsPassed(): void
{
$this->expectException(ErrorException::class);
$this->expectExceptionMessage('Since v4.8.0, the $commands parameter of CodeIgniter\CLI\Commands::verifyCommand() is no longer used.');
$commands = new Commands();
$commands->verifyCommand('app:info', $commands->getCommands());
}
public function testGetCommandAlternativesThrowsDeprecationWhenCommandsArrayIsPassed(): void
{
$this->expectException(ErrorException::class);
$this->expectExceptionMessage('Since v4.8.0, the $collection parameter of CodeIgniter\CLI\Commands::getCommandAlternatives() is no longer used.');
$commands = new Commands();
self::getPrivateMethodInvoker($commands, 'getCommandAlternatives')('app:inf', $commands->getCommands());
}
public function testDiscoveredLegacyCommandsCanBeOverridden(): void
{
$this->copyCommand(SUPPORTPATH . '_command/AppInfo.php');
command('app:info');
$this->assertStringContainsString('This is App\Commands\AppInfo', $this->getStreamFilterBuffer());
$this->assertStringNotContainsString('CodeIgniter Version:', $this->getStreamFilterBuffer());
$this->deleteCommand(SUPPORTPATH . '_command/AppInfo.php');
}
public function testDiscoveredModernCommandsCanBeOverridden(): void
{
$this->copyCommand(SUPPORTPATH . '_command/AppAboutCommand.php');
command('app:about a');
$this->assertStringContainsString('This is App\Commands\AppAboutCommand', $this->getStreamFilterBuffer());
$this->assertStringNotContainsString('CodeIgniter Version:', $this->getStreamFilterBuffer());
$this->deleteCommand(SUPPORTPATH . '_command/AppAboutCommand.php');
}
private function injectDuplicateLocator(): void
{
$legacyFile = (new ReflectionClass(DuplicateLegacy::class))->getFileName();
$modernFile = (new ReflectionClass(DuplicateModern::class))->getFileName();
$locator = $this->getMockBuilder(FileLocator::class)
->setConstructorArgs([service('autoloader')])
->onlyMethods(['listFiles', 'findQualifiedNameFromPath'])
->getMock();
$locator->expects($this->once())
->method('listFiles')
->with('Commands/')
->willReturn([$legacyFile, $modernFile]);
$locator->expects($this->exactly(2))
->method('findQualifiedNameFromPath')
->willReturnMap([
[$legacyFile, DuplicateLegacy::class],
[$modernFile, DuplicateModern::class],
]);
Services::injectMock('locator', $locator);
}
}