PortabilityTest.php 5.02 KB
Newer Older
1 2 3 4 5 6
<?php

namespace Doctrine\Tests\DBAL\Functional;

use Doctrine\DBAL\Connection;
use Doctrine\DBAL\DriverManager;
7
use Doctrine\DBAL\Portability\Connection as ConnectionPortability;
jeroendedauw's avatar
jeroendedauw committed
8
use PDO;
9 10 11 12 13 14 15

/**
 * @group DBAL-56
 */
class PortabilityTest extends \Doctrine\Tests\DbalFunctionalTestCase
{
    private $portableConnection;
16

17
    protected function tearDown()
18 19 20 21 22
    {
        if ($this->portableConnection) {
            $this->portableConnection->close();
        }
    }
23

24 25 26 27 28
    /**
     * @param   integer     $portabilityMode
     * @param   integer     $case
     * @return  Connection
     */
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
    private function getPortableConnection($portabilityMode = \Doctrine\DBAL\Portability\Connection::PORTABILITY_ALL, $case = \PDO::CASE_LOWER)
    {
        if (!$this->portableConnection) {
            $params = $this->_conn->getParams();
            $params['wrapperClass'] = 'Doctrine\DBAL\Portability\Connection';
            $params['portability'] = $portabilityMode;
            $params['fetch_case'] = $case;
            $this->portableConnection = DriverManager::getConnection($params, $this->_conn->getConfiguration(), $this->_conn->getEventManager());

            try {
                /* @var $sm \Doctrine\DBAL\Schema\AbstractSchemaManager */
                $table = new \Doctrine\DBAL\Schema\Table("portability_table");
                $table->addColumn('Test_Int', 'integer');
                $table->addColumn('Test_String', 'string', array('fixed' => true, 'length' => 32));
                $table->addColumn('Test_Null', 'string', array('notnull' => false));
44
                $table->setPrimaryKey(array('Test_Int'));
45 46 47 48 49

                $sm = $this->portableConnection->getSchemaManager();
                $sm->createTable($table);

                $this->portableConnection->insert('portability_table', array('Test_Int' => 1, 'Test_String' => 'foo', 'Test_Null' => ''));
50
                $this->portableConnection->insert('portability_table', array('Test_Int' => 2, 'Test_String' => 'foo  ', 'Test_Null' => null));
51
            } catch(\Exception $e) {
52

53 54
            }
        }
55

56 57
        return $this->portableConnection;
    }
58

59 60 61 62
    public function testFullFetchMode()
    {
        $rows = $this->getPortableConnection()->fetchAll('SELECT * FROM portability_table');
        $this->assertFetchResultRows($rows);
63

64
        $stmt = $this->getPortableConnection()->query('SELECT * FROM portability_table');
65
        $stmt->setFetchMode(\PDO::FETCH_ASSOC);
66 67 68 69 70
        foreach ($stmt as $row) {
            $this->assertFetchResultRow($row);
        }

        $stmt = $this->getPortableConnection()->query('SELECT * FROM portability_table');
71
        while (($row = $stmt->fetch(\PDO::FETCH_ASSOC))) {
72 73
            $this->assertFetchResultRow($row);
        }
74

75 76
        $stmt = $this->getPortableConnection()->prepare('SELECT * FROM portability_table');
        $stmt->execute();
77
        while (($row = $stmt->fetch(\PDO::FETCH_ASSOC))) {
78 79 80
            $this->assertFetchResultRow($row);
        }
    }
81

82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
    public function testConnFetchMode()
    {
        $conn = $this->getPortableConnection();
        $conn->setFetchMode(\PDO::FETCH_ASSOC);

        $rows = $conn->fetchAll('SELECT * FROM portability_table');
        $this->assertFetchResultRows($rows);

        $stmt = $conn->query('SELECT * FROM portability_table');
        foreach ($stmt as $row) {
          $this->assertFetchResultRow($row);
        }

        $stmt = $conn->query('SELECT * FROM portability_table');
        while (($row = $stmt->fetch())) {
          $this->assertFetchResultRow($row);
        }

        $stmt = $conn->prepare('SELECT * FROM portability_table');
        $stmt->execute();
        while (($row = $stmt->fetch())) {
          $this->assertFetchResultRow($row);
        }
    }

107 108 109
    public function assertFetchResultRows($rows)
    {
        $this->assertEquals(2, count($rows));
jeroendedauw's avatar
jeroendedauw committed
110
        foreach ($rows as $row) {
111 112 113
            $this->assertFetchResultRow($row);
        }
    }
114

115 116
    public function assertFetchResultRow($row)
    {
117
        $this->assertTrue(in_array($row['test_int'], array(1, 2)), "Primary key test_int should either be 1 or 2.");
118 119 120
        $this->assertArrayHasKey('test_string', $row, "Case should be lowered.");
        $this->assertEquals(3, strlen($row['test_string']), "test_string should be rtrimed to length of three for CHAR(32) column.");
        $this->assertNull($row['test_null']);
121
        $this->assertArrayNotHasKey(0, $row, "PDO::FETCH_ASSOC should not return numerical keys.");
122
    }
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142

    public function testPortabilitySqlServer()
    {
        $portability = ConnectionPortability::PORTABILITY_SQLSRV;
        $params = array(
            'portability' => $portability
        );

        $driverMock = $this->getMock('Doctrine\\DBAL\\Driver\\PDOSqlsrv\\Driver', array('connect'));

        $driverMock->expects($this->once())
                   ->method('connect')
                   ->will($this->returnValue(null));

        $connection = new ConnectionPortability($params, $driverMock);

        $connection->connect($params);

        $this->assertEquals($portability, $connection->getPortability());
    }
143
}