blob: a806b4ac727ea19df8d696d7158db2b5a02f89b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
<?php
/**
* Test class to run the query of most of all our special pages
*
* Copyright © 2011, Antoine Musso
*
* @author Antoine Musso
* @group Database
*/
if ( !defined( 'MEDIAWIKI' ) ) {
die( 1 );
}
global $IP;
require_once "$IP/includes/QueryPage.php"; // Needed to populate $wgQueryPages
class QueryAllSpecialPagesTest extends MediaWikiTestCase {
/** List query pages that can not be tested automatically */
protected $manualTest = array(
'LinkSearchPage'
);
/**
* Pages whose query use the same DB table more than once.
* This is used to skip testing those pages when run against a MySQL backend
* which does not support reopening a temporary table. See upstream bug:
* http://bugs.mysql.com/bug.php?id=10327
*/
protected $reopensTempTable = array(
'BrokenRedirects',
);
/**
* Initialize all query page objects
*/
function __construct() {
parent::__construct();
global $wgQueryPages;
foreach ( $wgQueryPages as $page ) {
$class = $page[0];
if ( !in_array( $class, $this->manualTest ) ) {
$this->queryPages[$class] = new $class;
}
}
}
/**
* Test SQL for each of our QueryPages objects
* @group Database
*/
public function testQuerypageSqlQuery() {
global $wgDBtype;
foreach ( $this->queryPages as $page ) {
// With MySQL, skips special pages reopening a temporary table
// See http://bugs.mysql.com/bug.php?id=10327
if (
$wgDBtype === 'mysql'
&& in_array( $page->getName(), $this->reopensTempTable )
) {
$this->markTestSkipped( "SQL query for page {$page->getName()} can not be tested on MySQL backend (it reopens a temporary table)" );
continue;
}
$msg = "SQL query for page {$page->getName()} should give a result wrapper object";
$result = $page->reallyDoQuery( 50 );
if ( $result instanceof ResultWrapper ) {
$this->assertTrue( true, $msg );
} else {
$this->assertFalse( false, $msg );
}
}
}
}
|