mediawiki.page.gallery.resize: Remove weird mw.hook call
[lhc/web/wiklou.git] / tests / phpunit / includes / api / query / ApiQueryTest.php
1 <?php
2
3 /**
4 * @group API
5 * @group Database
6 * @group medium
7 * @covers ApiQuery
8 */
9 class ApiQueryTest extends ApiTestCase {
10 /**
11 * @var array Storage for $wgHooks
12 */
13 protected $hooks;
14
15 protected function setUp() {
16 global $wgHooks;
17
18 parent::setUp();
19 $this->doLogin();
20
21 // Setup en: as interwiki prefix
22 $this->hooks = $wgHooks;
23 $wgHooks['InterwikiLoadPrefix'][] = function ( $prefix, &$data ) {
24 if ( $prefix == 'apiquerytestiw' ) {
25 $data = array( 'iw_url' => 'wikipedia' );
26 }
27 return false;
28 };
29 }
30
31 protected function tearDown() {
32 global $wgHooks;
33 $wgHooks = $this->hooks;
34
35 parent::tearDown();
36 }
37
38 public function testTitlesGetNormalized() {
39
40 global $wgMetaNamespace;
41
42 $data = $this->doApiRequest( array(
43 'action' => 'query',
44 'titles' => 'Project:articleA|article_B' ) );
45
46 $this->assertArrayHasKey( 'query', $data[0] );
47 $this->assertArrayHasKey( 'normalized', $data[0]['query'] );
48
49 // Forge a normalized title
50 $to = Title::newFromText( $wgMetaNamespace . ':ArticleA' );
51
52 $this->assertEquals(
53 array(
54 'from' => 'Project:articleA',
55 'to' => $to->getPrefixedText(),
56 ),
57 $data[0]['query']['normalized'][0]
58 );
59
60 $this->assertEquals(
61 array(
62 'from' => 'article_B',
63 'to' => 'Article B'
64 ),
65 $data[0]['query']['normalized'][1]
66 );
67 }
68
69 public function testTitlesAreRejectedIfInvalid() {
70 $title = false;
71 while ( !$title || Title::newFromText( $title )->exists() ) {
72 $title = md5( mt_rand( 0, 10000 ) + rand( 0, 999000 ) );
73 }
74
75 $data = $this->doApiRequest( array(
76 'action' => 'query',
77 'titles' => $title . '|Talk:' ) );
78
79 $this->assertArrayHasKey( 'query', $data[0] );
80 $this->assertArrayHasKey( 'pages', $data[0]['query'] );
81 $this->assertEquals( 2, count( $data[0]['query']['pages'] ) );
82
83 $this->assertArrayHasKey( -2, $data[0]['query']['pages'] );
84 $this->assertArrayHasKey( -1, $data[0]['query']['pages'] );
85
86 $this->assertArrayHasKey( 'missing', $data[0]['query']['pages'][-2] );
87 $this->assertArrayHasKey( 'invalid', $data[0]['query']['pages'][-1] );
88 }
89
90 /**
91 * Test the ApiBase::titlePartToKey function
92 *
93 * @param string $titlePart
94 * @param int $namespace
95 * @param string $expected
96 * @param string $description
97 * @dataProvider provideTestTitlePartToKey
98 */
99 function testTitlePartToKey( $titlePart, $namespace, $expected, $expectException ) {
100 $api = new MockApiQueryBase();
101 $exceptionCaught = false;
102 try {
103 $this->assertEquals( $expected, $api->titlePartToKey( $titlePart, $namespace ) );
104 } catch ( UsageException $e ) {
105 $exceptionCaught = true;
106 }
107 $this->assertEquals( $expectException, $exceptionCaught,
108 'UsageException thrown by titlePartToKey' );
109 }
110
111 function provideTestTitlePartToKey() {
112 return array(
113 array( 'a b c', NS_MAIN, 'A_b_c', false ),
114 array( 'x', NS_MAIN, 'X', false ),
115 array( 'y ', NS_MAIN, 'Y_', false ),
116 array( 'template:foo', NS_CATEGORY, 'Template:foo', false ),
117 array( 'apiquerytestiw:foo', NS_CATEGORY, 'Apiquerytestiw:foo', false ),
118 array( "\xF7", NS_MAIN, null, true ),
119 array( 'template:foo', NS_MAIN, null, true ),
120 array( 'apiquerytestiw:foo', NS_MAIN, null, true ),
121 );
122 }
123 }