| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430 |
- <?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;
- use Cake\Collection\Collection;
- use Cake\Database\Connection;
- use Cake\Database\Driver\Mysql;
- use Cake\Database\Exception\MissingConnectionException;
- use Cake\Database\Exception\NestedTransactionRollbackException;
- use Cake\Database\Log\LoggingStatement;
- use Cake\Database\Log\QueryLogger;
- use Cake\Database\Schema\CachedCollection;
- use Cake\Database\StatementInterface;
- use Cake\Database\Statement\BufferedStatement;
- use Cake\Datasource\ConnectionManager;
- use Cake\Log\Log;
- use Cake\TestSuite\TestCase;
- use Error;
- use Exception;
- use ReflectionMethod;
- use ReflectionProperty;
- /**
- * Tests Connection class
- */
- class ConnectionTest extends TestCase
- {
- public $fixtures = ['core.Things'];
- /**
- * Where the NestedTransactionRollbackException was created.
- *
- * @var int
- */
- protected $rollbackSourceLine = -1;
- /**
- * Internal states of nested transaction.
- *
- * @var array
- */
- protected $nestedTransactionStates = [];
- public function setUp()
- {
- parent::setUp();
- $this->connection = ConnectionManager::get('test');
- static::setAppNamespace();
- }
- public function tearDown()
- {
- Log::reset();
- $this->connection->disableSavePoints();
- $this->connection->setLogger(null);
- unset($this->connection);
- parent::tearDown();
- }
- /**
- * Auxiliary method to build a mock for a driver so it can be injected into
- * the connection object
- *
- * @return \Cake\Database\Driver|\PHPUnit_Framework_MockObject_MockObject
- */
- public function getMockFormDriver()
- {
- $driver = $this->getMockBuilder('Cake\Database\Driver')->getMock();
- $driver->expects($this->once())
- ->method('enabled')
- ->will($this->returnValue(true));
- return $driver;
- }
- /**
- * Tests connecting to database
- *
- * @return void
- */
- public function testConnect()
- {
- $this->assertTrue($this->connection->connect());
- $this->assertTrue($this->connection->isConnected());
- }
- /**
- * Tests creating a connection using no driver throws an exception
- *
- * @return void
- */
- public function testNoDriver()
- {
- $this->expectException(\Cake\Database\Exception\MissingDriverException::class);
- $this->expectExceptionMessage('Database driver could not be found.');
- $connection = new Connection([]);
- }
- /**
- * Tests creating a connection using an invalid driver throws an exception
- *
- * @return void
- */
- public function testEmptyDriver()
- {
- $this->expectException(\Cake\Database\Exception\MissingDriverException::class);
- $this->expectExceptionMessage('Database driver could not be found.');
- $connection = new Connection(['driver' => false]);
- }
- /**
- * Tests creating a connection using an invalid driver throws an exception
- *
- * @return void
- */
- public function testMissingDriver()
- {
- $this->expectException(\Cake\Database\Exception\MissingDriverException::class);
- $this->expectExceptionMessage('Database driver \Foo\InvalidDriver could not be found.');
- $connection = new Connection(['driver' => '\Foo\InvalidDriver']);
- }
- /**
- * Tests trying to use a disabled driver throws an exception
- *
- * @return void
- */
- public function testDisabledDriver()
- {
- $this->expectException(\Cake\Database\Exception\MissingExtensionException::class);
- $this->expectExceptionMessage('Database driver DriverMock cannot be used due to a missing PHP extension or unmet dependency');
- $mock = $this->getMockBuilder(Mysql::class)
- ->setMethods(['enabled'])
- ->setMockClassName('DriverMock')
- ->getMock();
- $connection = new Connection(['driver' => $mock]);
- }
- /**
- * Tests that the `driver` option supports the short classname/plugin syntax.
- *
- * @return void
- */
- public function testDriverOptionClassNameSupport()
- {
- $connection = new Connection(['driver' => 'TestDriver']);
- $this->assertInstanceOf('\TestApp\Database\Driver\TestDriver', $connection->getDriver());
- $connection = new Connection(['driver' => 'TestPlugin.TestDriver']);
- $this->assertInstanceOf('\TestPlugin\Database\Driver\TestDriver', $connection->getDriver());
- list(, $name) = namespaceSplit(get_class($this->connection->getDriver()));
- $connection = new Connection(['driver' => $name]);
- $this->assertInstanceOf(get_class($this->connection->getDriver()), $connection->getDriver());
- }
- /**
- * Tests that connecting with invalid credentials or database name throws an exception
- *
- * @return void
- */
- public function testWrongCredentials()
- {
- $config = ConnectionManager::getConfig('test');
- $this->skipIf(isset($config['url']), 'Datasource has dsn, skipping.');
- $connection = new Connection(['database' => '/dev/nonexistent'] + ConnectionManager::getConfig('test'));
- $e = null;
- try {
- $connection->connect();
- } catch (MissingConnectionException $e) {
- }
- $this->assertNotNull($e);
- $this->assertStringStartsWith('Connection to database could not be established:', $e->getMessage());
- $this->assertInstanceOf('PDOException', $e->getPrevious());
- }
- /**
- * Tests creation of prepared statements
- *
- * @return void
- */
- public function testPrepare()
- {
- $sql = 'SELECT 1 + 1';
- $result = $this->connection->prepare($sql);
- $this->assertInstanceOf('Cake\Database\StatementInterface', $result);
- $this->assertEquals($sql, $result->queryString);
- $query = $this->connection->newQuery()->select('1 + 1');
- $result = $this->connection->prepare($query);
- $this->assertInstanceOf('Cake\Database\StatementInterface', $result);
- $sql = '#SELECT [`"\[]?1 \+ 1[`"\]]?#';
- $this->assertRegExp($sql, $result->queryString);
- }
- /**
- * Tests executing a simple query using bound values
- *
- * @return void
- */
- public function testExecuteWithArguments()
- {
- $sql = 'SELECT 1 + ?';
- $statement = $this->connection->execute($sql, [1], ['integer']);
- $this->assertCount(1, $statement);
- $result = $statement->fetch();
- $this->assertEquals([2], $result);
- $statement->closeCursor();
- $sql = 'SELECT 1 + ? + ? AS total';
- $statement = $this->connection->execute($sql, [2, 3], ['integer', 'integer']);
- $this->assertCount(1, $statement);
- $result = $statement->fetch('assoc');
- $this->assertEquals(['total' => 6], $result);
- $statement->closeCursor();
- $sql = 'SELECT 1 + :one + :two AS total';
- $statement = $this->connection->execute($sql, ['one' => 2, 'two' => 3], ['one' => 'integer', 'two' => 'integer']);
- $this->assertCount(1, $statement);
- $result = $statement->fetch('assoc');
- $statement->closeCursor();
- $this->assertEquals(['total' => 6], $result);
- }
- /**
- * Tests executing a query with params and associated types
- *
- * @return void
- */
- public function testExecuteWithArgumentsAndTypes()
- {
- $sql = "SELECT '2012-01-01' = ?";
- $statement = $this->connection->execute($sql, [new \DateTime('2012-01-01')], ['date']);
- $result = $statement->fetch();
- $statement->closeCursor();
- $this->assertTrue((bool)$result[0]);
- }
- /**
- * test executing a buffered query interacts with Collection well.
- *
- * @return void
- */
- public function testBufferedStatementCollectionWrappingStatement()
- {
- $this->skipIf(
- !($this->connection->getDriver() instanceof \Cake\Database\Driver\Sqlite),
- 'Only required for SQLite driver which does not support buffered results natively'
- );
- $this->loadFixtures('Things');
- $statement = $this->connection->query('SELECT * FROM things LIMIT 3');
- $collection = new Collection($statement);
- $result = $collection->extract('id')->toArray();
- $this->assertSame(['1', '2'], $result);
- // Check iteration after extraction
- $result = [];
- foreach ($collection as $v) {
- $result[] = $v['id'];
- }
- $this->assertSame(['1', '2'], $result);
- }
- /**
- * Tests that passing a unknown value to a query throws an exception
- *
- * @return void
- */
- public function testExecuteWithMissingType()
- {
- $this->expectException(\InvalidArgumentException::class);
- $sql = 'SELECT ?';
- $statement = $this->connection->execute($sql, [new \DateTime('2012-01-01')], ['bar']);
- }
- /**
- * Tests executing a query with no params also works
- *
- * @return void
- */
- public function testExecuteWithNoParams()
- {
- $sql = 'SELECT 1';
- $statement = $this->connection->execute($sql);
- $result = $statement->fetch();
- $this->assertCount(1, $result);
- $this->assertEquals([1], $result);
- $statement->closeCursor();
- }
- /**
- * Tests it is possible to insert data into a table using matching types by key name
- *
- * @return void
- */
- public function testInsertWithMatchingTypes()
- {
- $data = ['id' => '3', 'title' => 'a title', 'body' => 'a body'];
- $result = $this->connection->insert(
- 'things',
- $data,
- ['id' => 'integer', 'title' => 'string', 'body' => 'string']
- );
- $this->assertInstanceOf('Cake\Database\StatementInterface', $result);
- $result->closeCursor();
- $result = $this->connection->execute('SELECT * from things where id = 3');
- $this->assertCount(1, $result);
- $row = $result->fetch('assoc');
- $result->closeCursor();
- $this->assertEquals($data, $row);
- }
- /**
- * Tests it is possible to insert data into a table using matching types by array position
- *
- * @return void
- */
- public function testInsertWithPositionalTypes()
- {
- $data = ['id' => '3', 'title' => 'a title', 'body' => 'a body'];
- $result = $this->connection->insert(
- 'things',
- $data,
- ['integer', 'string', 'string']
- );
- $result->closeCursor();
- $this->assertInstanceOf('Cake\Database\StatementInterface', $result);
- $result = $this->connection->execute('SELECT * from things where id = 3');
- $this->assertCount(1, $result);
- $row = $result->fetch('assoc');
- $result->closeCursor();
- $this->assertEquals($data, $row);
- }
- /**
- * Tests an statement class can be reused for multiple executions
- *
- * @return void
- */
- public function testStatementReusing()
- {
- $total = $this->connection->execute('SELECT COUNT(*) AS total FROM things');
- $result = $total->fetch('assoc');
- $this->assertEquals(2, $result['total']);
- $total->closeCursor();
- $total->execute();
- $result = $total->fetch('assoc');
- $this->assertEquals(2, $result['total']);
- $total->closeCursor();
- $result = $this->connection->execute('SELECT title, body FROM things');
- $row = $result->fetch('assoc');
- $this->assertEquals('a title', $row['title']);
- $this->assertEquals('a body', $row['body']);
- $row = $result->fetch('assoc');
- $result->closeCursor();
- $this->assertEquals('another title', $row['title']);
- $this->assertEquals('another body', $row['body']);
- $result->execute();
- $row = $result->fetch('assoc');
- $result->closeCursor();
- $this->assertEquals('a title', $row['title']);
- }
- /**
- * Tests that it is possible to pass PDO constants to the underlying statement
- * object for using alternate fetch types
- *
- * @return void
- */
- public function testStatementFetchObject()
- {
- $result = $this->connection->execute('SELECT title, body FROM things');
- $row = $result->fetch(\PDO::FETCH_OBJ);
- $this->assertEquals('a title', $row->title);
- $this->assertEquals('a body', $row->body);
- }
- /**
- * Tests rows can be updated without specifying any conditions nor types
- *
- * @return void
- */
- public function testUpdateWithoutConditionsNorTypes()
- {
- $title = 'changed the title!';
- $body = 'changed the body!';
- $this->connection->update('things', ['title' => $title, 'body' => $body]);
- $result = $this->connection->execute('SELECT * FROM things WHERE title = ? AND body = ?', [$title, $body]);
- $this->assertCount(2, $result);
- $result->closeCursor();
- }
- /**
- * Tests it is possible to use key => value conditions for update
- *
- * @return void
- */
- public function testUpdateWithConditionsNoTypes()
- {
- $title = 'changed the title!';
- $body = 'changed the body!';
- $this->connection->update('things', ['title' => $title, 'body' => $body], ['id' => 2]);
- $result = $this->connection->execute('SELECT * FROM things WHERE title = ? AND body = ?', [$title, $body]);
- $this->assertCount(1, $result);
- $result->closeCursor();
- }
- /**
- * Tests it is possible to use key => value and string conditions for update
- *
- * @return void
- */
- public function testUpdateWithConditionsCombinedNoTypes()
- {
- $title = 'changed the title!';
- $body = 'changed the body!';
- $this->connection->update('things', ['title' => $title, 'body' => $body], ['id' => 2, 'body is not null']);
- $result = $this->connection->execute('SELECT * FROM things WHERE title = ? AND body = ?', [$title, $body]);
- $this->assertCount(1, $result);
- $result->closeCursor();
- }
- /**
- * Tests you can bind types to update values
- *
- * @return void
- */
- public function testUpdateWithTypes()
- {
- $title = 'changed the title!';
- $body = new \DateTime('2012-01-01');
- $values = compact('title', 'body');
- $this->connection->update('things', $values, [], ['body' => 'date']);
- $result = $this->connection->execute('SELECT * FROM things WHERE title = :title AND body = :body', $values, ['body' => 'date']);
- $this->assertCount(2, $result);
- $row = $result->fetch('assoc');
- $this->assertEquals('2012-01-01', $row['body']);
- $row = $result->fetch('assoc');
- $this->assertEquals('2012-01-01', $row['body']);
- $result->closeCursor();
- }
- /**
- * Tests you can bind types to update values
- *
- * @return void
- */
- public function testUpdateWithConditionsAndTypes()
- {
- $title = 'changed the title!';
- $body = new \DateTime('2012-01-01');
- $values = compact('title', 'body');
- $this->connection->update('things', $values, ['id' => '1'], ['body' => 'date', 'id' => 'integer']);
- $result = $this->connection->execute('SELECT * FROM things WHERE title = :title AND body = :body', $values, ['body' => 'date']);
- $this->assertCount(1, $result);
- $row = $result->fetch('assoc');
- $this->assertEquals('2012-01-01', $row['body']);
- $result->closeCursor();
- }
- /**
- * Tests delete from table with no conditions
- *
- * @return void
- */
- public function testDeleteNoConditions()
- {
- $this->connection->delete('things');
- $result = $this->connection->execute('SELECT * FROM things');
- $this->assertCount(0, $result);
- $result->closeCursor();
- }
- /**
- * Tests delete from table with conditions
- *
- * @return void
- */
- public function testDeleteWithConditions()
- {
- $this->connection->delete('things', ['id' => '1'], ['id' => 'integer']);
- $result = $this->connection->execute('SELECT * FROM things');
- $this->assertCount(1, $result);
- $result->closeCursor();
- $this->connection->delete('things', ['id' => '1'], ['id' => 'integer']);
- $result = $this->connection->execute('SELECT * FROM things');
- $this->assertCount(1, $result);
- $result->closeCursor();
- $this->connection->delete('things', ['id' => '2'], ['id' => 'integer']);
- $result = $this->connection->execute('SELECT * FROM things');
- $this->assertCount(0, $result);
- $result->closeCursor();
- }
- /**
- * Tests that it is possible to use simple database transactions
- *
- * @return void
- */
- public function testSimpleTransactions()
- {
- $this->connection->begin();
- $this->connection->delete('things', ['id' => 1]);
- $this->connection->rollback();
- $result = $this->connection->execute('SELECT * FROM things');
- $this->assertCount(2, $result);
- $result->closeCursor();
- $this->connection->begin();
- $this->connection->delete('things', ['id' => 1]);
- $this->connection->commit();
- $result = $this->connection->execute('SELECT * FROM things');
- $this->assertCount(1, $result);
- }
- /**
- * Tests that the destructor of Connection generates a warning log
- * when transaction is not closed
- *
- * @return void
- */
- public function testDestructorWithUncommittedTransaction()
- {
- $driver = $this->getMockFormDriver();
- $connection = new Connection(['driver' => $driver]);
- $connection->begin();
- $this->assertTrue($connection->inTransaction());
- $logger = $this->createMock('Psr\Log\AbstractLogger');
- $logger->expects($this->once())
- ->method('log')
- ->with('warning', $this->stringContains('The connection is going to be closed'));
- Log::setConfig('error', $logger);
- // Destroy the connection
- unset($connection);
- }
- /**
- * Tests that it is possible to use virtualized nested transaction
- * with early rollback algorithm
- *
- * @return void
- */
- public function testVirtualNestedTransaction()
- {
- //starting 3 virtual transaction
- $this->connection->begin();
- $this->connection->begin();
- $this->connection->begin();
- $this->connection->delete('things', ['id' => 1]);
- $result = $this->connection->execute('SELECT * FROM things');
- $this->assertCount(1, $result);
- $this->connection->commit();
- $this->connection->rollback();
- $result = $this->connection->execute('SELECT * FROM things');
- $this->assertCount(2, $result);
- }
- /**
- * Tests that it is possible to use virtualized nested transaction
- * with early rollback algorithm
- *
- * @return void
- */
- public function testVirtualNestedTransaction2()
- {
- //starting 3 virtual transaction
- $this->connection->begin();
- $this->connection->begin();
- $this->connection->begin();
- $this->connection->delete('things', ['id' => 1]);
- $result = $this->connection->execute('SELECT * FROM things');
- $this->assertCount(1, $result);
- $this->connection->rollback();
- $result = $this->connection->execute('SELECT * FROM things');
- $this->assertCount(2, $result);
- }
- /**
- * Tests that it is possible to use virtualized nested transaction
- * with early rollback algorithm
- *
- * @return void
- */
- public function testVirtualNestedTransaction3()
- {
- //starting 3 virtual transaction
- $this->connection->begin();
- $this->connection->begin();
- $this->connection->begin();
- $this->connection->delete('things', ['id' => 1]);
- $result = $this->connection->execute('SELECT * FROM things');
- $this->assertCount(1, $result);
- $this->connection->commit();
- $this->connection->commit();
- $this->connection->commit();
- $result = $this->connection->execute('SELECT * FROM things');
- $this->assertCount(1, $result);
- }
- /**
- * Tests that it is possible to real use nested transactions
- *
- * @return void
- */
- public function testSavePoints()
- {
- $this->skipIf(!$this->connection->enableSavePoints(true));
- $this->connection->begin();
- $this->connection->delete('things', ['id' => 1]);
- $result = $this->connection->execute('SELECT * FROM things');
- $this->assertCount(1, $result);
- $this->connection->begin();
- $this->connection->delete('things', ['id' => 2]);
- $result = $this->connection->execute('SELECT * FROM things');
- $this->assertCount(0, $result);
- $this->connection->rollback();
- $result = $this->connection->execute('SELECT * FROM things');
- $this->assertCount(1, $result);
- $this->connection->rollback();
- $result = $this->connection->execute('SELECT * FROM things');
- $this->assertCount(2, $result);
- }
- /**
- * Tests that it is possible to real use nested transactions
- *
- * @return void
- */
- public function testSavePoints2()
- {
- $this->skipIf(!$this->connection->enableSavePoints(true));
- $this->connection->begin();
- $this->connection->delete('things', ['id' => 1]);
- $result = $this->connection->execute('SELECT * FROM things');
- $this->assertCount(1, $result);
- $this->connection->begin();
- $this->connection->delete('things', ['id' => 2]);
- $result = $this->connection->execute('SELECT * FROM things');
- $this->assertCount(0, $result);
- $this->connection->rollback();
- $result = $this->connection->execute('SELECT * FROM things');
- $this->assertCount(1, $result);
- $this->connection->commit();
- $result = $this->connection->execute('SELECT * FROM things');
- $this->assertCount(1, $result);
- }
- /**
- * Tests inTransaction()
- *
- * @return void
- */
- public function testInTransaction()
- {
- $this->connection->begin();
- $this->assertTrue($this->connection->inTransaction());
- $this->connection->begin();
- $this->assertTrue($this->connection->inTransaction());
- $this->connection->commit();
- $this->assertTrue($this->connection->inTransaction());
- $this->connection->commit();
- $this->assertFalse($this->connection->inTransaction());
- $this->connection->begin();
- $this->assertTrue($this->connection->inTransaction());
- $this->connection->begin();
- $this->connection->rollback();
- $this->assertFalse($this->connection->inTransaction());
- }
- /**
- * Tests inTransaction() with save points
- *
- * @return void
- */
- public function testInTransactionWithSavePoints()
- {
- $this->skipIf(
- $this->connection->getDriver() instanceof \Cake\Database\Driver\Sqlserver,
- 'SQLServer fails when this test is included.'
- );
- $this->skipIf(!$this->connection->enableSavePoints(true));
- $this->connection->begin();
- $this->assertTrue($this->connection->inTransaction());
- $this->connection->begin();
- $this->assertTrue($this->connection->inTransaction());
- $this->connection->commit();
- $this->assertTrue($this->connection->inTransaction());
- $this->connection->commit();
- $this->assertFalse($this->connection->inTransaction());
- $this->connection->begin();
- $this->assertTrue($this->connection->inTransaction());
- $this->connection->begin();
- $this->connection->rollback();
- $this->assertTrue($this->connection->inTransaction());
- $this->connection->rollback();
- $this->assertFalse($this->connection->inTransaction());
- }
- /**
- * Tests connection can quote values to be safely used in query strings
- *
- * @return void
- */
- public function testQuote()
- {
- $this->skipIf(!$this->connection->supportsQuoting());
- $expected = "'2012-01-01'";
- $result = $this->connection->quote(new \DateTime('2012-01-01'), 'date');
- $this->assertEquals($expected, $result);
- $expected = "'1'";
- $result = $this->connection->quote(1, 'string');
- $this->assertEquals($expected, $result);
- $expected = "'hello'";
- $result = $this->connection->quote('hello', 'string');
- $this->assertEquals($expected, $result);
- }
- /**
- * Tests identifier quoting
- *
- * @return void
- */
- public function testQuoteIdentifier()
- {
- $driver = $this->getMockBuilder('Cake\Database\Driver\Sqlite')
- ->setMethods(['enabled'])
- ->getMock();
- $driver->expects($this->once())
- ->method('enabled')
- ->will($this->returnValue(true));
- $connection = new Connection(['driver' => $driver]);
- $result = $connection->quoteIdentifier('name');
- $expected = '"name"';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('Model.*');
- $expected = '"Model".*';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('Items.No_ 2');
- $expected = '"Items"."No_ 2"';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('Items.No_ 2 thing');
- $expected = '"Items"."No_ 2 thing"';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('Items.No_ 2 thing AS thing');
- $expected = '"Items"."No_ 2 thing" AS "thing"';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('Items.Item Category Code = :c1');
- $expected = '"Items"."Item Category Code" = :c1';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('MTD()');
- $expected = 'MTD()';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('(sm)');
- $expected = '(sm)';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('name AS x');
- $expected = '"name" AS "x"';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('Model.name AS x');
- $expected = '"Model"."name" AS "x"';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('Function(Something.foo)');
- $expected = 'Function("Something"."foo")';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('Function(SubFunction(Something.foo))');
- $expected = 'Function(SubFunction("Something"."foo"))';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('Function(Something.foo) AS x');
- $expected = 'Function("Something"."foo") AS "x"';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('name-with-minus');
- $expected = '"name-with-minus"';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('my-name');
- $expected = '"my-name"';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('Foo-Model.*');
- $expected = '"Foo-Model".*';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('Team.P%');
- $expected = '"Team"."P%"';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('Team.G/G');
- $expected = '"Team"."G/G"';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('Model.name as y');
- $expected = '"Model"."name" AS "y"';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('nämé');
- $expected = '"nämé"';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('aßa.nämé');
- $expected = '"aßa"."nämé"';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('aßa.*');
- $expected = '"aßa".*';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('Modeß.nämé as y');
- $expected = '"Modeß"."nämé" AS "y"';
- $this->assertEquals($expected, $result);
- $result = $connection->quoteIdentifier('Model.näme Datum as y');
- $expected = '"Model"."näme Datum" AS "y"';
- $this->assertEquals($expected, $result);
- }
- /**
- * Tests default return vale for logger() function
- *
- * @return void
- */
- public function testGetLoggerDefault()
- {
- $logger = $this->connection->getLogger();
- $this->assertInstanceOf('Cake\Database\Log\QueryLogger', $logger);
- $this->assertSame($logger, $this->connection->getLogger());
- }
- /**
- * Tests that a custom logger object can be set
- *
- * @group deprecated
- * @return void
- */
- public function testSetLogger()
- {
- $this->deprecated(function () {
- $logger = new QueryLogger();
- $this->connection->logger($logger);
- $this->assertSame($logger, $this->connection->logger());
- });
- }
- /**
- * Tests setting and getting the logger object
- *
- * @return void
- */
- public function testGetAndSetLogger()
- {
- $logger = new QueryLogger();
- $this->connection->setLogger($logger);
- $this->assertSame($logger, $this->connection->getLogger());
- }
- /**
- * Tests that statements are decorated with a logger when logQueries is set to true
- *
- * @return void
- */
- public function testLoggerDecorator()
- {
- $logger = new QueryLogger();
- $this->connection->enableQueryLogging(true);
- $this->connection->setLogger($logger);
- $st = $this->connection->prepare('SELECT 1');
- $this->assertInstanceOf(LoggingStatement::class, $st);
- $this->assertSame($logger, $st->getLogger());
- $this->connection->enableQueryLogging(false);
- $st = $this->connection->prepare('SELECT 1');
- $this->assertNotInstanceOf('\Cake\Database\Log\LoggingStatement', $st);
- }
- /**
- * test logQueries method
- *
- * @deprecated
- * @return void
- */
- public function testLogQueries()
- {
- $this->deprecated(function () {
- $this->connection->logQueries(true);
- $this->assertTrue($this->connection->logQueries());
- $this->connection->logQueries(false);
- $this->assertFalse($this->connection->logQueries());
- });
- }
- /**
- * test enableQueryLogging method
- *
- * @return void
- */
- public function testEnableQueryLogging()
- {
- $this->connection->enableQueryLogging(true);
- $this->assertTrue($this->connection->isQueryLoggingEnabled());
- $this->connection->disableQueryLogging();
- $this->assertFalse($this->connection->isQueryLoggingEnabled());
- }
- /**
- * Tests that log() function logs to the configured query logger
- *
- * @return void
- */
- public function testLogFunction()
- {
- $logger = $this->getMockBuilder(QueryLogger::class)->getMock();
- $this->connection->setLogger($logger);
- $logger->expects($this->once())->method('log')
- ->with($this->logicalAnd(
- $this->isInstanceOf('\Cake\Database\Log\LoggedQuery'),
- $this->attributeEqualTo('query', 'SELECT 1')
- ));
- $this->connection->log('SELECT 1');
- }
- /**
- * Tests that begin and rollback are also logged
- *
- * @return void
- */
- public function testLogBeginRollbackTransaction()
- {
- $connection = $this
- ->getMockBuilder(Connection::class)
- ->setMethods(['connect'])
- ->disableOriginalConstructor()
- ->getMock();
- $connection->enableQueryLogging(true);
- $driver = $this->getMockFormDriver();
- $connection->setDriver($driver);
- $logger = $this->getMockBuilder(QueryLogger::class)->getMock();
- $connection->setLogger($logger);
- $logger->expects($this->at(0))->method('log')
- ->with($this->logicalAnd(
- $this->isInstanceOf('\Cake\Database\Log\LoggedQuery'),
- $this->attributeEqualTo('query', 'BEGIN')
- ));
- $logger->expects($this->at(1))->method('log')
- ->with($this->logicalAnd(
- $this->isInstanceOf('\Cake\Database\Log\LoggedQuery'),
- $this->attributeEqualTo('query', 'ROLLBACK')
- ));
- $connection->begin();
- $connection->begin(); //This one will not be logged
- $connection->rollback();
- }
- /**
- * Tests that commits are logged
- *
- * @return void
- */
- public function testLogCommitTransaction()
- {
- $driver = $this->getMockFormDriver();
- $connection = $this->getMockBuilder(Connection::class)
- ->setMethods(['connect'])
- ->setConstructorArgs([['driver' => $driver]])
- ->getMock();
- $logger = $this->getMockBuilder(QueryLogger::class)->getMock();
- $connection->setLogger($logger);
- $logger->expects($this->at(1))->method('log')
- ->with($this->logicalAnd(
- $this->isInstanceOf('\Cake\Database\Log\LoggedQuery'),
- $this->attributeEqualTo('query', 'COMMIT')
- ));
- $connection->enableQueryLogging(true);
- $connection->begin();
- $connection->commit();
- }
- /**
- * Tests that the transactional method will start and commit a transaction
- * around some arbitrary function passed as argument
- *
- * @return void
- */
- public function testTransactionalSuccess()
- {
- $driver = $this->getMockFormDriver();
- $connection = $this->getMockBuilder(Connection::class)
- ->setMethods(['connect', 'commit', 'begin'])
- ->setConstructorArgs([['driver' => $driver]])
- ->getMock();
- $connection->expects($this->at(0))->method('begin');
- $connection->expects($this->at(1))->method('commit');
- $result = $connection->transactional(function ($conn) use ($connection) {
- $this->assertSame($connection, $conn);
- return 'thing';
- });
- $this->assertEquals('thing', $result);
- }
- /**
- * Tests that the transactional method will rollback the transaction if false
- * is returned from the callback
- *
- * @return void
- */
- public function testTransactionalFail()
- {
- $driver = $this->getMockFormDriver();
- $connection = $this->getMockBuilder(Connection::class)
- ->setMethods(['connect', 'commit', 'begin', 'rollback'])
- ->setConstructorArgs([['driver' => $driver]])
- ->getMock();
- $connection->expects($this->at(0))->method('begin');
- $connection->expects($this->at(1))->method('rollback');
- $connection->expects($this->never())->method('commit');
- $result = $connection->transactional(function ($conn) use ($connection) {
- $this->assertSame($connection, $conn);
- return false;
- });
- $this->assertFalse($result);
- }
- /**
- * Tests that the transactional method will rollback the transaction
- * and throw the same exception if the callback raises one
- *
- * @return void
- * @throws \InvalidArgumentException
- */
- public function testTransactionalWithException()
- {
- $this->expectException(\InvalidArgumentException::class);
- $driver = $this->getMockFormDriver();
- $connection = $this->getMockBuilder(Connection::class)
- ->setMethods(['connect', 'commit', 'begin', 'rollback'])
- ->setConstructorArgs([['driver' => $driver]])
- ->getMock();
- $connection->expects($this->at(0))->method('begin');
- $connection->expects($this->at(1))->method('rollback');
- $connection->expects($this->never())->method('commit');
- $connection->transactional(function ($conn) use ($connection) {
- $this->assertSame($connection, $conn);
- throw new \InvalidArgumentException();
- });
- }
- /**
- * Tests that the transactional method will rollback the transaction
- * and throw the same error if the callback raises one
- *
- * @return void
- * @throws \Error
- */
- public function testTransactionalWithPHP7Error()
- {
- $this->skipIf(version_compare(PHP_VERSION, '7.0.0', '<'), 'Error class only exists since PHP 7.');
- $this->expectException(\Error::class);
- $driver = $this->getMockFormDriver();
- $connection = $this->getMockBuilder(Connection::class)
- ->setMethods(['connect', 'commit', 'begin', 'rollback'])
- ->setConstructorArgs([['driver' => $driver]])
- ->getMock();
- $connection->expects($this->at(0))->method('begin');
- $connection->expects($this->at(1))->method('rollback');
- $connection->expects($this->never())->method('commit');
- $connection->transactional(function ($conn) use ($connection) {
- $this->assertSame($connection, $conn);
- throw new \Error();
- });
- }
- /**
- * Tests it is possible to set a schema collection object
- *
- * @return void
- */
- public function testSetSchemaCollection()
- {
- $driver = $this->getMockFormDriver();
- $connection = $this->getMockBuilder(Connection::class)
- ->setMethods(['connect'])
- ->setConstructorArgs([['driver' => $driver]])
- ->getMock();
- $schema = $connection->getSchemaCollection();
- $this->assertInstanceOf('Cake\Database\Schema\Collection', $schema);
- $schema = $this->getMockBuilder('Cake\Database\Schema\Collection')
- ->setConstructorArgs([$connection])
- ->getMock();
- $connection->setSchemaCollection($schema);
- $this->assertSame($schema, $connection->getSchemaCollection());
- }
- /**
- * Tests it is possible to set a schema collection object
- *
- * @group deprecated
- * @return void
- */
- public function testSchemaCollection()
- {
- $this->deprecated(function () {
- $driver = $this->getMockFormDriver();
- $connection = $this->getMockBuilder(Connection::class)
- ->setMethods(['connect'])
- ->setConstructorArgs([['driver' => $driver]])
- ->getMock();
- $schema = $connection->schemaCollection();
- $this->assertInstanceOf('Cake\Database\Schema\Collection', $schema);
- $schema = $this->getMockBuilder('Cake\Database\Schema\Collection')
- ->setConstructorArgs([$connection])
- ->getMock();
- $connection->schemaCollection($schema);
- $this->assertSame($schema, $connection->schemaCollection());
- });
- }
- /**
- * Test CachedCollection creation with default and custom cache key prefix.
- *
- * @return void
- */
- public function testGetCachedCollection()
- {
- $driver = $this->getMockFormDriver();
- $connection = $this->getMockBuilder(Connection::class)
- ->setMethods(['connect'])
- ->setConstructorArgs([[
- 'driver' => $driver,
- 'name' => 'default',
- 'cacheMetadata' => true,
- ]])
- ->getMock();
- $schema = $connection->getSchemaCollection();
- $this->assertInstanceOf(CachedCollection::class, $schema);
- $this->assertSame('default_key', $schema->cacheKey('key'));
- $driver = $this->getMockFormDriver();
- $connection = $this->getMockBuilder(Connection::class)
- ->setMethods(['connect'])
- ->setConstructorArgs([[
- 'driver' => $driver,
- 'name' => 'default',
- 'cacheMetadata' => true,
- 'cacheKeyPrefix' => 'foo',
- ]])
- ->getMock();
- $schema = $connection->getSchemaCollection();
- $this->assertInstanceOf(CachedCollection::class, $schema);
- $this->assertSame('foo_key', $schema->cacheKey('key'));
- }
- /**
- * Tests that allowed nesting of commit/rollback operations doesn't
- * throw any exceptions.
- *
- * @return void
- */
- public function testNestedTransactionRollbackExceptionNotThrown()
- {
- $this->connection->transactional(function () {
- $this->connection->transactional(function () {
- return true;
- });
- return true;
- });
- $this->assertFalse($this->connection->inTransaction());
- $this->connection->transactional(function () {
- $this->connection->transactional(function () {
- return true;
- });
- return false;
- });
- $this->assertFalse($this->connection->inTransaction());
- $this->connection->transactional(function () {
- $this->connection->transactional(function () {
- return false;
- });
- return false;
- });
- $this->assertFalse($this->connection->inTransaction());
- }
- /**
- * Tests that not allowed nesting of commit/rollback operations throws
- * a NestedTransactionRollbackException.
- *
- * @return void
- */
- public function testNestedTransactionRollbackExceptionThrown()
- {
- $this->rollbackSourceLine = -1;
- $e = null;
- try {
- $this->connection->transactional(function () {
- $this->connection->transactional(function () {
- return false;
- });
- $this->rollbackSourceLine = __LINE__ - 1;
- return true;
- });
- $this->fail('NestedTransactionRollbackException should be thrown');
- } catch (NestedTransactionRollbackException $e) {
- }
- $trace = $e->getTrace();
- $this->assertEquals(__FILE__, $trace[1]['file']);
- $this->assertEquals($this->rollbackSourceLine, $trace[1]['line']);
- }
- /**
- * Tests more detail about that not allowed nesting of rollback/commit
- * operations throws a NestedTransactionRollbackException.
- *
- * @return void
- */
- public function testNestedTransactionStates()
- {
- $this->rollbackSourceLine = -1;
- $this->nestedTransactionStates = [];
- $e = null;
- try {
- $this->connection->transactional(function () {
- $this->pushNestedTransactionState();
- $this->connection->transactional(function () {
- return true;
- });
- $this->connection->transactional(function () {
- $this->pushNestedTransactionState();
- $this->connection->transactional(function () {
- return false;
- });
- $this->rollbackSourceLine = __LINE__ - 1;
- $this->pushNestedTransactionState();
- return true;
- });
- $this->connection->transactional(function () {
- return false;
- });
- $this->pushNestedTransactionState();
- return true;
- });
- $this->fail('NestedTransactionRollbackException should be thrown');
- } catch (NestedTransactionRollbackException $e) {
- }
- $this->pushNestedTransactionState();
- $this->assertSame([false, false, true, true, false], $this->nestedTransactionStates);
- $this->assertFalse($this->connection->inTransaction());
- $trace = $e->getTrace();
- $this->assertEquals(__FILE__, $trace[1]['file']);
- $this->assertEquals($this->rollbackSourceLine, $trace[1]['line']);
- }
- /**
- * Helper method to trace nested transaction states.
- *
- * @return void
- */
- public function pushNestedTransactionState()
- {
- $method = new ReflectionMethod($this->connection, 'wasNestedTransactionRolledback');
- $method->setAccessible(true);
- $this->nestedTransactionStates[] = $method->invoke($this->connection);
- }
- /**
- * Tests that the connection is restablished whenever it is interrupted
- * after having used the connection at least once.
- *
- * @return void
- */
- public function testAutomaticReconnect()
- {
- $conn = clone $this->connection;
- $statement = $conn->query('SELECT 1');
- $statement->execute();
- $statement->closeCursor();
- $prop = new ReflectionProperty($conn, '_driver');
- $prop->setAccessible(true);
- $oldDriver = $prop->getValue($conn);
- $newDriver = $this->getMockBuilder('Cake\Database\Driver')->getMock();
- $prop->setValue($conn, $newDriver);
- $newDriver->expects($this->at(0))
- ->method('prepare')
- ->will($this->throwException(new Exception('server gone away')));
- $newDriver->expects($this->at(1))->method('disconnect');
- $newDriver->expects($this->at(2))->method('connect');
- $newDriver->expects($this->at(3))
- ->method('prepare')
- ->will($this->returnValue($statement));
- $res = $conn->query('SELECT 1');
- $this->assertInstanceOf(StatementInterface::class, $res);
- }
- /**
- * Tests that the connection is not restablished whenever it is interrupted
- * inside a transaction.
- *
- * @return void
- */
- public function testNoAutomaticReconnect()
- {
- $conn = clone $this->connection;
- $statement = $conn->query('SELECT 1');
- $statement->execute();
- $statement->closeCursor();
- $conn->begin();
- $prop = new ReflectionProperty($conn, '_driver');
- $prop->setAccessible(true);
- $oldDriver = $prop->getValue($conn);
- $newDriver = $this->getMockBuilder('Cake\Database\Driver')->getMock();
- $prop->setValue($conn, $newDriver);
- $newDriver->expects($this->once())
- ->method('prepare')
- ->will($this->throwException(new Exception('server gone away')));
- $this->expectException(Exception::class);
- $conn->query('SELECT 1');
- }
- }
|