Files
archived-framework-bundle/Tests/Command/SecretsRemoveCommandTest.php
Christian Flothmann 029303f5c3 Merge branch '7.3' into 7.4
* 7.3:
  fix merge
  do not use PHPUnit mock objects without configured expectations
  do not use PHPUnit mock objects without configured expectations
  Typo
  [HttpClient] Fix and test replacing repeated headers with CachingHttpClient
  [Messenger] Fix processing batches
  do not use PHPUnit mock objects without configured expectations
  do not use PHPUnit mock objects without configured expectations
2026-01-06 13:34:24 +01:00

46 lines
1.7 KiB
PHP

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* 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\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
use Symfony\Bundle\FrameworkBundle\Command\SecretsRemoveCommand;
use Symfony\Bundle\FrameworkBundle\Secrets\AbstractVault;
use Symfony\Component\Console\Tester\CommandCompletionTester;
class SecretsRemoveCommandTest extends TestCase
{
#[DataProvider('provideCompletionSuggestions')]
public function testComplete(bool $withLocalVault, array $input, array $expectedSuggestions)
{
$vault = $this->createStub(AbstractVault::class);
$vault->method('list')->willReturn(['SECRET' => null, 'OTHER_SECRET' => null]);
if ($withLocalVault) {
$localVault = $this->createStub(AbstractVault::class);
$localVault->method('list')->willReturn(['SECRET' => null]);
} else {
$localVault = null;
}
$command = new SecretsRemoveCommand($vault, $localVault);
$tester = new CommandCompletionTester($command);
$suggestions = $tester->complete($input);
$this->assertSame($expectedSuggestions, $suggestions);
}
public static function provideCompletionSuggestions(): iterable
{
yield 'name' => [true, [''], ['SECRET', 'OTHER_SECRET']];
yield '--local name (with local vault)' => [true, ['--local', ''], ['SECRET']];
yield '--local name (without local vault)' => [false, ['--local', ''], []];
}
}