This patch fixes all PHPUnit 8 compat issues in the DBless suite, aside from assertArraySubset. Bug: T192167 Change-Id: Iea782386509b9e579f06d63687669e14bc437fad
31 lines
666 B
PHP
31 lines
666 B
PHP
<?php
|
|
|
|
/**
|
|
* @covers ThrottledError
|
|
* @author Addshore
|
|
*/
|
|
class ThrottledErrorTest extends MediaWikiTestCase {
|
|
|
|
public function testExceptionSetsStatusCode() {
|
|
$this->setMwGlobals( 'wgOut', $this->getMockWgOut() );
|
|
try {
|
|
throw new ThrottledError();
|
|
} catch ( ThrottledError $e ) {
|
|
ob_start();
|
|
$e->report();
|
|
$text = ob_get_clean();
|
|
$this->assertStringContainsString( $e->getText(), $text );
|
|
}
|
|
}
|
|
|
|
private function getMockWgOut() {
|
|
$mock = $this->getMockBuilder( OutputPage::class )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$mock->expects( $this->once() )
|
|
->method( 'setStatusCode' )
|
|
->with( 429 );
|
|
return $mock;
|
|
}
|
|
|
|
}
|