| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- <?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\Log;
- use Cake\Database\Log\LoggingStatement;
- use Cake\TestSuite\TestCase;
- /**
- * Tests LoggingStatement class
- */
- class LoggingStatementTest extends TestCase
- {
- /**
- * Tests that queries are logged when executed without params
- *
- * @return void
- */
- public function testExecuteNoParams()
- {
- $inner = $this->getMockBuilder('PDOStatement')->getMock();
- $inner->expects($this->once())->method('rowCount')->will($this->returnValue(3));
- $logger = $this->getMockBuilder('\Cake\Database\Log\QueryLogger')->getMock();
- $logger->expects($this->once())
- ->method('log')
- ->with($this->logicalAnd(
- $this->isInstanceOf('\Cake\Database\Log\LoggedQuery'),
- $this->attributeEqualTo('query', 'SELECT bar FROM foo'),
- $this->attributeEqualTo('took', 5, 200),
- $this->attributeEqualTo('numRows', 3),
- $this->attributeEqualTo('params', [])
- ));
- $st = new LoggingStatement($inner);
- $st->queryString = 'SELECT bar FROM foo';
- $st->setLogger($logger);
- $st->execute();
- }
- /**
- * Tests that queries are logged when executed with params
- *
- * @return void
- */
- public function testExecuteWithParams()
- {
- $inner = $this->getMockBuilder('PDOStatement')->getMock();
- $inner->expects($this->once())->method('rowCount')->will($this->returnValue(4));
- $logger = $this->getMockBuilder('\Cake\Database\Log\QueryLogger')->getMock();
- $logger->expects($this->once())
- ->method('log')
- ->with($this->logicalAnd(
- $this->isInstanceOf('\Cake\Database\Log\LoggedQuery'),
- $this->attributeEqualTo('query', 'SELECT bar FROM foo'),
- $this->attributeEqualTo('took', 5, 200),
- $this->attributeEqualTo('numRows', 4),
- $this->attributeEqualTo('params', ['a' => 1, 'b' => 2])
- ));
- $st = new LoggingStatement($inner);
- $st->queryString = 'SELECT bar FROM foo';
- $st->setLogger($logger);
- $st->execute(['a' => 1, 'b' => 2]);
- }
- /**
- * Tests that queries are logged when executed with bound params
- *
- * @return void
- */
- public function testExecuteWithBinding()
- {
- $inner = $this->getMockBuilder('PDOStatement')->getMock();
- $inner->expects($this->any())->method('rowCount')->will($this->returnValue(4));
- $logger = $this->getMockBuilder('\Cake\Database\Log\QueryLogger')->getMock();
- $logger->expects($this->at(0))
- ->method('log')
- ->with($this->logicalAnd(
- $this->isInstanceOf('\Cake\Database\Log\LoggedQuery'),
- $this->attributeEqualTo('query', 'SELECT bar FROM foo'),
- $this->attributeEqualTo('took', 5, 200),
- $this->attributeEqualTo('numRows', 4),
- $this->attributeEqualTo('params', ['a' => 1, 'b' => '2013-01-01'])
- ));
- $logger->expects($this->at(1))
- ->method('log')
- ->with($this->logicalAnd(
- $this->isInstanceOf('\Cake\Database\Log\LoggedQuery'),
- $this->attributeEqualTo('query', 'SELECT bar FROM foo'),
- $this->attributeEqualTo('took', 5, 200),
- $this->attributeEqualTo('numRows', 4),
- $this->attributeEqualTo('params', ['a' => 1, 'b' => '2014-01-01'])
- ));
- $date = new \DateTime('2013-01-01');
- $inner->expects($this->at(0))->method('bindValue')->with('a', 1);
- $inner->expects($this->at(1))->method('bindValue')->with('b', $date);
- $driver = $this->getMockBuilder('\Cake\Database\Driver')->getMock();
- $st = new LoggingStatement($inner, $driver);
- $st->queryString = 'SELECT bar FROM foo';
- $st->setLogger($logger);
- $st->bindValue('a', 1);
- $st->bindValue('b', $date, 'date');
- $st->execute();
- $st->bindValue('b', new \DateTime('2014-01-01'), 'date');
- $st->execute();
- }
- /**
- * Tests that queries are logged despite database errors
- *
- * @return void
- */
- public function testExecuteWithError()
- {
- $this->expectException(\LogicException::class);
- $this->expectExceptionMessage('This is bad');
- $exception = new \LogicException('This is bad');
- $inner = $this->getMockBuilder('PDOStatement')->getMock();
- $inner->expects($this->once())->method('execute')
- ->will($this->throwException($exception));
- $logger = $this->getMockBuilder('\Cake\Database\Log\QueryLogger')->getMock();
- $logger->expects($this->once())
- ->method('log')
- ->with($this->logicalAnd(
- $this->isInstanceOf('\Cake\Database\Log\LoggedQuery'),
- $this->attributeEqualTo('query', 'SELECT bar FROM foo'),
- $this->attributeEqualTo('took', 5, 200),
- $this->attributeEqualTo('params', []),
- $this->attributeEqualTo('error', $exception)
- ));
- $st = new LoggingStatement($inner);
- $st->queryString = 'SELECT bar FROM foo';
- $st->setLogger($logger);
- $st->execute();
- }
- /**
- * Tests setting and getting the logger
- *
- * @group deprecated
- * @return void
- */
- public function testLoggerCompat()
- {
- $this->deprecated(function () {
- $logger = $this->getMockBuilder('\Cake\Database\Log\QueryLogger')->getMock();
- $st = new LoggingStatement();
- $this->assertNull($st->logger());
- $st->logger($logger);
- $this->assertSame($logger, $st->logger());
- });
- }
- /**
- * Tests setting and getting the logger
- *
- * @return void
- */
- public function testSetAndGetLogger()
- {
- $logger = $this->getMockBuilder('\Cake\Database\Log\QueryLogger')->getMock();
- $st = new LoggingStatement();
- $this->assertNull($st->getLogger());
- $st->setLogger($logger);
- $this->assertSame($logger, $st->getLogger());
- }
- }
|