| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- <?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\Database;
- use Cake\Cache\Cache;
- use Cake\Cache\CacheEngine;
- use Cake\Database\SchemaCache;
- use Cake\Database\Schema\CachedCollection;
- use Cake\Datasource\ConnectionManager;
- use Cake\TestSuite\TestCase;
- /**
- * SchemaCache test.
- */
- class SchemaCacheTest extends TestCase
- {
- /**
- * Fixtures.
- *
- * @var array
- */
- public $fixtures = ['core.articles', 'core.tags'];
- /**
- * Cache Engine Mock
- *
- * @var \Cake\Cache\CacheEngine
- */
- public $cache;
- /**
- * setup method
- *
- * @return void
- */
- public function setUp()
- {
- parent::setUp();
- $this->cache = $this->getMockBuilder(CacheEngine::class)->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);
- $ormCache = new SchemaCache($ds);
- $ormCache->clear();
- $this->assertInstanceOf(CachedCollection::class, $ds->getSchemaCollection());
- }
- /**
- * Test that build enables the cache if it was disabled.
- *
- * @return void
- */
- public function testBuildEnablesMetadataCache()
- {
- $ds = ConnectionManager::get('test');
- $ds->cacheMetadata(false);
- $ormCache = new SchemaCache($ds);
- $ormCache->build();
- $this->assertInstanceOf(CachedCollection::class, $ds->getSchemaCollection());
- }
- /**
- * Test build() with no args.
- *
- * @return void
- */
- public function testBuildNoArgs()
- {
- $ds = ConnectionManager::get('test');
- $this->cache->method('write')
- ->will($this->returnValue(true));
- $this->cache->expects($this->at(3))
- ->method('write')
- ->with('test_articles');
- $ormCache = new SchemaCache($ds);
- $ormCache->build();
- }
- /**
- * Test build() with one arg.
- *
- * @return void
- */
- public function testBuildNamedModel()
- {
- $ds = ConnectionManager::get('test');
- $this->cache->expects($this->once())
- ->method('write')
- ->with('test_articles')
- ->will($this->returnValue(true));
- $this->cache->expects($this->never())
- ->method('delete');
- $ormCache = new SchemaCache($ds);
- $ormCache->build('articles');
- }
- /**
- * Test build() overwrites cached data.
- *
- * @return void
- */
- public function testBuildOverwritesExistingData()
- {
- $ds = ConnectionManager::get('test');
- $this->cache->expects($this->once())
- ->method('write')
- ->with('test_articles')
- ->will($this->returnValue(true));
- $this->cache->expects($this->never())
- ->method('read');
- $this->cache->expects($this->never())
- ->method('delete');
- $ormCache = new SchemaCache($ds);
- $ormCache->build('articles');
- }
- /**
- * Test clear() with no args.
- *
- * @return void
- */
- public function testClearNoArgs()
- {
- $ds = ConnectionManager::get('test');
- $this->cache->expects($this->at(3))
- ->method('delete')
- ->with('test_articles');
- $ormCache = new SchemaCache($ds);
- $ormCache->clear();
- }
- /**
- * Test clear() with a model name.
- *
- * @return void
- */
- public function testClearNamedModel()
- {
- $ds = ConnectionManager::get('test');
- $this->cache->expects($this->never())
- ->method('write');
- $this->cache->expects($this->once())
- ->method('delete')
- ->with('test_articles');
- $ormCache = new SchemaCache($ds);
- $ormCache->clear('articles');
- }
- /**
- * Tests getting a schema config from a connection instance
- *
- * @return void
- */
- public function testGetSchemaWithConnectionInstance()
- {
- $ds = ConnectionManager::get('test');
- $ormCache = new SchemaCache($ds);
- $result = $ormCache->getSchema($ds);
- $this->assertInstanceOf(CachedCollection::class, $result);
- }
- }
|