-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathApplicationTest.php
More file actions
720 lines (622 loc) · 23.4 KB
/
ApplicationTest.php
File metadata and controls
720 lines (622 loc) · 23.4 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
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
<?php
/**
* @copyright Copyright (C) 2005 - 2021 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/
namespace Joomla\Console\Tests;
use Joomla\Console\Application;
use Joomla\Console\Command\AbstractCommand;
use Joomla\Console\Command\HelpCommand;
use Joomla\Console\Command\ListCommand;
use Joomla\Console\ConsoleEvents;
use Joomla\Console\Event\ApplicationErrorEvent;
use Joomla\Console\Event\BeforeCommandExecuteEvent;
use Joomla\Console\Event\CommandErrorEvent;
use Joomla\Console\Exception\NamespaceNotFoundException;
use Joomla\Console\Loader\ContainerLoader;
use Joomla\Console\Tests\Fixtures\Command\AliasedCommand;
use Joomla\Console\Tests\Fixtures\Command\AnonymousCommand;
use Joomla\Console\Tests\Fixtures\Command\DisabledCommand;
use Joomla\Console\Tests\Fixtures\Command\NamespacedCommand;
use Joomla\Console\Tests\Fixtures\Command\SkipConfigurationCommand;
use Joomla\Console\Tests\Fixtures\Command\TopNamespacedCommand;
use Joomla\Event\Dispatcher;
use Joomla\Test\TestHelper;
use PHPUnit\Framework\TestCase;
use PHPUnit\Framework\Attributes\DataProvider;
use Psr\Container\ContainerInterface;
use Psr\Container\NotFoundExceptionInterface;
use Symfony\Component\Console\Exception\CommandNotFoundException;
use Symfony\Component\Console\Exception\LogicException;
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\BufferedOutput;
use Symfony\Component\Console\Output\NullOutput;
use Symfony\Component\Console\Output\OutputInterface;
/**
* Test class for \Joomla\Console\Application
*/
class ApplicationTest extends TestCase
{
/**
* @var Application
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*
* @return void
*/
protected function setUp(): void
{
$this->object = new Application();
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
* @uses Joomla\Console\Descriptor\ApplicationDescription
* @uses Joomla\Console\Descriptor\TextDescriptor
* @uses Joomla\Console\Helper\DescriptorHelper
*/
public function testTheApplicationIsExecutedWithTheDefaultCommand()
{
$input = new ArrayInput([]);
$output = new BufferedOutput();
$app = new Application($input, $output);
$app->setAutoExit(false);
$app->execute();
$this->assertNotEmpty($output->fetch());
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
* @uses Joomla\Console\Descriptor\ApplicationDescription
* @uses Joomla\Console\Descriptor\TextDescriptor
* @uses Joomla\Console\Helper\DescriptorHelper
*/
public function testTheApplicationIsExecutedWithTheRequestedCommand()
{
$input = new ArrayInput(
[
'command' => 'list',
]
);
$output = new BufferedOutput();
$app = new Application($input, $output);
$app->setAutoExit(false);
$app->execute();
$this->assertNotEmpty($output->fetch());
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
* @uses Joomla\Console\Descriptor\ApplicationDescription
* @uses Joomla\Console\Descriptor\TextDescriptor
* @uses Joomla\Console\Helper\DescriptorHelper
*/
public function testTheApplicationPrintsTheVersionInformation()
{
$input = new ArrayInput(
[
'--version' => true,
]
);
$output = new BufferedOutput();
$app = new Application($input, $output);
$app->setName('Console Tester');
$app->setVersion('1.0.0');
$app->setAutoExit(false);
$app->execute();
$this->assertSame('Console Tester 1.0.0', trim($output->fetch()));
}
/**
* @covers Joomla\Console\Application
*/
public function testSetGetName()
{
$this->object->setName('Console Application');
$this->assertSame('Console Application', $this->object->getName());
}
/**
* @covers Joomla\Console\Application
*/
public function testSetGetVersion()
{
$this->object->setVersion('1.0.0');
$this->assertSame('1.0.0', $this->object->getVersion());
}
/**
* Data provider for testGetLongVersion
*
* @return array
*/
public static function dataGetLongVersionProvider(): array
{
// Args: App Name, App Version, Expected Return
return [
'Empty name and version' => ['', '', 'Joomla Console Application'],
'Name without version' => ['Console Application', '', 'Console Application'],
'Version without name' => ['', '1.0.0', 'Joomla Console Application <info>1.0.0</info>'],
'Version with name' => ['Console Application', '1.0.0', 'Console Application <info>1.0.0</info>'],
];
}
/**
* @param string $name Application name
* @param string $version Application version
* @param string $expected Expected return
*
* @covers Joomla\Console\Application
*
* @dataProvider dataGetLongVersion
*/
#[DataProvider('dataGetLongVersionProvider')]
public function testGetLongVersion(string $name, string $version, string $expected)
{
$this->object->setName($name);
$this->object->setVersion($version);
$this->assertSame($expected, $this->object->getLongVersion());
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
*/
public function testGetAllCommands()
{
$commands = $this->object->getAllCommands();
$this->assertInstanceOf(HelpCommand::class, $commands['help']);
$this->assertInstanceOf(ListCommand::class, $commands['list']);
$this->object->addCommand(new NamespacedCommand());
$commands = $this->object->getAllCommands('test');
$this->assertCount(1, $commands);
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
* @uses Joomla\Console\Loader\ContainerLoader
*/
public function testGetAllCommandsWithCommandLoader()
{
$commands = $this->object->getAllCommands();
$this->assertInstanceOf(HelpCommand::class, $commands['help']);
$this->assertInstanceOf(ListCommand::class, $commands['list']);
$this->object->addCommand(new NamespacedCommand());
$commands = $this->object->getAllCommands('test');
$this->assertCount(1, $commands);
$container = $this->buildStubContainer();
$container->set(
'command.aliased',
function (ContainerInterface $container) {
return new AliasedCommand();
}
);
$loader = new ContainerLoader($container, ['test:aliased' => 'command.aliased']);
$this->object->setCommandLoader($loader);
$commands = $this->object->getAllCommands('test');
$this->assertCount(2, $commands);
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
*/
public function testAddHasCommand()
{
$this->object->addCommand(new NamespacedCommand());
$this->assertTrue($this->object->hasCommand('test:namespaced'));
$this->object->addCommand(new DisabledCommand());
$this->assertFalse($this->object->hasCommand('test:disabled'));
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
*/
public function testAddCommandWithBrokenConstructor()
{
$this->expectException(LogicException::class);
$this->expectExceptionMessage(sprintf('Command class "%s" is not correctly initialised.', SkipConfigurationCommand::class));
$this->object->addCommand(new SkipConfigurationCommand());
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
*/
public function testAddCommandWithNoName()
{
$this->expectException(LogicException::class);
$this->expectExceptionMessage(sprintf('The command class "%s" does not have a name.', AnonymousCommand::class));
$this->object->addCommand(new AnonymousCommand());
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
*/
public function testHasGetCommand()
{
$this->assertTrue($this->object->hasCommand('list'));
$this->assertFalse($this->object->hasCommand('non-existing-command'));
$command = new NamespacedCommand();
$this->object->addCommand($command);
$this->assertTrue($this->object->hasCommand('test:namespaced'));
$this->assertSame($command, $this->object->getCommand('test:namespaced'));
// Simulates passing the --help option
$r = new \ReflectionObject($this->object);
$p = $r->getProperty('wantsHelp');
$p->setAccessible(true);
$p->setValue($this->object, true);
/** @var HelpCommand $helpCommand */
$helpCommand = $this->object->getCommand('test:namespaced');
$this->assertInstanceOf(HelpCommand::class, $helpCommand);
$this->assertSame(
$command,
TestHelper::getValue($helpCommand, 'command'),
'The getCommand method should inject the command help is being requested for'
);
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
* @uses Joomla\Console\Loader\ContainerLoader
*/
public function testHasGetCommandWithCommandLoader()
{
$this->assertTrue($this->object->hasCommand('list'));
$this->assertFalse($this->object->hasCommand('non-existing-command'));
$container = $this->buildStubContainer();
$container->set(
'command.namespaced',
function (ContainerInterface $container) {
return new NamespacedCommand();
}
);
$loader = new ContainerLoader($container, ['test:namespaced' => 'command.namespaced']);
$this->object->setCommandLoader($loader);
$this->assertTrue($this->object->hasCommand('test:namespaced'));
$this->assertInstanceOf(NamespacedCommand::class, $this->object->getCommand('test:namespaced'));
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
*/
public function testGetCommandForUnknownCommand()
{
$this->expectException(CommandNotFoundException::class);
$this->expectExceptionMessage('The command "test" does not exist.');
$this->object->getCommand('test');
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
*/
public function testGetNamespaces()
{
$this->object->addCommand(new NamespacedCommand());
$this->object->addCommand(new AliasedCommand());
$this->assertEquals(['test'], $this->object->getNamespaces());
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
*/
public function testFindNamespace()
{
$this->object->addCommand(new NamespacedCommand());
$this->assertEquals('test', $this->object->findNamespace('test'));
$this->assertEquals(
'test',
$this->object->findNamespace('t'),
'If an abbreviated namespace is given and is not ambiguous, the full namespace is returned'
);
$this->object->addCommand(new AliasedCommand());
$this->assertEquals('test', $this->object->findNamespace('test'));
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
*/
public function testFindAmbiguousNamespace()
{
$this->expectException(NamespaceNotFoundException::class);
$this->expectExceptionMessage('The namespace "t" is ambiguous.');
$this->object->addCommand(new NamespacedCommand());
$this->object->addCommand(new TopNamespacedCommand());
$this->object->findNamespace('t');
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
*/
public function testFindUnknownNamespace()
{
$this->expectException(NamespaceNotFoundException::class);
$this->expectExceptionMessage('There are no commands defined in the "test" namespace.');
$this->object->findNamespace('test');
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
* @uses Joomla\Console\Descriptor\TextDescriptor
* @uses Joomla\Console\Helper\DescriptorHelper
*/
public function testNoOutputWhenHelpRequestedWithQuietFlag()
{
$input = new ArrayInput(
[
'-h' => true,
'-q' => true,
]
);
$output = new BufferedOutput();
$app = new Application($input, $output);
$app->setAutoExit(false);
$app->execute();
$this->assertEmpty($output->fetch());
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
* @uses Joomla\Console\Event\ApplicationErrorEvent
* @uses Joomla\Console\Event\CommandErrorEvent
* @uses Joomla\Console\Event\ConsoleEvent
*/
public function testHandlingThrowables()
{
$input = new ArrayInput(
[
'command' => 'foo',
]
);
$output = new BufferedOutput();
$app = new Application($input, $output);
$app->setCatchThrowables(true);
$app->setAutoExit(false);
$app->execute();
$screenOutput = $output->fetch();
$this->assertNotEmpty($screenOutput);
$this->assertStringContainsString('Command "foo" is not defined.', $screenOutput);
$app->setCatchThrowables(false);
try {
$app->execute();
$this->fail('The Throwable from the application should have been caught');
} catch (\Throwable $exception) {
$this->assertInstanceOf(CommandNotFoundException::class, $exception);
$this->assertEquals('The command "foo" does not exist.', $exception->getMessage());
}
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
* @uses Joomla\Console\Descriptor\ApplicationDescription
* @uses Joomla\Console\Descriptor\TextDescriptor
* @uses Joomla\Console\Helper\DescriptorHelper
*/
public function testAppIsClosedWhenAutoExitIsEnabled()
{
$input = new ArrayInput(
[
'command' => 'list',
]
);
$output = new NullOutput();
$app = $this->buildMockClosingApplication($input, $output);
$app->setAutoExit(true);
$app->execute();
$this->assertTrue($app->wasClosed());
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
* @uses Joomla\Console\Event\ApplicationErrorEvent
* @uses Joomla\Console\Event\CommandErrorEvent
* @uses Joomla\Console\Event\ConsoleEvent
*/
public function testExitCodeIsSetByEventListener()
{
$dispatcher = new Dispatcher();
$dispatcher->addListener(
ConsoleEvents::APPLICATION_ERROR,
function (ApplicationErrorEvent $event) {
$event->setExitCode(119);
}
);
$input = new ArrayInput(
[
'command' => 'foo',
]
);
$output = new NullOutput();
$app = $this->buildMockClosingApplication($input, $output);
$app->setDispatcher($dispatcher);
$app->setAutoExit(true);
$app->execute();
$this->assertSame(119, $app->getExitCode());
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
* @uses Joomla\Console\Event\CommandErrorEvent
* @uses Joomla\Console\Event\ConsoleEvent
*/
public function testCommandNotFoundHasSuccessExitIfEventListenerSpecifiesSo()
{
$dispatcher = new Dispatcher();
$dispatcher->addListener(
ConsoleEvents::COMMAND_ERROR,
function (CommandErrorEvent $event) {
$event->setExitCode(0);
}
);
$input = new ArrayInput(
[
'command' => 'foo',
]
);
$output = new NullOutput();
$app = $this->buildMockClosingApplication($input, $output);
$app->setDispatcher($dispatcher);
$app->setAutoExit(true);
$app->execute();
$this->assertSame(0, $app->getExitCode());
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
* @uses Joomla\Console\Event\ApplicationErrorEvent
* @uses Joomla\Console\Event\ConsoleEvent
*/
public function testCommandErrorHasExitCodeOneIfExceptionHasCodeZero()
{
$command = new class () extends AbstractCommand {
protected static $defaultName = 'exception';
protected function doExecute(InputInterface $input, OutputInterface $output): int
{
throw new \Exception('Testing', 0);
}
};
$input = new ArrayInput(
[
'command' => 'exception',
]
);
$output = new NullOutput();
$app = $this->buildMockClosingApplication($input, $output);
$app->addCommand($command);
$app->setAutoExit(true);
$app->execute();
$this->assertSame(1, $app->getExitCode());
}
/**
* @covers Joomla\Console\Application
* @uses Joomla\Console\Command\AbstractCommand
* @uses Joomla\Console\Command\HelpCommand
* @uses Joomla\Console\Command\ListCommand
* @uses Joomla\Console\Event\BeforeCommandExecuteEvent
* @uses Joomla\Console\Event\ConsoleEvent
* @uses Joomla\Console\Event\TerminateEvent
*/
public function testCommandIsNotExecutedIfEventSkipsCommand()
{
$command = new class () extends AbstractCommand {
protected static $defaultName = 'no-run';
private $executed = false;
protected function doExecute(InputInterface $input, OutputInterface $output): int
{
$this->executed = true;
return 0;
}
public function wasExecuted(): bool
{
return $this->executed;
}
};
$dispatcher = new Dispatcher();
$dispatcher->addListener(
ConsoleEvents::BEFORE_COMMAND_EXECUTE,
function (BeforeCommandExecuteEvent $event) use ($command) {
$this->assertSame($command, $event->getCommand());
$event->disableCommand();
}
);
$input = new ArrayInput(
[
'command' => 'no-run',
]
);
$output = new NullOutput();
$app = $this->buildMockClosingApplication($input, $output);
$app->setDispatcher($dispatcher);
$app->addCommand($command);
$app->setAutoExit(true);
$app->execute();
$this->assertFalse($command->wasExecuted());
$this->assertSame(BeforeCommandExecuteEvent::RETURN_CODE_DISABLED, $app->getExitCode());
}
private function buildMockClosingApplication(?InputInterface $input = null, ?OutputInterface $output = null): Application
{
return new class ($input, $output) extends Application {
private $exitCode = 0;
private $wasClosed = false;
public function close($code = 0)
{
$this->exitCode = $code;
$this->wasClosed = true;
}
public function getExitCode(): int
{
return $this->exitCode;
}
public function wasClosed(): bool
{
return $this->wasClosed;
}
};
}
private function buildStubContainer(): ContainerInterface
{
return new class () implements ContainerInterface {
private $services = [];
public function get($id)
{
if (!$this->has($id)) {
throw new class () extends \InvalidArgumentException implements NotFoundExceptionInterface {
};
}
return $this->services[$id]($this);
}
public function has(string $id): bool
{
return isset($this->services[$id]);
}
public function set($id, $value)
{
if (!is_callable($value)) {
$value = function () use ($value) {
return $value;
};
}
$this->services[$id] = $value;
}
};
}
}