| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381 |
- <?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\Database\Query;
- use Cake\TestSuite\TestCase;
- use PDO;
- /**
- * Tests Sqlserver driver
- */
- class SqlserverTest extends TestCase
- {
- /**
- * Set up
- *
- * @return void
- */
- public function setUp()
- {
- parent::setUp();
- $this->missingExtension = !defined('PDO::SQLSRV_ENCODING_UTF8');
- }
- /**
- * data provider for testDnsString
- *
- * @return array
- */
- public function dnsStringDataProvider()
- {
- return [
- [
- [
- 'app' => 'CakePHP-Testapp',
- 'encoding' => '',
- 'connectionPooling' => true,
- 'failoverPartner' => 'failover.local',
- 'loginTimeout' => 10,
- 'multiSubnetFailover' => 'failover.local',
- ],
- 'sqlsrv:Server=localhost\SQLEXPRESS;Database=cake;MultipleActiveResultSets=false;APP=CakePHP-Testapp;ConnectionPooling=1;Failover_Partner=failover.local;LoginTimeout=10;MultiSubnetFailover=failover.local',
- ],
- [
- [
- 'app' => 'CakePHP-Testapp',
- 'encoding' => '',
- 'failoverPartner' => 'failover.local',
- 'multiSubnetFailover' => 'failover.local',
- ],
- 'sqlsrv:Server=localhost\SQLEXPRESS;Database=cake;MultipleActiveResultSets=false;APP=CakePHP-Testapp;Failover_Partner=failover.local;MultiSubnetFailover=failover.local',
- ],
- [
- [
- 'encoding' => '',
- ],
- 'sqlsrv:Server=localhost\SQLEXPRESS;Database=cake;MultipleActiveResultSets=false',
- ],
- [
- [
- 'app' => 'CakePHP-Testapp',
- 'encoding' => '',
- 'host' => 'localhost\SQLEXPRESS',
- 'port' => 9001,
- ],
- 'sqlsrv:Server=localhost\SQLEXPRESS,9001;Database=cake;MultipleActiveResultSets=false;APP=CakePHP-Testapp',
- ],
- ];
- }
- /**
- * Test if all options in dns string are set
- *
- * @dataProvider dnsStringDataProvider
- * @param array $constructorArgs
- * @param string $dnsString
- * @return void
- */
- public function testDnsString($constructorArgs, $dnsString)
- {
- $driver = $this->getMockBuilder('Cake\Database\Driver\Sqlserver')
- ->setMethods(['_connect'])
- ->setConstructorArgs([$constructorArgs])
- ->getMock();
- $driver->method('_connect')
- ->with($this->callback(function ($dns) use ($dnsString) {
- $this->assertSame($dns, $dnsString);
- return true;
- }))
- ->will($this->returnValue([]));
- $driver->connect();
- }
- /**
- * Test connecting to Sqlserver with custom configuration
- *
- * @return void
- */
- public function testConnectionConfigCustom()
- {
- $this->skipIf($this->missingExtension, 'pdo_sqlsrv is not installed.');
- $config = [
- 'host' => 'foo',
- 'username' => 'Administrator',
- 'password' => 'blablabla',
- 'database' => 'bar',
- 'encoding' => 'a-language',
- 'flags' => [1 => true, 2 => false],
- 'init' => ['Execute this', 'this too'],
- 'settings' => ['config1' => 'value1', 'config2' => 'value2'],
- ];
- $driver = $this->getMockBuilder('Cake\Database\Driver\Sqlserver')
- ->setMethods(['_connect', 'setConnection', 'getConnection'])
- ->setConstructorArgs([$config])
- ->getMock();
- $dsn = 'sqlsrv:Server=foo;Database=bar;MultipleActiveResultSets=false';
- $expected = $config;
- $expected['flags'] += [
- PDO::ATTR_EMULATE_PREPARES => false,
- PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
- PDO::SQLSRV_ATTR_ENCODING => 'a-language',
- ];
- $expected['attributes'] = [];
- $expected['app'] = null;
- $expected['connectionPooling'] = null;
- $expected['failoverPartner'] = null;
- $expected['loginTimeout'] = null;
- $expected['multiSubnetFailover'] = null;
- $expected['port'] = null;
- $connection = $this->getMockBuilder('stdClass')
- ->setMethods(['exec', 'quote'])
- ->getMock();
- $connection->expects($this->any())
- ->method('quote')
- ->will($this->onConsecutiveCalls(
- $this->returnArgument(0),
- $this->returnArgument(0),
- $this->returnArgument(0)
- ));
- $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 config1 value1');
- $connection->expects($this->at(3))->method('exec')->with('SET config2 value2');
- $driver->setConnection($connection);
- $driver->expects($this->once())->method('_connect')
- ->with($dsn, $expected);
- $driver->expects($this->any())->method('getConnection')
- ->will($this->returnValue($connection));
- $driver->connect();
- }
- /**
- * Test connecting to Sqlserver with persistent set to false
- *
- * @return void
- */
- public function testConnectionPersistentFalse()
- {
- $this->skipIf($this->missingExtension, 'pdo_sqlsrv is not installed.');
- $config = [
- 'persistent' => false,
- 'host' => 'foo',
- 'username' => 'Administrator',
- 'password' => 'blablabla',
- 'database' => 'bar',
- 'encoding' => 'a-language',
- ];
- $driver = $this->getMockBuilder('Cake\Database\Driver\Sqlserver')
- ->setMethods(['_connect', 'connection'])
- ->setConstructorArgs([$config])
- ->getMock();
- $dsn = 'sqlsrv:Server=foo;Database=bar;MultipleActiveResultSets=false';
- $expected = $config;
- $expected['flags'] = [
- PDO::ATTR_EMULATE_PREPARES => false,
- PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
- PDO::SQLSRV_ATTR_ENCODING => 'a-language',
- ];
- $expected['attributes'] = [];
- $expected['settings'] = [];
- $expected['init'] = [];
- $expected['app'] = null;
- $expected['connectionPooling'] = null;
- $expected['failoverPartner'] = null;
- $expected['loginTimeout'] = null;
- $expected['multiSubnetFailover'] = null;
- $expected['port'] = null;
- $driver->expects($this->once())->method('_connect')
- ->with($dsn, $expected);
- $driver->connect();
- }
- /**
- * Test if attempting to connect with the driver throws an exception when
- * using an invalid config setting.
- *
- * @return void
- */
- public function testConnectionPersistentTrueException()
- {
- $this->expectException(\InvalidArgumentException::class);
- $this->expectExceptionMessage('Config setting "persistent" cannot be set to true, as the Sqlserver PDO driver does not support PDO::ATTR_PERSISTENT');
- $this->skipIf($this->missingExtension, 'pdo_sqlsrv is not installed.');
- $config = [
- 'persistent' => true,
- 'host' => 'foo',
- 'username' => 'Administrator',
- 'password' => 'blablabla',
- 'database' => 'bar',
- ];
- $driver = $this->getMockBuilder('Cake\Database\Driver\Sqlserver')
- ->setMethods(['_connect', 'connection'])
- ->setConstructorArgs([$config])
- ->getMock();
- $driver->connect();
- }
- /**
- * Test select with limit only and SQLServer2012+
- *
- * @return void
- */
- public function testSelectLimitVersion12()
- {
- $driver = $this->getMockBuilder('Cake\Database\Driver\Sqlserver')
- ->setMethods(['_connect', 'getConnection', '_version'])
- ->setConstructorArgs([[]])
- ->getMock();
- $driver->expects($this->any())
- ->method('_version')
- ->will($this->returnValue(12));
- $connection = $this->getMockBuilder('\Cake\Database\Connection')
- ->setMethods(['connect', 'getDriver', 'setDriver'])
- ->setConstructorArgs([['log' => false]])
- ->getMock();
- $connection->expects($this->any())
- ->method('getDriver')
- ->will($this->returnValue($driver));
- $query = new Query($connection);
- $query->select(['id', 'title'])
- ->from('articles')
- ->order(['id'])
- ->offset(10);
- $this->assertEquals('SELECT id, title FROM articles ORDER BY id OFFSET 10 ROWS', $query->sql());
- $query = new Query($connection);
- $query->select(['id', 'title'])
- ->from('articles')
- ->order(['id'])
- ->limit(10)
- ->offset(50);
- $this->assertEquals('SELECT id, title FROM articles ORDER BY id OFFSET 50 ROWS FETCH FIRST 10 ROWS ONLY', $query->sql());
- $query = new Query($connection);
- $query->select(['id', 'title'])
- ->from('articles')
- ->offset(10);
- $this->assertEquals('SELECT id, title FROM articles ORDER BY (SELECT NULL) OFFSET 10 ROWS', $query->sql());
- $query = new Query($connection);
- $query->select(['id', 'title'])
- ->from('articles')
- ->limit(10);
- $this->assertEquals('SELECT TOP 10 id, title FROM articles', $query->sql());
- }
- /**
- * Test select with limit on lte SQLServer2008
- *
- * @return void
- */
- public function testSelectLimitOldServer()
- {
- $driver = $this->getMockBuilder('Cake\Database\Driver\Sqlserver')
- ->setMethods(['_connect', 'getConnection', '_version'])
- ->setConstructorArgs([[]])
- ->getMock();
- $driver->expects($this->any())
- ->method('_version')
- ->will($this->returnValue(8));
- $connection = $this->getMockBuilder('\Cake\Database\Connection')
- ->setMethods(['connect', 'getDriver', 'setDriver'])
- ->setConstructorArgs([['log' => false]])
- ->getMock();
- $connection->expects($this->any())
- ->method('getDriver')
- ->will($this->returnValue($driver));
- $query = new Query($connection);
- $query->select(['id', 'title'])
- ->from('articles')
- ->limit(10);
- $expected = 'SELECT TOP 10 id, title FROM articles';
- $this->assertEquals($expected, $query->sql());
- $query = new Query($connection);
- $query->select(['id', 'title'])
- ->from('articles')
- ->offset(10);
- $expected = 'SELECT * FROM (SELECT id, title, (ROW_NUMBER() OVER (ORDER BY (SELECT NULL))) AS [_cake_page_rownum_] ' .
- 'FROM articles) _cake_paging_ ' .
- 'WHERE _cake_paging_._cake_page_rownum_ > 10';
- $this->assertEquals($expected, $query->sql());
- $query = new Query($connection);
- $query->select(['id', 'title'])
- ->from('articles')
- ->order(['id'])
- ->offset(10);
- $expected = 'SELECT * FROM (SELECT id, title, (ROW_NUMBER() OVER (ORDER BY id)) AS [_cake_page_rownum_] ' .
- 'FROM articles) _cake_paging_ ' .
- 'WHERE _cake_paging_._cake_page_rownum_ > 10';
- $this->assertEquals($expected, $query->sql());
- $query = new Query($connection);
- $query->select(['id', 'title'])
- ->from('articles')
- ->order(['id'])
- ->where(['title' => 'Something'])
- ->limit(10)
- ->offset(50);
- $expected = 'SELECT * FROM (SELECT id, title, (ROW_NUMBER() OVER (ORDER BY id)) AS [_cake_page_rownum_] ' .
- 'FROM articles WHERE title = :c0) _cake_paging_ ' .
- 'WHERE (_cake_paging_._cake_page_rownum_ > 50 AND _cake_paging_._cake_page_rownum_ <= 60)';
- $this->assertEquals($expected, $query->sql());
- }
- /**
- * Test that insert queries have results available to them.
- *
- * @return void
- */
- public function testInsertUsesOutput()
- {
- $driver = $this->getMockBuilder('Cake\Database\Driver\Sqlserver')
- ->setMethods(['_connect', 'getConnection'])
- ->setConstructorArgs([[]])
- ->getMock();
- $connection = $this->getMockBuilder('\Cake\Database\Connection')
- ->setMethods(['connect', 'getDriver', 'setDriver'])
- ->setConstructorArgs([['log' => false]])
- ->getMock();
- $connection->expects($this->any())
- ->method('getDriver')
- ->will($this->returnValue($driver));
- $query = new Query($connection);
- $query->insert(['title'])
- ->into('articles')
- ->values(['title' => 'A new article']);
- $expected = 'INSERT INTO articles (title) OUTPUT INSERTED.* VALUES (:c0)';
- $this->assertEquals($expected, $query->sql());
- }
- }
|