| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?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.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Database\Schema;
- use Cake\Cache\Cache;
- use Cake\Database\Schema\Collection;
- use Cake\Datasource\ConnectionManager;
- use Cake\TestSuite\TestCase;
- /**
- * Test case for Collection
- */
- class CollectionTest extends TestCase
- {
- /**
- * @var \Cake\Database\Connection
- */
- public $connection;
- /**
- * @var array
- */
- public $fixtures = [
- 'core.users'
- ];
- /**
- * Setup function
- *
- * @return void
- */
- public function setUp()
- {
- parent::setUp();
- $this->connection = ConnectionManager::get('test');
- Cache::clear(false, '_cake_model_');
- Cache::enable();
- }
- /**
- * Teardown function
- *
- * @return void
- */
- public function tearDown()
- {
- parent::tearDown();
- unset($this->connection);
- }
- /**
- * Test that describing non-existent tables fails.
- *
- * Tests for positive describe() calls are in each platformSchema
- * test case.
- *
- * @expectedException \Cake\Database\Exception
- * @return void
- */
- public function testDescribeIncorrectTable()
- {
- $schema = new Collection($this->connection);
- $this->assertNull($schema->describe('derp'));
- }
- /**
- * Tests that schema metadata is cached
- *
- * @return void
- */
- public function testDescribeCache()
- {
- $schema = $this->connection->getSchemaCollection();
- $table = $schema->describe('users');
- Cache::delete('test_users', '_cake_model_');
- $this->connection->cacheMetadata(true);
- $schema = $this->connection->getSchemaCollection();
- $result = $schema->describe('users');
- $this->assertEquals($table, $result);
- $result = Cache::read('test_users', '_cake_model_');
- $this->assertEquals($table, $result);
- }
- }
|