Files
archived-framework-bundle/Tests/Command/CachePoolClearCommandTest.php
Christian Flothmann e61842281e Merge branch '6.4' into 7.4
* 6.4:
  remove usages of the deprecated any() invoked count expectation
  Minor: Fix Portuguese (pt) translations for validators
  [Serializer] Fix passing context option to property-info
  [CssSelector] Add LRU cache to CssSelectorConverter
2026-02-17 08:53:42 +01:00

62 lines
1.9 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\MockObject\MockObject;
use Symfony\Bundle\FrameworkBundle\Command\CachePoolClearCommand;
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Bundle\FrameworkBundle\Tests\TestCase;
use Symfony\Component\Cache\Adapter\ArrayAdapter;
use Symfony\Component\Console\Tester\CommandCompletionTester;
use Symfony\Component\DependencyInjection\Container;
use Symfony\Component\HttpKernel\CacheClearer\Psr6CacheClearer;
use Symfony\Component\HttpKernel\KernelInterface;
class CachePoolClearCommandTest extends TestCase
{
#[DataProvider('provideCompletionSuggestions')]
public function testComplete(array $input, array $expectedSuggestions)
{
$application = new Application($this->getKernel());
$application->addCommand(new CachePoolClearCommand(new Psr6CacheClearer(['foo' => new ArrayAdapter()]), ['foo']));
$tester = new CommandCompletionTester($application->get('cache:pool:clear'));
$suggestions = $tester->complete($input);
$this->assertSame($expectedSuggestions, $suggestions);
}
public static function provideCompletionSuggestions(): iterable
{
yield 'pool_name' => [
['f'],
['foo'],
];
}
private function getKernel(): MockObject&KernelInterface
{
$kernel = $this->createMock(KernelInterface::class);
$kernel
->method('getContainer')
->willReturn(new Container());
$kernel
->expects($this->once())
->method('getBundles')
->willReturn([]);
return $kernel;
}
}