| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- <?php
- declare(strict_types=1);
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 3.3.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Command;
- use Cake\Cache\Cache;
- use Cake\Console\CommandInterface;
- use Cake\Console\TestSuite\ConsoleIntegrationTestTrait;
- use Cake\TestSuite\TestCase;
- /**
- * Cache Commands tests.
- */
- class CacheCommandsTest extends TestCase
- {
- use ConsoleIntegrationTestTrait;
- /**
- * setup method
- */
- public function setUp(): void
- {
- parent::setUp();
- Cache::setConfig('test', ['engine' => 'File', 'path' => CACHE, 'groups' => ['test_group']]);
- Cache::setConfig('test2', ['engine' => 'File', 'path' => CACHE, 'groups' => ['test_group']]);
- $this->setAppNamespace();
- }
- /**
- * Teardown
- */
- public function tearDown(): void
- {
- parent::tearDown();
- Cache::drop('test');
- Cache::drop('test2');
- }
- /**
- * Test help output
- */
- public function testClearHelp(): void
- {
- $this->exec('cache clear -h');
- $this->assertExitCode(CommandInterface::CODE_SUCCESS);
- $this->assertOutputContains('engine to clear');
- }
- /**
- * Test help output
- */
- public function testClearAllHelp(): void
- {
- $this->exec('cache clear_all -h');
- $this->assertExitCode(CommandInterface::CODE_SUCCESS);
- $this->assertOutputContains('Clear all');
- }
- /**
- * Test list output
- */
- public function testList(): void
- {
- $this->exec('cache list');
- $this->assertExitCode(CommandInterface::CODE_SUCCESS);
- $this->assertOutputContains('- test');
- $this->assertOutputContains('- _cake_translations_');
- $this->assertOutputContains('- _cake_model_');
- }
- /**
- * Test help output
- */
- public function testListHelp(): void
- {
- $this->exec('cache list -h');
- $this->assertExitCode(CommandInterface::CODE_SUCCESS);
- $this->assertOutputContains('Show a list');
- }
- /**
- * Test that clear() throws \Cake\Console\Exception\StopException if cache prefix is invalid
- */
- public function testClearInvalidPrefix(): void
- {
- $this->exec('cache clear foo');
- $this->assertExitCode(CommandInterface::CODE_ERROR);
- $this->assertErrorContains('The `foo` cache configuration does not exist');
- }
- /**
- * Test that clear() clears the specified cache when a valid prefix is used
- */
- public function testClearValidPrefix(): void
- {
- Cache::add('key', 'value', 'test');
- $this->exec('cache clear test');
- $this->assertExitCode(CommandInterface::CODE_SUCCESS);
- $this->assertNull(Cache::read('key', 'test'));
- }
- /**
- * Test that clear() only clears the specified cache
- */
- public function testClearIgnoresOtherCaches(): void
- {
- Cache::add('key', 'value', 'test');
- $this->exec('cache clear _cake_translations_');
- $this->assertExitCode(CommandInterface::CODE_SUCCESS);
- $this->assertSame('value', Cache::read('key', 'test'));
- }
- /**
- * Test that clearAll() clears values from all defined caches
- */
- public function testClearAll(): void
- {
- Cache::add('key', 'value1', 'test');
- Cache::add('key', 'value3', '_cake_translations_');
- $this->exec('cache clear_all');
- $this->assertExitCode(CommandInterface::CODE_SUCCESS);
- $this->assertNull(Cache::read('key', 'test'));
- $this->assertNull(Cache::read('key', '_cake_translations_'));
- }
- public function testClearGroup(): void
- {
- Cache::add('key', 'value1', 'test');
- Cache::add('key', 'value1', 'test2');
- $this->exec('cache clear_group test_group');
- $this->assertExitCode(CommandInterface::CODE_SUCCESS);
- $this->assertNull(Cache::read('key', 'test'));
- $this->assertNull(Cache::read('key', 'test2'));
- }
- public function testClearGroupWithConfig(): void
- {
- Cache::add('key', 'value1', 'test');
- $this->exec('cache clear_group test_group test');
- $this->assertExitCode(CommandInterface::CODE_SUCCESS);
- $this->assertNull(Cache::read('key', 'test'));
- }
- public function testClearGroupInvalidConfig(): void
- {
- $this->exec('cache clear_group test_group does_not_exist');
- $this->assertExitCode(CommandInterface::CODE_ERROR);
- $this->assertErrorContains('Cache config "does_not_exist" not found');
- }
- public function testClearInvalidGroup(): void
- {
- $this->exec('cache clear_group does_not_exist');
- $this->assertExitCode(CommandInterface::CODE_ERROR);
- $this->assertErrorContains('Cache group "does_not_exist" not found');
- }
- }
|