view vendor/pear/pear_exception/tests/PEAR/ExceptionTest.php @ 41:d2414df68d78

Updated by Alex S Grebenschikov (www.poralix.com) to make it compatible with RoundCube 1.3.0
author Charlie Root
date Fri, 24 Jan 2025 14:20:15 -0500
parents 1e000243b222
children
line wrap: on
line source

<?php
$localFile = __DIR__ . '/../../PEAR/Exception.php';
if (file_exists($localFile)) {
    require_once $localFile;
} else {
    require_once 'PEAR/Exception.php';
}

class PEAR_ExceptionTest extends PHPUnit_Framework_TestCase
{
    /**
     * @expectedException PEAR_Exception
     * @expectedExceptionMessage foo
     */
    public function testThrow()
    {
        throw new PEAR_Exception('foo');
    }

    public function testGetCauseNone()
    {
        $e = new PEAR_Exception('foo bar');
        $this->assertNull($e->getCause());
    }

    public function testGetCauseException()
    {
        $cause = new Exception('foo bar');
        $e = new PEAR_Exception('I caught an exception', $cause);
        $this->assertNotNull($e->getCause());
        $this->assertInstanceOf('Exception', $e->getCause());
        $this->assertEquals($cause, $e->getCause());
    }

    public function testGetCauseMessage()
    {
        $cause = new Exception('foo bar');
        $e = new PEAR_Exception('I caught an exception', $cause);

        $e->getCauseMessage($causes);
        $this->assertEquals('I caught an exception', $causes[0]['message']);
        $this->assertEquals('foo bar', $causes[1]['message']);
    }

    public function testGetTraceSafe()
    {
        $e = new PEAR_Exception('oops');
        $this->assertInternalType('array', $e->getTraceSafe());
    }

    public function testGetErrorClass()
    {
        $e = new PEAR_Exception('oops');
        $this->assertEquals('PEAR_ExceptionTest', $e->getErrorClass());
    }

    public function testGetErrorMethod()
    {
        $e = new PEAR_Exception('oops');
        $this->assertEquals('testGetErrorMethod', $e->getErrorMethod());
    }

    public function test__toString()
    {
        $e = new PEAR_Exception('oops');
        $this->assertInternalType('string', (string) $e);
        $this->assertContains('oops', (string) $e);
    }

    public function testToHtml()
    {
        $e = new PEAR_Exception('oops');
        $html = $e->toHtml();
        $this->assertInternalType('string', $html);
        $this->assertContains('oops', $html);
    }
}
?>