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