| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- <?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\Driver;
- use Cake\Datasource\ConnectionManager;
- use Cake\TestSuite\TestCase;
- use PDO;
- /**
- * Tests Mysql driver
- */
- class MysqlTest extends TestCase
- {
- /**
- * setup
- *
- * @return void
- */
- public function setup()
- {
- parent::setUp();
- $config = ConnectionManager::getConfig('test');
- $this->skipIf(strpos($config['driver'], 'Mysql') === false, 'Not using Mysql for test config');
- }
- /**
- * Test connecting to Mysql with default configuration
- *
- * @return void
- */
- public function testConnectionConfigDefault()
- {
- $driver = $this->getMockBuilder('Cake\Database\Driver\Mysql')
- ->setMethods(['_connect', 'connection'])
- ->getMock();
- $dsn = 'mysql:host=localhost;port=3306;dbname=cake;charset=utf8mb4';
- $expected = [
- 'persistent' => true,
- 'host' => 'localhost',
- 'username' => 'root',
- 'password' => '',
- 'database' => 'cake',
- 'port' => '3306',
- 'flags' => [],
- 'encoding' => 'utf8mb4',
- 'timezone' => null,
- 'init' => ['SET NAMES utf8mb4'],
- ];
- $expected['flags'] += [
- PDO::ATTR_PERSISTENT => true,
- PDO::MYSQL_ATTR_USE_BUFFERED_QUERY => true,
- PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
- ];
- $connection = $this->getMockBuilder('StdClass')
- ->setMethods(['exec'])
- ->getMock();
- $driver->expects($this->once())->method('_connect')
- ->with($dsn, $expected);
- $driver->expects($this->any())
- ->method('connection')
- ->will($this->returnValue($connection));
- $driver->connect([]);
- }
- /**
- * Test connecting to Mysql with custom configuration
- *
- * @return void
- */
- public function testConnectionConfigCustom()
- {
- $config = [
- 'persistent' => false,
- 'host' => 'foo',
- 'database' => 'bar',
- 'username' => 'user',
- 'password' => 'pass',
- 'port' => 3440,
- 'flags' => [1 => true, 2 => false],
- 'encoding' => 'some-encoding',
- 'timezone' => 'Antarctica',
- 'init' => [
- 'Execute this',
- 'this too',
- ]
- ];
- $driver = $this->getMockBuilder('Cake\Database\Driver\Mysql')
- ->setMethods(['_connect', 'connection'])
- ->setConstructorArgs([$config])
- ->getMock();
- $dsn = 'mysql:host=foo;port=3440;dbname=bar;charset=some-encoding';
- $expected = $config;
- $expected['init'][] = "SET time_zone = 'Antarctica'";
- $expected['init'][] = 'SET NAMES some-encoding';
- $expected['flags'] += [
- PDO::ATTR_PERSISTENT => false,
- PDO::MYSQL_ATTR_USE_BUFFERED_QUERY => true,
- PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
- ];
- $connection = $this->getMockBuilder('StdClass')
- ->setMethods(['exec'])
- ->getMock();
- $connection->expects($this->at(0))->method('exec')->with('Execute this');
- $connection->expects($this->at(1))->method('exec')->with('this too');
- $connection->expects($this->at(2))->method('exec')->with("SET time_zone = 'Antarctica'");
- $connection->expects($this->at(3))->method('exec')->with('SET NAMES some-encoding');
- $connection->expects($this->exactly(4))->method('exec');
- $driver->expects($this->once())->method('_connect')
- ->with($dsn, $expected);
- $driver->expects($this->any())->method('connection')
- ->will($this->returnValue($connection));
- $driver->connect($config);
- }
- /**
- * Test isConnected
- *
- * @return void
- */
- public function testIsConnected()
- {
- $connection = ConnectionManager::get('test');
- $connection->disconnect();
- $this->assertFalse($connection->isConnected(), 'Not connected now.');
- $connection->connect();
- $this->assertTrue($connection->isConnected(), 'Should be connected.');
- }
- public function testRollbackTransactionAutoConnect()
- {
- $connection = ConnectionManager::get('test');
- $connection->disconnect();
- $driver = $connection->getDriver();
- $this->assertFalse($driver->rollbackTransaction());
- $this->assertTrue($driver->isConnected());
- }
- public function testCommitTransactionAutoConnect()
- {
- $connection = ConnectionManager::get('test');
- $driver = $connection->getDriver();
- $this->assertFalse($driver->commitTransaction());
- $this->assertTrue($driver->isConnected());
- }
- }
|