MediaWiki  1.32.0
ApiMainTest.php
Go to the documentation of this file.
1 <?php
2 
3 use Wikimedia\TestingAccessWrapper;
4 
12 class ApiMainTest extends ApiTestCase {
13 
17  public function testApi() {
18  $api = new ApiMain(
19  new FauxRequest( [ 'action' => 'query', 'meta' => 'siteinfo' ] )
20  );
21  $api->execute();
22  $data = $api->getResult()->getResultData();
23  $this->assertInternalType( 'array', $data );
24  $this->assertArrayHasKey( 'query', $data );
25  }
26 
27  public function testApiNoParam() {
28  $api = new ApiMain();
29  $api->execute();
30  $data = $api->getResult()->getResultData();
31  $this->assertInternalType( 'array', $data );
32  }
33 
47  private function getNonInternalApiMain( array $requestData, array $headers = [] ) {
48  $req = $this->getMockBuilder( WebRequest::class )
49  ->setMethods( [ 'response', 'getRawIP' ] )
50  ->getMock();
51  $response = new FauxResponse();
52  $req->method( 'response' )->willReturn( $response );
53  $req->method( 'getRawIP' )->willReturn( '127.0.0.1' );
54 
55  $wrapper = TestingAccessWrapper::newFromObject( $req );
56  $wrapper->data = $requestData;
57  if ( $headers ) {
58  $wrapper->headers = $headers;
59  }
60 
61  return new ApiMain( $req );
62  }
63 
64  public function testUselang() {
65  global $wgLang;
66 
67  $api = $this->getNonInternalApiMain( [
68  'action' => 'query',
69  'meta' => 'siteinfo',
70  'uselang' => 'fr',
71  ] );
72 
73  ob_start();
74  $api->execute();
75  ob_end_clean();
76 
77  $this->assertSame( 'fr', $wgLang->getCode() );
78  }
79 
81  $logFile = $this->getNewTempFile();
82 
83  $this->mergeMwGlobalArrayValue( '_COOKIE', [ 'forceHTTPS' => '1' ] );
84  $logger = new TestLogger( true );
85  $this->setLogger( 'cors', $logger );
86 
87  $api = $this->getNonInternalApiMain( [
88  'action' => 'query',
89  'meta' => 'siteinfo',
90  // For some reason multiple origins (which are not allowed in the
91  // WHATWG Fetch spec that supersedes the RFC) are always considered to
92  // be problematic.
93  ], [ 'ORIGIN' => 'https://www.example.com https://www.com.example' ] );
94 
95  $this->assertSame(
96  [ [ Psr\Log\LogLevel::WARNING, 'Non-whitelisted CORS request with session cookies' ] ],
97  $logger->getBuffer()
98  );
99  }
100 
101  public function testSuppressedLogin() {
102  global $wgUser;
103  $origUser = $wgUser;
104 
105  $api = $this->getNonInternalApiMain( [
106  'action' => 'query',
107  'meta' => 'siteinfo',
108  'origin' => '*',
109  ] );
110 
111  ob_start();
112  $api->execute();
113  ob_end_clean();
114 
115  $this->assertNotSame( $origUser, $wgUser );
116  $this->assertSame( 'true', $api->getContext()->getRequest()->response()
117  ->getHeader( 'MediaWiki-Login-Suppressed' ) );
118  }
119 
120  public function testSetContinuationManager() {
121  $api = new ApiMain();
122  $manager = $this->createMock( ApiContinuationManager::class );
123  $api->setContinuationManager( $manager );
124  $this->assertTrue( true, 'No exception' );
125  return [ $api, $manager ];
126  }
127 
132  $this->setExpectedException( UnexpectedValueException::class,
133  'ApiMain::setContinuationManager: tried to set manager from ' .
134  'when a manager is already set from ' );
135 
136  list( $api, $manager ) = $args;
137  $api->setContinuationManager( $manager );
138  }
139 
140  public function testSetCacheModeUnrecognized() {
141  $api = new ApiMain();
142  $api->setCacheMode( 'unrecognized' );
143  $this->assertSame(
144  'private',
145  TestingAccessWrapper::newFromObject( $api )->mCacheMode,
146  'Unrecognized params must be silently ignored'
147  );
148  }
149 
150  public function testSetCacheModePrivateWiki() {
151  $this->setGroupPermissions( '*', 'read', false );
152 
153  $wrappedApi = TestingAccessWrapper::newFromObject( new ApiMain() );
154  $wrappedApi->setCacheMode( 'public' );
155  $this->assertSame( 'private', $wrappedApi->mCacheMode );
156  $wrappedApi->setCacheMode( 'anon-public-user-private' );
157  $this->assertSame( 'private', $wrappedApi->mCacheMode );
158  }
159 
161  $req = new FauxRequest( [
162  'action' => 'query',
163  'meta' => 'siteinfo',
164  'requestid' => '123456',
165  ] );
166  $api = new ApiMain( $req );
167  $api->execute();
168  $this->assertSame( '123456', $api->getResult()->getResultData()['requestid'] );
169  }
170 
172  $req = new FauxRequest( [
173  'action' => 'query',
174  'meta' => 'siteinfo',
175  'curtimestamp' => '',
176  ] );
177  $api = new ApiMain( $req );
178  $api->execute();
179  $timestamp = $api->getResult()->getResultData()['curtimestamp'];
180  $this->assertLessThanOrEqual( 1, abs( strtotime( $timestamp ) - time() ) );
181  }
182 
184  $req = new FauxRequest( [
185  'action' => 'query',
186  'meta' => 'siteinfo',
187  // errorlang is ignored if errorformat is not specified
188  'errorformat' => 'plaintext',
189  'uselang' => 'FR',
190  'errorlang' => 'ja',
191  'responselanginfo' => '',
192  ] );
193  $api = new ApiMain( $req );
194  $api->execute();
195  $data = $api->getResult()->getResultData();
196  $this->assertSame( 'fr', $data['uselang'] );
197  $this->assertSame( 'ja', $data['errorlang'] );
198  }
199 
200  public function testSetupModuleUnknown() {
201  $this->setExpectedException( ApiUsageException::class,
202  'Unrecognized value for parameter "action": unknownaction.' );
203 
204  $req = new FauxRequest( [ 'action' => 'unknownaction' ] );
205  $api = new ApiMain( $req );
206  $api->execute();
207  }
208 
209  public function testSetupModuleNoTokenProvided() {
210  $this->setExpectedException( ApiUsageException::class,
211  'The "token" parameter must be set.' );
212 
213  $req = new FauxRequest( [
214  'action' => 'edit',
215  'title' => 'New page',
216  'text' => 'Some text',
217  ] );
218  $api = new ApiMain( $req );
219  $api->execute();
220  }
221 
223  $this->setExpectedException( ApiUsageException::class, 'Invalid CSRF token.' );
224 
225  $req = new FauxRequest( [
226  'action' => 'edit',
227  'title' => 'New page',
228  'text' => 'Some text',
229  'token' => "This isn't a real token!",
230  ] );
231  $api = new ApiMain( $req );
232  $api->execute();
233  }
234 
235  public function testSetupModuleNeedsTokenTrue() {
236  $this->setExpectedException( MWException::class,
237  "Module 'testmodule' must be updated for the new token handling. " .
238  "See documentation for ApiBase::needsToken for details." );
239 
240  $mock = $this->createMock( ApiBase::class );
241  $mock->method( 'getModuleName' )->willReturn( 'testmodule' );
242  $mock->method( 'needsToken' )->willReturn( true );
243 
244  $api = new ApiMain( new FauxRequest( [ 'action' => 'testmodule' ] ) );
245  $api->getModuleManager()->addModule( 'testmodule', 'action', get_class( $mock ),
246  function () use ( $mock ) {
247  return $mock;
248  }
249  );
250  $api->execute();
251  }
252 
254  $this->setExpectedException( MWException::class,
255  "Module 'testmodule' must require POST to use tokens." );
256 
257  $mock = $this->createMock( ApiBase::class );
258  $mock->method( 'getModuleName' )->willReturn( 'testmodule' );
259  $mock->method( 'needsToken' )->willReturn( 'csrf' );
260  $mock->method( 'mustBePosted' )->willReturn( false );
261 
262  $api = new ApiMain( new FauxRequest( [ 'action' => 'testmodule' ] ) );
263  $api->getModuleManager()->addModule( 'testmodule', 'action', get_class( $mock ),
264  function () use ( $mock ) {
265  return $mock;
266  }
267  );
268  $api->execute();
269  }
270 
271  public function testCheckMaxLagFailed() {
272  // It's hard to mock the LoadBalancer properly, so instead we'll mock
273  // checkMaxLag (which is tested directly in other tests below).
274  $req = new FauxRequest( [
275  'action' => 'query',
276  'meta' => 'siteinfo',
277  ] );
278 
279  $mock = $this->getMockBuilder( ApiMain::class )
280  ->setConstructorArgs( [ $req ] )
281  ->setMethods( [ 'checkMaxLag' ] )
282  ->getMock();
283  $mock->method( 'checkMaxLag' )->willReturn( false );
284 
285  $mock->execute();
286 
287  $this->assertArrayNotHasKey( 'query', $mock->getResult()->getResultData() );
288  }
289 
291  // The detailed checking of all cases of checkConditionalRequestHeaders
292  // is below in testCheckConditionalRequestHeaders(), which calls the
293  // method directly. Here we just check that it will stop execution if
294  // it does fail.
295  $now = time();
296 
297  $this->setMwGlobals( 'wgCacheEpoch', '20030516000000' );
298 
299  $mock = $this->createMock( ApiBase::class );
300  $mock->method( 'getModuleName' )->willReturn( 'testmodule' );
301  $mock->method( 'getConditionalRequestData' )
302  ->willReturn( wfTimestamp( TS_MW, $now - 3600 ) );
303  $mock->expects( $this->exactly( 0 ) )->method( 'execute' );
304 
305  $req = new FauxRequest( [
306  'action' => 'testmodule',
307  ] );
308  $req->setHeader( 'If-Modified-Since', wfTimestamp( TS_RFC2822, $now - 3600 ) );
309  $req->setRequestURL( "http://localhost" );
310 
311  $api = new ApiMain( $req );
312  $api->getModuleManager()->addModule( 'testmodule', 'action', get_class( $mock ),
313  function () use ( $mock ) {
314  return $mock;
315  }
316  );
317 
318  $wrapper = TestingAccessWrapper::newFromObject( $api );
319  $wrapper->mInternalMode = false;
320 
321  ob_start();
322  $api->execute();
323  ob_end_clean();
324  }
325 
326  private function doTestCheckMaxLag( $lag ) {
327  $mockLB = $this->getMockBuilder( LoadBalancer::class )
328  ->disableOriginalConstructor()
329  ->setMethods( [ 'getMaxLag', '__destruct' ] )
330  ->getMock();
331  $mockLB->method( 'getMaxLag' )->willReturn( [ 'somehost', $lag ] );
332  $this->setService( 'DBLoadBalancer', $mockLB );
333 
334  $req = new FauxRequest();
335 
336  $api = new ApiMain( $req );
337  $wrapper = TestingAccessWrapper::newFromObject( $api );
338 
339  $mockModule = $this->createMock( ApiBase::class );
340  $mockModule->method( 'shouldCheckMaxLag' )->willReturn( true );
341 
342  try {
343  $wrapper->checkMaxLag( $mockModule, [ 'maxlag' => 3 ] );
344  } finally {
345  if ( $lag > 3 ) {
346  $this->assertSame( '5', $req->response()->getHeader( 'Retry-After' ) );
347  $this->assertSame( (string)$lag, $req->response()->getHeader( 'X-Database-Lag' ) );
348  }
349  }
350  }
351 
352  public function testCheckMaxLagOkay() {
353  $this->doTestCheckMaxLag( 3 );
354 
355  // No exception, we're happy
356  $this->assertTrue( true );
357  }
358 
359  public function testCheckMaxLagExceeded() {
360  $this->setExpectedException( ApiUsageException::class,
361  'Waiting for a database server: 4 seconds lagged.' );
362 
363  $this->setMwGlobals( 'wgShowHostnames', false );
364 
365  $this->doTestCheckMaxLag( 4 );
366  }
367 
369  $this->setExpectedException( ApiUsageException::class,
370  'Waiting for somehost: 4 seconds lagged.' );
371 
372  $this->setMwGlobals( 'wgShowHostnames', true );
373 
374  $this->doTestCheckMaxLag( 4 );
375  }
376 
377  public static function provideAssert() {
378  return [
379  [ false, [], 'user', 'assertuserfailed' ],
380  [ true, [], 'user', false ],
381  [ true, [], 'bot', 'assertbotfailed' ],
382  [ true, [ 'bot' ], 'user', false ],
383  [ true, [ 'bot' ], 'bot', false ],
384  ];
385  }
386 
396  public function testAssert( $registered, $rights, $assert, $error ) {
397  if ( $registered ) {
398  $user = $this->getMutableTestUser()->getUser();
399  $user->load(); // load before setting mRights
400  } else {
401  $user = new User();
402  }
403  $user->mRights = $rights;
404  try {
405  $this->doApiRequest( [
406  'action' => 'query',
407  'assert' => $assert,
408  ], null, null, $user );
409  $this->assertFalse( $error ); // That no error was expected
410  } catch ( ApiUsageException $e ) {
411  $this->assertTrue( self::apiExceptionHasCode( $e, $error ),
412  "Error '{$e->getMessage()}' matched expected '$error'" );
413  }
414  }
415 
419  public function testAssertUser() {
420  $user = $this->getTestUser()->getUser();
421  $this->doApiRequest( [
422  'action' => 'query',
423  'assertuser' => $user->getName(),
424  ], null, null, $user );
425 
426  try {
427  $this->doApiRequest( [
428  'action' => 'query',
429  'assertuser' => $user->getName() . 'X',
430  ], null, null, $user );
431  $this->fail( 'Expected exception not thrown' );
432  } catch ( ApiUsageException $e ) {
433  $this->assertTrue( self::apiExceptionHasCode( $e, 'assertnameduserfailed' ) );
434  }
435  }
436 
440  public function testAssertBeforeModule() {
441  // Sanity check that the query without assert throws too-many-titles
442  try {
443  $this->doApiRequest( [
444  'action' => 'query',
445  'titles' => implode( '|', range( 1, ApiBase::LIMIT_SML1 + 1 ) ),
446  ], null, null, new User );
447  $this->fail( 'Expected exception not thrown' );
448  } catch ( ApiUsageException $e ) {
449  $this->assertTrue( self::apiExceptionHasCode( $e, 'too-many-titles' ), 'sanity check' );
450  }
451 
452  // Now test that the assert happens first
453  try {
454  $this->doApiRequest( [
455  'action' => 'query',
456  'titles' => implode( '|', range( 1, ApiBase::LIMIT_SML1 + 1 ) ),
457  'assert' => 'user',
458  ], null, null, new User );
459  $this->fail( 'Expected exception not thrown' );
460  } catch ( ApiUsageException $e ) {
461  $this->assertTrue( self::apiExceptionHasCode( $e, 'assertuserfailed' ),
462  "Error '{$e->getMessage()}' matched expected 'assertuserfailed'" );
463  }
464  }
465 
469  public function testClassNamesInModuleManager() {
470  $api = new ApiMain(
471  new FauxRequest( [ 'action' => 'query', 'meta' => 'siteinfo' ] )
472  );
473  $modules = $api->getModuleManager()->getNamesWithClasses();
474 
475  foreach ( $modules as $name => $class ) {
476  $this->assertTrue(
477  class_exists( $class ),
478  'Class ' . $class . ' for api module ' . $name . ' does not exist (with exact case)'
479  );
480  }
481  }
482 
495  $headers, $conditions, $status, $options = []
496  ) {
497  $request = new FauxRequest(
498  [ 'action' => 'query', 'meta' => 'siteinfo' ],
499  !empty( $options['post'] )
500  );
501  $request->setHeaders( $headers );
502  $request->response()->statusHeader( 200 ); // Why doesn't it default?
503 
504  $context = $this->apiContext->newTestContext( $request, null );
505  $api = new ApiMain( $context );
506  $priv = TestingAccessWrapper::newFromObject( $api );
507  $priv->mInternalMode = false;
508 
509  if ( !empty( $options['cdn'] ) ) {
510  $this->setMwGlobals( 'wgUseSquid', true );
511  }
512 
513  // Can't do this in TestSetup.php because Setup.php will override it
514  $this->setMwGlobals( 'wgCacheEpoch', '20030516000000' );
515 
516  $module = $this->getMockBuilder( ApiBase::class )
517  ->setConstructorArgs( [ $api, 'mock' ] )
518  ->setMethods( [ 'getConditionalRequestData' ] )
519  ->getMockForAbstractClass();
520  $module->expects( $this->any() )
521  ->method( 'getConditionalRequestData' )
522  ->will( $this->returnCallback( function ( $condition ) use ( $conditions ) {
523  return $conditions[$condition] ?? null;
524  } ) );
525 
526  $ret = $priv->checkConditionalRequestHeaders( $module );
527 
528  $this->assertSame( $status, $request->response()->getStatusCode() );
529  $this->assertSame( $status === 200, $ret );
530  }
531 
532  public static function provideCheckConditionalRequestHeaders() {
533  global $wgSquidMaxage;
534  $now = time();
535 
536  return [
537  // Non-existing from module is ignored
538  'If-None-Match' => [ [ 'If-None-Match' => '"foo", "bar"' ], [], 200 ],
539  'If-Modified-Since' =>
540  [ [ 'If-Modified-Since' => 'Tue, 18 Aug 2015 00:00:00 GMT' ], [], 200 ],
541 
542  // No headers
543  'No headers' => [ [], [ 'etag' => '""', 'last-modified' => '20150815000000', ], 200 ],
544 
545  // Basic If-None-Match
546  'If-None-Match with matching etag' =>
547  [ [ 'If-None-Match' => '"foo", "bar"' ], [ 'etag' => '"bar"' ], 304 ],
548  'If-None-Match with non-matching etag' =>
549  [ [ 'If-None-Match' => '"foo", "bar"' ], [ 'etag' => '"baz"' ], 200 ],
550  'Strong If-None-Match with weak matching etag' =>
551  [ [ 'If-None-Match' => '"foo"' ], [ 'etag' => 'W/"foo"' ], 304 ],
552  'Weak If-None-Match with strong matching etag' =>
553  [ [ 'If-None-Match' => 'W/"foo"' ], [ 'etag' => '"foo"' ], 304 ],
554  'Weak If-None-Match with weak matching etag' =>
555  [ [ 'If-None-Match' => 'W/"foo"' ], [ 'etag' => 'W/"foo"' ], 304 ],
556 
557  // Pointless for GET, but supported
558  'If-None-Match: *' => [ [ 'If-None-Match' => '*' ], [], 304 ],
559 
560  // Basic If-Modified-Since
561  'If-Modified-Since, modified one second earlier' =>
562  [ [ 'If-Modified-Since' => wfTimestamp( TS_RFC2822, $now ) ],
563  [ 'last-modified' => wfTimestamp( TS_MW, $now - 1 ) ], 304 ],
564  'If-Modified-Since, modified now' =>
565  [ [ 'If-Modified-Since' => wfTimestamp( TS_RFC2822, $now ) ],
566  [ 'last-modified' => wfTimestamp( TS_MW, $now ) ], 304 ],
567  'If-Modified-Since, modified one second later' =>
568  [ [ 'If-Modified-Since' => wfTimestamp( TS_RFC2822, $now ) ],
569  [ 'last-modified' => wfTimestamp( TS_MW, $now + 1 ) ], 200 ],
570 
571  // If-Modified-Since ignored when If-None-Match is given too
572  'Non-matching If-None-Match and matching If-Modified-Since' =>
573  [ [ 'If-None-Match' => '""',
574  'If-Modified-Since' => wfTimestamp( TS_RFC2822, $now ) ],
575  [ 'etag' => '"x"', 'last-modified' => wfTimestamp( TS_MW, $now - 1 ) ], 200 ],
576  'Non-matching If-None-Match and matching If-Modified-Since with no ETag' =>
577  [
578  [
579  'If-None-Match' => '""',
580  'If-Modified-Since' => wfTimestamp( TS_RFC2822, $now )
581  ],
582  [ 'last-modified' => wfTimestamp( TS_MW, $now - 1 ) ],
583  304
584  ],
585 
586  // Ignored for POST
587  'Matching If-None-Match with POST' =>
588  [ [ 'If-None-Match' => '"foo", "bar"' ], [ 'etag' => '"bar"' ], 200,
589  [ 'post' => true ] ],
590  'Matching If-Modified-Since with POST' =>
591  [ [ 'If-Modified-Since' => wfTimestamp( TS_RFC2822, $now ) ],
592  [ 'last-modified' => wfTimestamp( TS_MW, $now - 1 ) ], 200,
593  [ 'post' => true ] ],
594 
595  // Other date formats allowed by the RFC
596  'If-Modified-Since with alternate date format 1' =>
597  [ [ 'If-Modified-Since' => gmdate( 'l, d-M-y H:i:s', $now ) . ' GMT' ],
598  [ 'last-modified' => wfTimestamp( TS_MW, $now - 1 ) ], 304 ],
599  'If-Modified-Since with alternate date format 2' =>
600  [ [ 'If-Modified-Since' => gmdate( 'D M j H:i:s Y', $now ) ],
601  [ 'last-modified' => wfTimestamp( TS_MW, $now - 1 ) ], 304 ],
602 
603  // Old browser extension to HTTP/1.0
604  'If-Modified-Since with length' =>
605  [ [ 'If-Modified-Since' => wfTimestamp( TS_RFC2822, $now ) . '; length=123' ],
606  [ 'last-modified' => wfTimestamp( TS_MW, $now - 1 ) ], 304 ],
607 
608  // Invalid date formats should be ignored
609  'If-Modified-Since with invalid date format' =>
610  [ [ 'If-Modified-Since' => gmdate( 'Y-m-d H:i:s', $now ) . ' GMT' ],
611  [ 'last-modified' => wfTimestamp( TS_MW, $now - 1 ) ], 200 ],
612  'If-Modified-Since with entirely unparseable date' =>
613  [ [ 'If-Modified-Since' => 'a potato' ],
614  [ 'last-modified' => wfTimestamp( TS_MW, $now - 1 ) ], 200 ],
615 
616  // Anything before $wgSquidMaxage seconds ago should be considered
617  // expired.
618  'If-Modified-Since with CDN post-expiry' =>
619  [ [ 'If-Modified-Since' => wfTimestamp( TS_RFC2822, $now - $wgSquidMaxage * 2 ) ],
620  [ 'last-modified' => wfTimestamp( TS_MW, $now - $wgSquidMaxage * 3 ) ],
621  200, [ 'cdn' => true ] ],
622  'If-Modified-Since with CDN pre-expiry' =>
623  [ [ 'If-Modified-Since' => wfTimestamp( TS_RFC2822, $now - $wgSquidMaxage / 2 ) ],
624  [ 'last-modified' => wfTimestamp( TS_MW, $now - $wgSquidMaxage * 3 ) ],
625  304, [ 'cdn' => true ] ],
626  ];
627  }
628 
638  $conditions, $headers, $isError = false, $post = false
639  ) {
640  $request = new FauxRequest( [ 'action' => 'query', 'meta' => 'siteinfo' ], $post );
641  $response = $request->response();
642 
643  $api = new ApiMain( $request );
644  $priv = TestingAccessWrapper::newFromObject( $api );
645  $priv->mInternalMode = false;
646 
647  $module = $this->getMockBuilder( ApiBase::class )
648  ->setConstructorArgs( [ $api, 'mock' ] )
649  ->setMethods( [ 'getConditionalRequestData' ] )
650  ->getMockForAbstractClass();
651  $module->expects( $this->any() )
652  ->method( 'getConditionalRequestData' )
653  ->will( $this->returnCallback( function ( $condition ) use ( $conditions ) {
654  return $conditions[$condition] ?? null;
655  } ) );
656  $priv->mModule = $module;
657 
658  $priv->sendCacheHeaders( $isError );
659 
660  foreach ( [ 'Last-Modified', 'ETag' ] as $header ) {
661  $this->assertEquals(
662  $headers[$header] ?? null,
663  $response->getHeader( $header ),
664  $header
665  );
666  }
667  }
668 
669  public static function provideConditionalRequestHeadersOutput() {
670  return [
671  [
672  [],
673  []
674  ],
675  [
676  [ 'etag' => '"foo"' ],
677  [ 'ETag' => '"foo"' ]
678  ],
679  [
680  [ 'last-modified' => '20150818000102' ],
681  [ 'Last-Modified' => 'Tue, 18 Aug 2015 00:01:02 GMT' ]
682  ],
683  [
684  [ 'etag' => '"foo"', 'last-modified' => '20150818000102' ],
685  [ 'ETag' => '"foo"', 'Last-Modified' => 'Tue, 18 Aug 2015 00:01:02 GMT' ]
686  ],
687  [
688  [ 'etag' => '"foo"', 'last-modified' => '20150818000102' ],
689  [],
690  true,
691  ],
692  [
693  [ 'etag' => '"foo"', 'last-modified' => '20150818000102' ],
694  [],
695  false,
696  true,
697  ],
698  ];
699  }
700 
702  $this->setExpectedException( ApiUsageException::class,
703  'You need read permission to use this module.' );
704 
705  $this->setGroupPermissions( '*', 'read', false );
706 
707  $main = new ApiMain( new FauxRequest( [ 'action' => 'query', 'meta' => 'siteinfo' ] ) );
708  $main->execute();
709  }
710 
712  $this->setExpectedException( ApiUsageException::class,
713  'Editing of this wiki through the API is disabled. Make sure the ' .
714  '"$wgEnableWriteAPI=true;" statement is included in the wiki\'s ' .
715  '"LocalSettings.php" file.' );
716  $main = new ApiMain( new FauxRequest( [
717  'action' => 'edit',
718  'title' => 'Some page',
719  'text' => 'Some text',
720  'token' => '+\\',
721  ] ) );
722  $main->execute();
723  }
724 
726  $this->setExpectedException( ApiUsageException::class,
727  "You're not allowed to edit this wiki through the API." );
728  $this->setGroupPermissions( '*', 'writeapi', false );
729 
730  $main = new ApiMain( new FauxRequest( [
731  'action' => 'edit',
732  'title' => 'Some page',
733  'text' => 'Some text',
734  'token' => '+\\',
735  ] ), /* enableWrite = */ true );
736  $main->execute();
737  }
738 
740  $this->setExpectedException( ApiUsageException::class,
741  'The "Promise-Non-Write-API-Action" HTTP header cannot be sent ' .
742  'to write-mode API modules.' );
743 
744  $req = new FauxRequest( [
745  'action' => 'edit',
746  'title' => 'Some page',
747  'text' => 'Some text',
748  'token' => '+\\',
749  ] );
750  $req->setHeaders( [ 'Promise-Non-Write-API-Action' => '1' ] );
751  $main = new ApiMain( $req, /* enableWrite = */ true );
752  $main->execute();
753  }
754 
756  $this->setExpectedException( ApiUsageException::class, 'Main Page' );
757 
758  $this->setTemporaryHook( 'ApiCheckCanExecute', function ( $unused1, $unused2, &$message ) {
759  $message = 'mainpage';
760  return false;
761  } );
762 
763  $main = new ApiMain( new FauxRequest( [
764  'action' => 'edit',
765  'title' => 'Some page',
766  'text' => 'Some text',
767  'token' => '+\\',
768  ] ), /* enableWrite = */ true );
769  $main->execute();
770  }
771 
772  public function testGetValUnsupportedArray() {
773  $main = new ApiMain( new FauxRequest( [
774  'action' => 'query',
775  'meta' => 'siteinfo',
776  'siprop' => [ 'general', 'namespaces' ],
777  ] ) );
778  $this->assertSame( 'myDefault', $main->getVal( 'siprop', 'myDefault' ) );
779  $main->execute();
780  $this->assertSame( 'Parameter "siprop" uses unsupported PHP array syntax.',
781  $main->getResult()->getResultData()['warnings']['main']['warnings'] );
782  }
783 
784  public function testReportUnusedParams() {
785  $main = new ApiMain( new FauxRequest( [
786  'action' => 'query',
787  'meta' => 'siteinfo',
788  'unusedparam' => 'unusedval',
789  'anotherunusedparam' => 'anotherval',
790  ] ) );
791  $main->execute();
792  $this->assertSame( 'Unrecognized parameters: unusedparam, anotherunusedparam.',
793  $main->getResult()->getResultData()['warnings']['main']['warnings'] );
794  }
795 
796  public function testLacksSameOriginSecurity() {
797  // Basic test
798  $main = new ApiMain( new FauxRequest( [ 'action' => 'query', 'meta' => 'siteinfo' ] ) );
799  $this->assertFalse( $main->lacksSameOriginSecurity(), 'Basic test, should have security' );
800 
801  // JSONp
802  $main = new ApiMain(
803  new FauxRequest( [ 'action' => 'query', 'format' => 'xml', 'callback' => 'foo' ] )
804  );
805  $this->assertTrue( $main->lacksSameOriginSecurity(), 'JSONp, should lack security' );
806 
807  // Header
808  $request = new FauxRequest( [ 'action' => 'query', 'meta' => 'siteinfo' ] );
809  $request->setHeader( 'TrEaT-As-UnTrUsTeD', '' ); // With falsey value!
810  $main = new ApiMain( $request );
811  $this->assertTrue( $main->lacksSameOriginSecurity(), 'Header supplied, should lack security' );
812 
813  // Hook
814  $this->mergeMwGlobalArrayValue( 'wgHooks', [
815  'RequestHasSameOriginSecurity' => [ function () {
816  return false;
817  } ]
818  ] );
819  $main = new ApiMain( new FauxRequest( [ 'action' => 'query', 'meta' => 'siteinfo' ] ) );
820  $this->assertTrue( $main->lacksSameOriginSecurity(), 'Hook, should lack security' );
821  }
822 
835  public function testApiErrorFormatterCreation( array $request, array $expect ) {
836  $context = new RequestContext();
837  $context->setRequest( new FauxRequest( $request ) );
838  $context->setLanguage( 'ru' );
839 
840  $main = new ApiMain( $context );
841  $formatter = $main->getErrorFormatter();
842  $wrappedFormatter = TestingAccessWrapper::newFromObject( $formatter );
843 
844  $this->assertSame( $expect['uselang'], $main->getLanguage()->getCode() );
845  $this->assertInstanceOf( $expect['class'], $formatter );
846  $this->assertSame( $expect['lang'], $formatter->getLanguage()->getCode() );
847  $this->assertSame( $expect['format'], $wrappedFormatter->format );
848  $this->assertSame( $expect['usedb'], $wrappedFormatter->useDB );
849  }
850 
851  public static function provideApiErrorFormatterCreation() {
852  return [
853  'Default (BC)' => [ [], [
854  'uselang' => 'ru',
856  'lang' => 'en',
857  'format' => 'none',
858  'usedb' => false,
859  ] ],
860  'BC ignores fields' => [ [ 'errorlang' => 'de', 'errorsuselocal' => 1 ], [
861  'uselang' => 'ru',
863  'lang' => 'en',
864  'format' => 'none',
865  'usedb' => false,
866  ] ],
867  'Explicit BC' => [ [ 'errorformat' => 'bc' ], [
868  'uselang' => 'ru',
870  'lang' => 'en',
871  'format' => 'none',
872  'usedb' => false,
873  ] ],
874  'Basic' => [ [ 'errorformat' => 'wikitext' ], [
875  'uselang' => 'ru',
876  'class' => ApiErrorFormatter::class,
877  'lang' => 'ru',
878  'format' => 'wikitext',
879  'usedb' => false,
880  ] ],
881  'Follows uselang' => [ [ 'uselang' => 'fr', 'errorformat' => 'plaintext' ], [
882  'uselang' => 'fr',
883  'class' => ApiErrorFormatter::class,
884  'lang' => 'fr',
885  'format' => 'plaintext',
886  'usedb' => false,
887  ] ],
888  'Explicitly follows uselang' => [
889  [ 'uselang' => 'fr', 'errorlang' => 'uselang', 'errorformat' => 'plaintext' ],
890  [
891  'uselang' => 'fr',
892  'class' => ApiErrorFormatter::class,
893  'lang' => 'fr',
894  'format' => 'plaintext',
895  'usedb' => false,
896  ]
897  ],
898  'uselang=content' => [
899  [ 'uselang' => 'content', 'errorformat' => 'plaintext' ],
900  [
901  'uselang' => 'en',
902  'class' => ApiErrorFormatter::class,
903  'lang' => 'en',
904  'format' => 'plaintext',
905  'usedb' => false,
906  ]
907  ],
908  'errorlang=content' => [
909  [ 'errorlang' => 'content', 'errorformat' => 'plaintext' ],
910  [
911  'uselang' => 'ru',
912  'class' => ApiErrorFormatter::class,
913  'lang' => 'en',
914  'format' => 'plaintext',
915  'usedb' => false,
916  ]
917  ],
918  'Explicit parameters' => [
919  [ 'errorlang' => 'de', 'errorformat' => 'html', 'errorsuselocal' => 1 ],
920  [
921  'uselang' => 'ru',
922  'class' => ApiErrorFormatter::class,
923  'lang' => 'de',
924  'format' => 'html',
925  'usedb' => true,
926  ]
927  ],
928  'Explicit parameters override uselang' => [
929  [ 'errorlang' => 'de', 'uselang' => 'fr', 'errorformat' => 'raw' ],
930  [
931  'uselang' => 'fr',
932  'class' => ApiErrorFormatter::class,
933  'lang' => 'de',
934  'format' => 'raw',
935  'usedb' => false,
936  ]
937  ],
938  'Bogus language doesn\'t explode' => [
939  [ 'errorlang' => '<bogus1>', 'uselang' => '<bogus2>', 'errorformat' => 'none' ],
940  [
941  'uselang' => 'en',
942  'class' => ApiErrorFormatter::class,
943  'lang' => 'en',
944  'format' => 'none',
945  'usedb' => false,
946  ]
947  ],
948  'Bogus format doesn\'t explode' => [ [ 'errorformat' => 'bogus' ], [
949  'uselang' => 'ru',
951  'lang' => 'en',
952  'format' => 'none',
953  'usedb' => false,
954  ] ],
955  ];
956  }
957 
964  public function testExceptionErrors( $error, $expectReturn, $expectResult ) {
965  $context = new RequestContext();
966  $context->setRequest( new FauxRequest( [ 'errorformat' => 'plaintext' ] ) );
967  $context->setLanguage( 'en' );
968  $context->setConfig( new MultiConfig( [
969  new HashConfig( [
970  'ShowHostnames' => true, 'ShowExceptionDetails' => true,
971  ] ),
972  $context->getConfig()
973  ] ) );
974 
975  $main = new ApiMain( $context );
976  $main->addWarning( new RawMessage( 'existing warning' ), 'existing-warning' );
977  $main->addError( new RawMessage( 'existing error' ), 'existing-error' );
978 
979  $ret = TestingAccessWrapper::newFromObject( $main )->substituteResultWithError( $error );
980  $this->assertSame( $expectReturn, $ret );
981 
982  // PHPUnit sometimes adds some SplObjectStorage garbage to the arrays,
983  // so let's try ->assertEquals().
984  $this->assertEquals(
985  $expectResult,
986  $main->getResult()->getResultData( [], [ 'Strip' => 'all' ] )
987  );
988  }
989 
990  // Not static so $this can be used
991  public function provideExceptionErrors() {
992  $reqId = WebRequest::getRequestId();
993  $doclink = wfExpandUrl( wfScript( 'api' ) );
994 
995  $ex = new InvalidArgumentException( 'Random exception' );
996  $trace = wfMessage( 'api-exception-trace',
997  get_class( $ex ),
998  $ex->getFile(),
999  $ex->getLine(),
1001  )->inLanguage( 'en' )->useDatabase( false )->text();
1002 
1003  $dbex = new DBQueryError(
1004  $this->createMock( \Wikimedia\Rdbms\IDatabase::class ),
1005  'error', 1234, 'SELECT 1', __METHOD__ );
1006  $dbtrace = wfMessage( 'api-exception-trace',
1007  get_class( $dbex ),
1008  $dbex->getFile(),
1009  $dbex->getLine(),
1011  )->inLanguage( 'en' )->useDatabase( false )->text();
1012 
1013  $apiEx1 = new ApiUsageException( null,
1014  StatusValue::newFatal( new ApiRawMessage( 'An error', 'sv-error1' ) ) );
1015  TestingAccessWrapper::newFromObject( $apiEx1 )->modulePath = 'foo+bar';
1016  $apiEx1->getStatusValue()->warning( new ApiRawMessage( 'A warning', 'sv-warn1' ) );
1017  $apiEx1->getStatusValue()->warning( new ApiRawMessage( 'Another warning', 'sv-warn2' ) );
1018  $apiEx1->getStatusValue()->fatal( new ApiRawMessage( 'Another error', 'sv-error2' ) );
1019 
1020  return [
1021  [
1022  $ex,
1023  [ 'existing-error', 'internal_api_error_InvalidArgumentException' ],
1024  [
1025  'warnings' => [
1026  [ 'code' => 'existing-warning', 'text' => 'existing warning', 'module' => 'main' ],
1027  ],
1028  'errors' => [
1029  [ 'code' => 'existing-error', 'text' => 'existing error', 'module' => 'main' ],
1030  [
1031  'code' => 'internal_api_error_InvalidArgumentException',
1032  'text' => "[$reqId] Exception caught: Random exception",
1033  ]
1034  ],
1035  'trace' => $trace,
1036  'servedby' => wfHostname(),
1037  ]
1038  ],
1039  [
1040  $dbex,
1041  [ 'existing-error', 'internal_api_error_DBQueryError' ],
1042  [
1043  'warnings' => [
1044  [ 'code' => 'existing-warning', 'text' => 'existing warning', 'module' => 'main' ],
1045  ],
1046  'errors' => [
1047  [ 'code' => 'existing-error', 'text' => 'existing error', 'module' => 'main' ],
1048  [
1049  'code' => 'internal_api_error_DBQueryError',
1050  'text' => "[$reqId] Exception caught: A database query error has occurred. " .
1051  "This may indicate a bug in the software.",
1052  ]
1053  ],
1054  'trace' => $dbtrace,
1055  'servedby' => wfHostname(),
1056  ]
1057  ],
1058  [
1059  $apiEx1,
1060  [ 'existing-error', 'sv-error1', 'sv-error2' ],
1061  [
1062  'warnings' => [
1063  [ 'code' => 'existing-warning', 'text' => 'existing warning', 'module' => 'main' ],
1064  [ 'code' => 'sv-warn1', 'text' => 'A warning', 'module' => 'foo+bar' ],
1065  [ 'code' => 'sv-warn2', 'text' => 'Another warning', 'module' => 'foo+bar' ],
1066  ],
1067  'errors' => [
1068  [ 'code' => 'existing-error', 'text' => 'existing error', 'module' => 'main' ],
1069  [ 'code' => 'sv-error1', 'text' => 'An error', 'module' => 'foo+bar' ],
1070  [ 'code' => 'sv-error2', 'text' => 'Another error', 'module' => 'foo+bar' ],
1071  ],
1072  'docref' => "See $doclink for API usage. Subscribe to the mediawiki-api-announce mailing " .
1073  "list at &lt;https://lists.wikimedia.org/mailman/listinfo/mediawiki-api-announce&gt; " .
1074  "for notice of API deprecations and breaking changes.",
1075  'servedby' => wfHostname(),
1076  ]
1077  ],
1078  ];
1079  }
1080 
1082  $api = $this->getNonInternalApiMain( [
1083  'action' => 'query', 'meta' => 'siteinfo', 'format' => 'json', 'formatversion' => 'bogus',
1084  ] );
1085 
1086  ob_start();
1087  $api->execute();
1088  $txt = ob_get_clean();
1089 
1090  // Test that the actual output is valid JSON, not just the format of the ApiResult.
1091  $data = FormatJson::decode( $txt, true );
1092  $this->assertInternalType( 'array', $data );
1093  $this->assertArrayHasKey( 'error', $data );
1094  $this->assertArrayHasKey( 'code', $data['error'] );
1095  $this->assertSame( 'unknown_formatversion', $data['error']['code'] );
1096  }
1097 }
ApiMainTest\testCheckMaxLagOkay
testCheckMaxLagOkay()
Definition: ApiMainTest.php:352
ApiMainTest\testSetupModuleUnknown
testSetupModuleUnknown()
Definition: ApiMainTest.php:200
$status
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action, or null $user:User who performed the tagging when the tagging is subsequent to the action, or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy:boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'ContentSecurityPolicyDefaultSource':Modify the allowed CSP load sources. This affects all directives except for the script directive. If you want to add a script source, see ContentSecurityPolicyScriptSource hook. & $defaultSrc:Array of Content-Security-Policy allowed sources $policyConfig:Current configuration for the Content-Security-Policy header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyDirectives':Modify the content security policy directives. Use this only if ContentSecurityPolicyDefaultSource and ContentSecurityPolicyScriptSource do not meet your needs. & $directives:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyScriptSource':Modify the allowed CSP script sources. Note that you also have to use ContentSecurityPolicyDefaultSource if you want non-script sources to be loaded from whatever you add. & $scriptSrc:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
Definition: hooks.txt:1305
ApiMain
This is the main API class, used for both external and internal processing.
Definition: ApiMain.php:41
$user
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
Definition: hooks.txt:244
FauxRequest
WebRequest clone which takes values from a provided array.
Definition: FauxRequest.php:33
ApiUsageException
Exception used to abort API execution with an error.
Definition: ApiUsageException.php:28
ApiMainTest\testSetContinuationManager
testSetContinuationManager()
Definition: ApiMainTest.php:120
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:187
$context
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
Definition: hooks.txt:2675
MediaWikiTestCase\mergeMwGlobalArrayValue
mergeMwGlobalArrayValue( $name, $values)
Merges the given values into a MW global array variable.
Definition: MediaWikiTestCase.php:901
MediaWikiTestCase\getTestUser
static getTestUser( $groups=[])
Convenience method for getting an immutable test user.
Definition: MediaWikiTestCase.php:179
MultiConfig
Provides a fallback sequence for Config objects.
Definition: MultiConfig.php:28
HashConfig
A Config instance which stores all settings as a member variable.
Definition: HashConfig.php:28
ApiMainTest\testSetCacheModeUnrecognized
testSetCacheModeUnrecognized()
Definition: ApiMainTest.php:140
wfTimestamp
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Definition: GlobalFunctions.php:1954
ApiMainTest\testApi
testApi()
Test that the API will accept a FauxRequest and execute.
Definition: ApiMainTest.php:17
ApiMainTest\testNonWhitelistedCorsWithCookies
testNonWhitelistedCorsWithCookies()
Definition: ApiMainTest.php:80
$req
this hook is for auditing only $req
Definition: hooks.txt:1018
TestLogger
A logger that may be configured to either buffer logs or to print them to the output where PHPUnit wi...
Definition: TestLogger.php:33
StatusValue\newFatal
static newFatal( $message)
Factory function for fatal errors.
Definition: StatusValue.php:68
ApiMainTest\testConditionalRequestHeadersOutput
testConditionalRequestHeadersOutput( $conditions, $headers, $isError=false, $post=false)
Test conditional headers output provideConditionalRequestHeadersOutput.
Definition: ApiMainTest.php:637
wfHostname
wfHostname()
Fetch server name for use in error reporting etc.
Definition: GlobalFunctions.php:1392
ApiMainTest\testCheckMaxLagFailed
testCheckMaxLagFailed()
Definition: ApiMainTest.php:271
ApiMainTest\testAddRequestedFieldsResponseLangInfo
testAddRequestedFieldsResponseLangInfo()
Definition: ApiMainTest.php:183
ApiMainTest\testReportUnusedParams
testReportUnusedParams()
Definition: ApiMainTest.php:784
ApiMainTest\testSetupModuleNeedsTokenNeedntBePosted
testSetupModuleNeedsTokenNeedntBePosted()
Definition: ApiMainTest.php:253
User
User
Definition: All_system_messages.txt:425
ApiMainTest\testPrinterParameterValidationError
testPrinterParameterValidationError()
Definition: ApiMainTest.php:1081
ApiMainTest\testCheckExecutePermissionPromiseNonWrite
testCheckExecutePermissionPromiseNonWrite()
Definition: ApiMainTest.php:739
ApiMainTest\testCheckExecutePermissionHookAbort
testCheckExecutePermissionHookAbort()
Definition: ApiMainTest.php:755
ApiMainTest\testCheckConditionalRequestHeaders
testCheckConditionalRequestHeaders( $headers, $conditions, $status, $options=[])
Test HTTP precondition headers.
Definition: ApiMainTest.php:494
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
ApiMainTest\testAssertBeforeModule
testAssertBeforeModule()
Test that 'assert' is processed before module errors.
Definition: ApiMainTest.php:440
ApiRawMessage
Extension of RawMessage implementing IApiMessage.
Definition: ApiRawMessage.php:26
ApiMainTest\testCheckExecutePermissionWriteApiProhibited
testCheckExecutePermissionWriteApiProhibited()
Definition: ApiMainTest.php:725
ApiTestCase\doApiRequest
doApiRequest(array $params, array $session=null, $appendModule=false, User $user=null, $tokenType=null)
Does the API request and returns the result.
Definition: ApiTestCase.php:63
ApiMainTest\testCheckMaxLagExceeded
testCheckMaxLagExceeded()
Definition: ApiMainTest.php:359
ApiMainTest\provideCheckConditionalRequestHeaders
static provideCheckConditionalRequestHeaders()
Definition: ApiMainTest.php:532
FormatJson\decode
static decode( $value, $assoc=false)
Decodes a JSON string.
Definition: FormatJson.php:164
ApiMainTest\testCheckExecutePermissionWriteDisabled
testCheckExecutePermissionWriteDisabled()
Definition: ApiMainTest.php:711
wfScript
wfScript( $script='index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
Definition: GlobalFunctions.php:2771
ApiMainTest\testCheckConditionalRequestHeadersFailed
testCheckConditionalRequestHeadersFailed()
Definition: ApiMainTest.php:290
MediaWikiTestCase\setMwGlobals
setMwGlobals( $pairs, $value=null)
Sets a global, maintaining a stashed version of the previous global to be restored in tearDown.
Definition: MediaWikiTestCase.php:706
MediaWikiTestCase\getNewTempFile
getNewTempFile()
Obtains a new temporary file name.
Definition: MediaWikiTestCase.php:471
ApiMainTest\testAssertUser
testAssertUser()
Tests the assertuser= functionality.
Definition: ApiMainTest.php:419
$wgLang
$wgLang
Definition: Setup.php:902
$modules
$modules
Definition: HTMLFormElement.php:12
ApiMainTest\testLacksSameOriginSecurity
testLacksSameOriginSecurity()
Definition: ApiMainTest.php:796
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
RequestContext
Group all the pieces relevant to the context of a request into one instance.
Definition: RequestContext.php:32
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
list
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
ApiMainTest
API Database medium.
Definition: ApiMainTest.php:12
$request
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
Definition: hooks.txt:2675
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:302
ApiMainTest\testSetupModuleNeedsTokenTrue
testSetupModuleNeedsTokenTrue()
Definition: ApiMainTest.php:235
any
they could even be mouse clicks or menu items whatever suits your program You should also get your if any
Definition: COPYING.txt:326
ApiMainTest\testCheckExecutePermissionsReadProhibited
testCheckExecutePermissionsReadProhibited()
Definition: ApiMainTest.php:701
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:2213
ApiTestCase
Definition: ApiTestCase.php:5
$header
$header
Definition: updateCredits.php:35
MediaWikiTestCase\getMutableTestUser
static getMutableTestUser( $groups=[])
Convenience method for getting a mutable test user.
Definition: MediaWikiTestCase.php:191
ApiMainTest\testSetCacheModePrivateWiki
testSetCacheModePrivateWiki()
Definition: ApiMainTest.php:150
$ret
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition: hooks.txt:2036
MediaWikiTestCase\setGroupPermissions
setGroupPermissions( $newPerms, $newKey=null, $newValue=null)
Alters $wgGroupPermissions for the duration of the test.
Definition: MediaWikiTestCase.php:1092
ApiMainTest\testSetContinuationManagerTwice
testSetContinuationManagerTwice( $args)
@depends testSetContinuationManager
Definition: ApiMainTest.php:131
ApiMainTest\doTestCheckMaxLag
doTestCheckMaxLag( $lag)
Definition: ApiMainTest.php:326
$response
this hook is for auditing only $response
Definition: hooks.txt:813
ApiMainTest\testSuppressedLogin
testSuppressedLogin()
Definition: ApiMainTest.php:101
ApiMainTest\testAddRequestedFieldsCurTimestamp
testAddRequestedFieldsCurTimestamp()
Definition: ApiMainTest.php:171
ApiMainTest\testExceptionErrors
testExceptionErrors( $error, $expectReturn, $expectResult)
provideExceptionErrors
Definition: ApiMainTest.php:964
$args
if( $line===false) $args
Definition: cdb.php:64
FauxResponse
Definition: WebResponse.php:242
$options
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition: hooks.txt:2036
ApiMainTest\testAddRequestedFieldsRequestId
testAddRequestedFieldsRequestId()
Definition: ApiMainTest.php:160
MediaWikiTestCase\setLogger
setLogger( $channel, LoggerInterface $logger)
Sets the logger for a specified channel, for the duration of the test.
Definition: MediaWikiTestCase.php:1115
WebRequest\getRequestId
static getRequestId()
Get the unique request ID.
Definition: WebRequest.php:275
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
ApiMainTest\testApiNoParam
testApiNoParam()
Definition: ApiMainTest.php:27
Wikimedia
This program is free software; you can redistribute it and/or modify it under the terms of the GNU Ge...
true
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition: hooks.txt:2036
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
ApiMainTest\provideAssert
static provideAssert()
Definition: ApiMainTest.php:377
ApiMainTest\testSetupModuleInvalidTokenProvided
testSetupModuleInvalidTokenProvided()
Definition: ApiMainTest.php:222
ApiMainTest\testCheckMaxLagExceededWithHostNames
testCheckMaxLagExceededWithHostNames()
Definition: ApiMainTest.php:368
MediaWikiTestCase\setTemporaryHook
setTemporaryHook( $hookName, $handler)
Create a temporary hook handler which will be reset by tearDown.
Definition: MediaWikiTestCase.php:2291
ApiMainTest\provideApiErrorFormatterCreation
static provideApiErrorFormatterCreation()
Definition: ApiMainTest.php:851
RawMessage
Variant of the Message class.
Definition: RawMessage.php:34
wfMessage
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt
ApiMainTest\testAssert
testAssert( $registered, $rights, $assert, $error)
Tests the assert={user|bot} functionality.
Definition: ApiMainTest.php:396
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:47
MediaWikiTestCase\setService
setService( $name, $object)
Sets a service, maintaining a stashed version of the previous service to be restored in tearDown.
Definition: MediaWikiTestCase.php:646
ApiMainTest\getNonInternalApiMain
getNonInternalApiMain(array $requestData, array $headers=[])
ApiMain behaves differently if passed a FauxRequest (mInternalMode set to true) or a proper WebReques...
Definition: ApiMainTest.php:47
MWExceptionHandler\getRedactedTraceAsString
static getRedactedTraceAsString( $e)
Generate a string representation of an exception's stack trace.
Definition: MWExceptionHandler.php:381
ApiMainTest\testGetValUnsupportedArray
testGetValUnsupportedArray()
Definition: ApiMainTest.php:772
ApiMainTest\provideExceptionErrors
provideExceptionErrors()
Definition: ApiMainTest.php:991
$wgSquidMaxage
$wgSquidMaxage
Cache TTL for the CDN sent as s-maxage (without ESI) or Surrogate-Control (with ESI).
Definition: DefaultSettings.php:2777
ApiBase\LIMIT_SML1
const LIMIT_SML1
Slow query, standard limit.
Definition: ApiBase.php:256
wfExpandUrl
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
Definition: GlobalFunctions.php:512
ApiMainTest\provideConditionalRequestHeadersOutput
static provideConditionalRequestHeadersOutput()
Definition: ApiMainTest.php:669
ApiMainTest\testApiErrorFormatterCreation
testApiErrorFormatterCreation(array $request, array $expect)
Test proper creation of the ApiErrorFormatter.
Definition: ApiMainTest.php:835
ApiMainTest\testSetupModuleNoTokenProvided
testSetupModuleNoTokenProvided()
Definition: ApiMainTest.php:209
ApiMainTest\testUselang
testUselang()
Definition: ApiMainTest.php:64
ApiMainTest\testClassNamesInModuleManager
testClassNamesInModuleManager()
Test if all classes in the main module manager exists.
Definition: ApiMainTest.php:469