4 * Base class for testing special pages.
9 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
10 * @author Daniel Kinzler
12 * @author Thiemo Mättig
14 abstract class SpecialPageTestBase
extends MediaWikiTestCase
{
18 protected function setUp() {
21 $this->obLevel
= ob_get_level();
24 protected function tearDown() {
25 $obLevel = ob_get_level();
27 while ( ob_get_level() > $this->obLevel
) {
31 if ( $obLevel !== $this->obLevel
) {
33 "Test changed output buffer level: was {$this->obLevel} before test, but $obLevel after test."
41 * Returns a new instance of the special page under test.
45 abstract protected function newSpecialPage();
48 * @param string $subPage The subpage parameter to call the page with
49 * @param WebRequest|null $request Web request that may contain URL parameters, etc
50 * @param Language|string|null $language The language which should be used in the context
51 * @param User|null $user The user which should be used in the context of this special page
54 * @return array( string, WebResponse ) A two-elements array containing the HTML output
55 * generated by the special page as well as the response object.
57 protected function executeSpecialPage(
59 WebRequest
$request = null,
63 return ( new SpecialPageExecutor() )->executeSpecialPage(
64 $this->newSpecialPage(),