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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
|
<?php
use MediaWiki\Tests\Unit\DummyServicesTrait;
/**
* @group API
* @group Database
* @group medium
* @covers ApiQuery
*/
class ApiQueryTest extends ApiTestCase {
use DummyServicesTrait;
protected function setUp() : void {
parent::setUp();
// Setup apiquerytestiw: as interwiki prefix
// DummyServicesTrait::getDummyInterwikiLookup
$interwikiLookup = $this->getDummyInterwikiLookup( [
[ 'iw_prefix' => 'apiquerytestiw', 'iw_url' => 'wikipedia' ],
] );
$this->setService( 'InterwikiLookup', $interwikiLookup );
}
public function testTitlesGetNormalized() {
global $wgMetaNamespace;
$this->setMwGlobals( [
'wgCapitalLinks' => true,
] );
$data = $this->doApiRequest( [
'action' => 'query',
'titles' => 'Project:articleA|article_B' ] );
$this->assertArrayHasKey( 'query', $data[0] );
$this->assertArrayHasKey( 'normalized', $data[0]['query'] );
// Forge a normalized title
$to = Title::newFromText( $wgMetaNamespace . ':ArticleA' );
$this->assertEquals(
[
'fromencoded' => false,
'from' => 'Project:articleA',
'to' => $to->getPrefixedText(),
],
$data[0]['query']['normalized'][0]
);
$this->assertEquals(
[
'fromencoded' => false,
'from' => 'article_B',
'to' => 'Article B'
],
$data[0]['query']['normalized'][1]
);
}
public function testTitlesAreRejectedIfInvalid() {
$title = false;
while ( !$title || Title::newFromText( $title )->exists() ) {
$title = md5( mt_rand( 0, 100000 ) );
}
$data = $this->doApiRequest( [
'action' => 'query',
'titles' => $title . '|Talk:' ] );
$this->assertArrayHasKey( 'query', $data[0] );
$this->assertArrayHasKey( 'pages', $data[0]['query'] );
$this->assertCount( 2, $data[0]['query']['pages'] );
$this->assertArrayHasKey( -2, $data[0]['query']['pages'] );
$this->assertArrayHasKey( -1, $data[0]['query']['pages'] );
$this->assertArrayHasKey( 'missing', $data[0]['query']['pages'][-2] );
$this->assertArrayHasKey( 'invalid', $data[0]['query']['pages'][-1] );
}
public function testTitlesWithWhitespaces() {
$data = $this->doApiRequest( [
'action' => 'query',
'titles' => ' '
] );
$this->assertArrayHasKey( 'query', $data[0] );
$this->assertArrayHasKey( 'pages', $data[0]['query'] );
$this->assertCount( 1, $data[0]['query']['pages'] );
$this->assertArrayHasKey( -1, $data[0]['query']['pages'] );
$this->assertArrayHasKey( 'invalid', $data[0]['query']['pages'][-1] );
}
/**
* Test the ApiBase::titlePartToKey function
*
* @param string $titlePart
* @param int $namespace
* @param string $expected
* @param string $expectException
* @dataProvider provideTestTitlePartToKey
*/
public function testTitlePartToKey( $titlePart, $namespace, $expected, $expectException ) {
$this->setMwGlobals( [
'wgCapitalLinks' => true,
] );
$api = new MockApiQueryBase();
$exceptionCaught = false;
try {
$this->assertEquals( $expected, $api->titlePartToKey( $titlePart, $namespace ) );
} catch ( ApiUsageException $e ) {
$exceptionCaught = true;
}
$this->assertEquals( $expectException, $exceptionCaught,
'ApiUsageException thrown by titlePartToKey' );
}
public function provideTestTitlePartToKey() {
return [
[ 'a b c', NS_MAIN, 'A_b_c', false ],
[ 'x', NS_MAIN, 'X', false ],
[ 'y ', NS_MAIN, 'Y_', false ],
[ 'template:foo', NS_CATEGORY, 'Template:foo', false ],
[ 'apiquerytestiw:foo', NS_CATEGORY, 'Apiquerytestiw:foo', false ],
[ "\xF7", NS_MAIN, null, true ],
[ 'template:foo', NS_MAIN, null, true ],
[ 'apiquerytestiw:foo', NS_MAIN, null, true ],
];
}
/**
* Test if all classes in the query module manager exists
*/
public function testClassNamesInModuleManager() {
$api = new ApiMain(
new FauxRequest( [ 'action' => 'query', 'meta' => 'siteinfo' ] )
);
$queryApi = new ApiQuery( $api, 'query' );
$modules = $queryApi->getModuleManager()->getNamesWithClasses();
foreach ( $modules as $name => $class ) {
$this->assertTrue(
class_exists( $class ),
'Class ' . $class . ' for api module ' . $name . ' does not exist (with exact case)'
);
}
}
public function testShouldNotExportPagesThatUserCanNotRead() {
$title = Title::makeTitle( NS_MAIN, 'Test article' );
$this->insertPage( $title );
$this->setTemporaryHook( 'getUserPermissionsErrors',
static function ( Title $page, &$user, $action, &$result ) use ( $title ) {
if ( $page->equals( $title ) && $action === 'read' ) {
$result = false;
return false;
}
} );
$data = $this->doApiRequest( [
'action' => 'query',
'titles' => $title->getPrefixedText(),
'export' => 1,
] );
$this->assertArrayHasKey( 'query', $data[0] );
$this->assertArrayHasKey( 'export', $data[0]['query'] );
// This response field contains an XML document even if no pages were exported
$this->assertStringNotContainsString( $title->getPrefixedText(), $data[0]['query']['export'] );
}
public function testIsReadMode() {
$api = new ApiMain(
new FauxRequest( [ 'action' => 'query', 'meta' => 'tokens', 'type' => 'login' ] )
);
$queryApi = new ApiQuery( $api, 'query' );
$this->assertFalse( $queryApi->isReadMode(),
'isReadMode() => false when meta=tokens is the only module' );
$api = new ApiMain( new FauxRequest( [
'action' => 'query', 'meta' => 'tokens', 'type' => 'login', 'rawcontinue' => 1,
'indexpageids' => 1
] )
);
$queryApi = new ApiQuery( $api, 'query' );
$this->assertFalse( $queryApi->isReadMode(),
'rawcontinue and indexpageids are also allowed' );
$api = new ApiMain(
new FauxRequest( [ 'action' => 'query', 'meta' => 'tokens|siteinfo', 'type' => 'login' ] )
);
$queryApi = new ApiQuery( $api, 'query' );
$this->assertTrue( $queryApi->isReadMode(),
'isReadMode() => true when other meta modules are present' );
$api = new ApiMain( new FauxRequest( [
'action' => 'query', 'meta' => 'tokens', 'type' => 'login', 'list' => 'allpages'
] ) );
$queryApi = new ApiQuery( $api, 'query' );
$this->assertTrue( $queryApi->isReadMode(),
'isReadMode() => true when other modules are present' );
$api = new ApiMain( new FauxRequest( [
'action' => 'query', 'meta' => 'tokens', 'type' => 'login', 'titles' => 'Foo'
] ) );
$queryApi = new ApiQuery( $api, 'query' );
$this->assertTrue( $queryApi->isReadMode(),
'isReadMode() => true when other ApiQuery parameters are present' );
$api = new ApiMain( new FauxRequest( [ 'action' => 'query' ] ) );
$queryApi = new ApiQuery( $api, 'query' );
$this->assertTrue( $queryApi->isReadMode(),
'isReadMode() => true when no modules are requested' );
}
}
|