PDOExceptionTest.php 1.62 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
<?php

namespace Doctrine\Tests\DBAL\Driver;

use Doctrine\DBAL\Driver\PDOException;
use Doctrine\Tests\DbalTestCase;

class PDOExceptionTest extends DbalTestCase
{
    const ERROR_CODE = 666;

    const MESSAGE = 'PDO Exception';

    const SQLSTATE = 28000;

    /**
     * The PDO exception wrapper under test.
     *
     * @var \Doctrine\DBAL\Driver\PDOException
     */
    private $exception;

    /**
     * The wrapped PDO exception mock.
     *
     * @var \PDOException|\PHPUnit_Framework_MockObject_MockObject
     */
28
    private $wrappedException;
29 30 31

    protected function setUp()
    {
32 33 34 35
        if ( ! extension_loaded('PDO')) {
            $this->markTestSkipped('PDO is not installed.');
        }

36 37
        parent::setUp();

38
        $this->wrappedException = new \PDOException(self::MESSAGE, self::SQLSTATE);
39

40
        $this->wrappedException->errorInfo = array(self::SQLSTATE, self::ERROR_CODE);
41

42
        $this->exception = new PDOException($this->wrappedException);
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
    }

    public function testReturnsCode()
    {
        $this->assertSame(self::SQLSTATE, $this->exception->getCode());
    }

    public function testReturnsErrorCode()
    {
        $this->assertSame(self::ERROR_CODE, $this->exception->getErrorCode());
    }

    public function testReturnsMessage()
    {
        $this->assertSame(self::MESSAGE, $this->exception->getMessage());
    }

    public function testReturnsSQLState()
    {
        $this->assertSame(self::SQLSTATE, $this->exception->getSQLState());
    }
64 65 66

    public function testOriginalExceptionIsInChain()
    {
67
        $this->assertSame($this->wrappedException, $this->exception->getPrevious());
68
    }
69
}