-
-
Notifications
You must be signed in to change notification settings - Fork 123
/
Copy pathRouterDebugCommandTest.php
139 lines (116 loc) · 4.92 KB
/
RouterDebugCommandTest.php
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
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Bundle\FrameworkBundle\Tests\Functional;
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Component\Console\Tester\CommandCompletionTester;
use Symfony\Component\Console\Tester\CommandTester;
/**
* @group functional
*/
class RouterDebugCommandTest extends AbstractWebTestCase
{
private Application $application;
protected function setUp(): void
{
$kernel = static::createKernel(['test_case' => 'RouterDebug', 'root_config' => 'config.yml']);
$this->application = new Application($kernel);
}
public function testDumpAllRoutes()
{
$tester = $this->createCommandTester();
$ret = $tester->execute([]);
$display = $tester->getDisplay();
$this->assertSame(0, $ret, 'Returns 0 in case of success');
$this->assertStringContainsString('routerdebug_test', $display);
$this->assertStringContainsString('/test', $display);
$this->assertStringContainsString('/session', $display);
}
public function testDumpOneRoute()
{
$tester = $this->createCommandTester();
$ret = $tester->execute(['name' => 'routerdebug_session_welcome']);
$this->assertSame(0, $ret, 'Returns 0 in case of success');
$this->assertStringContainsString('routerdebug_session_welcome', $tester->getDisplay());
$this->assertStringContainsString('/session', $tester->getDisplay());
}
public function testSearchMultipleRoutes()
{
$tester = $this->createCommandTester();
$tester->setInputs([3]);
$ret = $tester->execute(['name' => 'routerdebug'], ['interactive' => true]);
$this->assertSame(0, $ret, 'Returns 0 in case of success');
$this->assertStringContainsString('Select one of the matching routes:', $tester->getDisplay());
$this->assertStringContainsString('routerdebug_test', $tester->getDisplay());
$this->assertStringContainsString('/test', $tester->getDisplay());
}
public function testSearchMultipleRoutesWithoutInteraction()
{
$tester = $this->createCommandTester();
$ret = $tester->execute(['name' => 'routerdebug'], ['interactive' => false]);
$this->assertSame(0, $ret, 'Returns 0 in case of success');
$this->assertStringNotContainsString('Select one of the matching routes:', $tester->getDisplay());
$this->assertStringContainsString('routerdebug_session_welcome', $tester->getDisplay());
$this->assertStringContainsString('/session', $tester->getDisplay());
$this->assertStringContainsString('routerdebug_session_welcome_name', $tester->getDisplay());
$this->assertStringContainsString('/session/{name} ', $tester->getDisplay());
$this->assertStringContainsString('routerdebug_session_logout', $tester->getDisplay());
$this->assertStringContainsString('/session_logout', $tester->getDisplay());
$this->assertStringContainsString('routerdebug_test', $tester->getDisplay());
$this->assertStringContainsString('/test', $tester->getDisplay());
}
public function testSearchWithThrow()
{
$tester = $this->createCommandTester();
$this->expectException(\InvalidArgumentException::class);
$this->expectExceptionMessage('The route "gerard" does not exist.');
$tester->execute(['name' => 'gerard'], ['interactive' => true]);
}
/**
* @dataProvider provideCompletionSuggestions
*/
public function testComplete(array $input, array $expectedSuggestions)
{
$tester = new CommandCompletionTester($this->application->get('debug:router'));
$this->assertSame($expectedSuggestions, $tester->complete($input));
}
/**
* @testWith ["txt"]
* ["xml"]
* ["json"]
* ["md"]
*/
public function testShowAliases(string $format)
{
$tester = $this->createCommandTester();
$this->assertSame(0, $tester->execute(['--show-aliases' => true, '--format' => $format]));
$this->assertStringContainsString('my_custom_alias', $tester->getDisplay());
}
public static function provideCompletionSuggestions(): iterable
{
yield 'option --format' => [
['--format', ''],
['txt', 'xml', 'json', 'md'],
];
yield 'route_name' => [
[''],
[
'routerdebug_session_welcome',
'routerdebug_session_welcome_name',
'routerdebug_session_logout',
'routerdebug_test',
],
];
}
private function createCommandTester(): CommandTester
{
$command = $this->application->get('debug:router');
return new CommandTester($command);
}
}