| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- <?php
- /**
- * 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.6.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Shell;
- use Cake\Cache\Cache;
- use Cake\Console\Exception\StopException;
- use Cake\Datasource\ConnectionManager;
- use Cake\Shell\SchemaCacheShell;
- use Cake\TestSuite\TestCase;
- /**
- * SchemaCacheShell test.
- */
- class SchemaCacheShellTest extends TestCase
- {
- /**
- * Fixtures.
- *
- * @var array
- */
- public $fixtures = ['core.articles', 'core.tags'];
- /**
- * setup method
- *
- * @return void
- */
- public function setUp()
- {
- parent::setUp();
- $this->io = $this->getMockBuilder('Cake\Console\ConsoleIo')->getMock();
- $this->shell = new SchemaCacheShell($this->io);
- $this->cache = $this->getMockBuilder('Cake\Cache\CacheEngine')->getMock();
- $this->cache->expects($this->any())
- ->method('init')
- ->will($this->returnValue(true));
- Cache::setConfig('orm_cache', $this->cache);
- $ds = ConnectionManager::get('test');
- $ds->cacheMetadata('orm_cache');
- }
- /**
- * Teardown
- *
- * @return void
- */
- public function tearDown()
- {
- parent::tearDown();
- Cache::drop('orm_cache');
- $ds = ConnectionManager::get('test');
- $ds->cacheMetadata(false);
- }
- /**
- * Test that clear enables the cache if it was disabled.
- *
- * @return void
- */
- public function testClearEnablesMetadataCache()
- {
- $ds = ConnectionManager::get('test');
- $ds->cacheMetadata(false);
- $this->shell->params['connection'] = 'test';
- $this->shell->clear();
- $this->assertInstanceOf('Cake\Database\Schema\CachedCollection', $ds->getSchemaCollection());
- }
- /**
- * Test that build enables the cache if it was disabled.
- *
- * @return void
- */
- public function testBuildEnablesMetadataCache()
- {
- $ds = ConnectionManager::get('test');
- $ds->cacheMetadata(false);
- $this->shell->params['connection'] = 'test';
- $this->shell->build();
- $this->assertInstanceOf('Cake\Database\Schema\CachedCollection', $ds->getSchemaCollection());
- }
- /**
- * Test build() with no args.
- *
- * @return void
- */
- public function testBuildNoArgs()
- {
- $this->cache->expects($this->at(3))
- ->method('write')
- ->with('test_articles');
- $this->shell->params['connection'] = 'test';
- $this->shell->build();
- }
- /**
- * Test build() with one arg.
- *
- * @return void
- */
- public function testBuildNamedModel()
- {
- $this->cache->expects($this->once())
- ->method('write')
- ->with('test_articles');
- $this->cache->expects($this->never())
- ->method('delete');
- $this->shell->params['connection'] = 'test';
- $this->shell->build('articles');
- }
- /**
- * Test build() overwrites cached data.
- *
- * @return void
- */
- public function testBuildOverwritesExistingData()
- {
- $this->cache->expects($this->once())
- ->method('write')
- ->with('test_articles');
- $this->cache->expects($this->never())
- ->method('read');
- $this->cache->expects($this->never())
- ->method('delete');
- $this->shell->params['connection'] = 'test';
- $this->shell->build('articles');
- }
- /**
- * Test build() with a non-existing connection name.
- *
- * @return void
- */
- public function testBuildInvalidConnection()
- {
- $this->expectException(StopException::class);
- $this->shell->params['connection'] = 'derpy-derp';
- $this->shell->build('articles');
- }
- /**
- * Test clear() with an invalid connection name.
- *
- * @return void
- */
- public function testClearInvalidConnection()
- {
- $this->expectException(StopException::class);
- $this->shell->params['connection'] = 'derpy-derp';
- $this->shell->clear('articles');
- }
- /**
- * Test clear() with no args.
- *
- * @return void
- */
- public function testClearNoArgs()
- {
- $this->cache->expects($this->at(3))
- ->method('delete')
- ->with('test_articles');
- $this->shell->params['connection'] = 'test';
- $this->shell->clear();
- }
- /**
- * Test clear() with a model name.
- *
- * @return void
- */
- public function testClearNamedModel()
- {
- $this->cache->expects($this->never())
- ->method('write');
- $this->cache->expects($this->once())
- ->method('delete')
- ->with('test_articles');
- $this->shell->params['connection'] = 'test';
- $this->shell->clear('articles');
- }
- }
|