class ExpectationExceptionTest in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/behat/mink/tests/Exception/ExpectationExceptionTest.php \Behat\Mink\Tests\Exception\ExpectationExceptionTest
Hierarchy
- class \Behat\Mink\Tests\Exception\ExpectationExceptionTest extends \Behat\Mink\Tests\Exception\PHPUnit_Framework_TestCase
Expanded class hierarchy of ExpectationExceptionTest
File
- vendor/
behat/ mink/ tests/ Exception/ ExpectationExceptionTest.php, line 7
Namespace
Behat\Mink\Tests\ExceptionView source
class ExpectationExceptionTest extends \PHPUnit_Framework_TestCase {
public function testEmptyMessageAndPreviousException() {
$exception = new ExpectationException('', $this
->getMock('Behat\\Mink\\Driver\\DriverInterface'), new \Exception('Something failed'));
$this
->assertEquals('Something failed', $exception
->getMessage());
}
public function testExceptionToString() {
$driver = $this
->getMock('Behat\\Mink\\Driver\\DriverInterface');
$driver
->expects($this
->any())
->method('getStatusCode')
->will($this
->returnValue(200));
$driver
->expects($this
->any())
->method('getCurrentUrl')
->will($this
->returnValue('http://localhost/test'));
$html = "<html><head><title>Hello</title></head>\n<body>\n<h1>Hello world</h1>\n<p>Test</p>\n</body></html>";
$driver
->expects($this
->any())
->method('getContent')
->will($this
->returnValue($html));
$expected = <<<'TXT'
Expectation failure
+--[ HTTP/1.1 200 | http://localhost/test | %s ]
|
| <body>
| <h1>Hello world</h1>
| <p>Test</p>
| </body>
|
TXT;
$expected = sprintf($expected . ' ', get_class($driver));
$exception = new ExpectationException('Expectation failure', $driver);
$this
->assertEquals($expected, $exception
->__toString());
}
public function testBigContent() {
$driver = $this
->getMock('Behat\\Mink\\Driver\\DriverInterface');
$driver
->expects($this
->any())
->method('getStatusCode')
->will($this
->returnValue(200));
$driver
->expects($this
->any())
->method('getCurrentUrl')
->will($this
->returnValue('http://localhost/test'));
$body = str_repeat('a', 1001 - strlen('<body></body>'));
$html = sprintf("<html><head><title>Hello</title></head>\n<body>%s</body></html>", $body);
$driver
->expects($this
->any())
->method('getContent')
->will($this
->returnValue($html));
$expected = <<<'TXT'
Expectation failure
+--[ HTTP/1.1 200 | http://localhost/test | %s ]
|
| <body>%s</b...
|
TXT;
$expected = sprintf($expected . ' ', get_class($driver), $body);
$exception = new ExpectationException('Expectation failure', $driver);
$this
->assertEquals($expected, $exception
->__toString());
}
public function testExceptionWhileRenderingString() {
$driver = $this
->getMock('Behat\\Mink\\Driver\\DriverInterface');
$driver
->expects($this
->any())
->method('getContent')
->will($this
->throwException(new \Exception('Broken page')));
$exception = new ExpectationException('Expectation failure', $driver);
$this
->assertEquals('Expectation failure', $exception
->__toString());
}
/**
* @group legacy
*/
public function testConstructWithSession() {
$driver = $this
->getMock('Behat\\Mink\\Driver\\DriverInterface');
$session = $this
->getMockBuilder('Behat\\Mink\\Session')
->disableOriginalConstructor()
->getMock();
$session
->expects($this
->any())
->method('getDriver')
->will($this
->returnValue($driver));
$exception = new ExpectationException('', $session, new \Exception('Something failed'));
$this
->assertEquals('Something failed', $exception
->getMessage());
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ExpectationExceptionTest:: |
public | function | ||
ExpectationExceptionTest:: |
public | function | @group legacy | |
ExpectationExceptionTest:: |
public | function | ||
ExpectationExceptionTest:: |
public | function | ||
ExpectationExceptionTest:: |
public | function |