-
-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathSecretsListCommandTest.php
57 lines (47 loc) · 1.9 KB
/
SecretsListCommandTest.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
<?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\Command;
use PHPUnit\Framework\TestCase;
use Symfony\Bundle\FrameworkBundle\Command\SecretsListCommand;
use Symfony\Bundle\FrameworkBundle\Secrets\AbstractVault;
use Symfony\Bundle\FrameworkBundle\Secrets\DotenvVault;
use Symfony\Component\Console\Tester\CommandTester;
class SecretsListCommandTest extends TestCase
{
/**
* @backupGlobals enabled
*/
public function testExecute()
{
$vault = $this->createMock(AbstractVault::class);
$vault->method('list')->willReturn(['A' => 'a', 'B' => 'b', 'C' => null, 'D' => null, 'E' => null]);
$_ENV = ['A' => '', 'B' => 'A', 'C' => '', 'D' => false, 'E' => null];
$localVault = new DotenvVault('/not/a/path');
$command = new SecretsListCommand($vault, $localVault);
$tester = new CommandTester($command);
$this->assertSame(0, $tester->execute([]));
$expectedOutput = <<<EOTXT
// Use "%%env(<name>)%%" to reference a secret in a config file.
// To reveal the secrets run %s secrets:list --reveal
-------- -------- -------------
Secret Value Local Value
-------- -------- -------------
A "a"
B "b" ******
C ******
D ****** ******
E ******
-------- -------- -------------
// Local values override secret values.
// Use secrets:set --local to define them.
EOTXT;
$this->assertStringMatchesFormat($expectedOutput, trim(preg_replace('/ ++$/m', '', $tester->getDisplay(true)), "\n"));
}
}