3 * Test class to run the query of most of all our special pages
5 * Copyright © 2011, Antoine Musso
7 * @author Antoine Musso
11 if ( !defined( 'MEDIAWIKI' ) ) {
16 require_once "$IP/includes/QueryPage.php"; // Needed to populate $wgQueryPages
18 class QueryAllSpecialPagesTest
extends MediaWikiTestCase
{
20 /** List query pages that can not be tested automatically */
21 protected $manualTest = array(
26 * Pages whose query use the same DB table more than once.
27 * This is used to skip testing those pages when run against a MySQL backend
28 * which does not support reopening a temporary table. See upstream bug:
29 * http://bugs.mysql.com/bug.php?id=10327
31 protected $reopensTempTable = array(
36 * Initialize all query page objects
38 function __construct() {
39 parent
::__construct();
42 foreach ( $wgQueryPages as $page ) {
44 if ( !in_array( $class, $this->manualTest
) ) {
45 $this->queryPages
[$class] = new $class;
51 * Test SQL for each of our QueryPages objects
54 function testQuerypageSqlQuery() {
57 foreach ( $this->queryPages
as $page ) {
59 // With MySQL, skips special pages reopening a temporary table
60 // See http://bugs.mysql.com/bug.php?id=10327
63 && in_array( $page->getName(), $this->reopensTempTable
)
65 $this->markTestSkipped( "SQL query for page {$page->getName()} can not be tested on MySQL backend (it reopens a temporary table)" );
69 $msg = "SQL query for page {$page->getName()} should give a result wrapper object";
71 $result = $page->reallyDoQuery( 50 );
72 if ( $result instanceof ResultWrapper
) {
73 $this->assertTrue( true, $msg );
75 $this->assertFalse( false, $msg );