From now on I will simply use addshore everywhere to keep things uniform... Change-Id: Iaf441b2d7a67a12c20529f0e9c7b47819f4abfae
51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @covers ErrorPageError
|
|
* @author Addshore
|
|
*/
|
|
class ErrorPageErrorTest extends MediaWikiTestCase {
|
|
|
|
private function getMockMessage() {
|
|
$mockMessage = $this->getMockBuilder( 'Message' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$mockMessage->expects( $this->once() )
|
|
->method( 'inLanguage' )
|
|
->will( $this->returnValue( $mockMessage ) );
|
|
$mockMessage->expects( $this->once() )
|
|
->method( 'useDatabase' )
|
|
->will( $this->returnValue( $mockMessage ) );
|
|
return $mockMessage;
|
|
}
|
|
|
|
public function testConstruction() {
|
|
$mockMessage = $this->getMockMessage();
|
|
$title = 'Foo';
|
|
$params = array( 'Baz' );
|
|
$e = new ErrorPageError( $title, $mockMessage, $params );
|
|
$this->assertEquals( $title, $e->title );
|
|
$this->assertEquals( $mockMessage, $e->msg );
|
|
$this->assertEquals( $params, $e->params );
|
|
}
|
|
|
|
public function testReport() {
|
|
$mockMessage = $this->getMockMessage();
|
|
$title = 'Foo';
|
|
$params = array( 'Baz' );
|
|
|
|
$mock = $this->getMockBuilder( 'OutputPage' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$mock->expects( $this->once() )
|
|
->method( 'showErrorPage' )
|
|
->with( $title, $mockMessage, $params );
|
|
$mock->expects( $this->once() )
|
|
->method( 'output' );
|
|
$this->setMwGlobals( 'wgOut', $mock );
|
|
|
|
$e = new ErrorPageError( $title, $mockMessage, $params );
|
|
$e->report();
|
|
}
|
|
|
|
}
|