MediaWiki  1.28.1
ApiWatchTest.php
Go to the documentation of this file.
1 <?php
2 
9 class ApiWatchTest extends ApiTestCase {
10  protected function setUp() {
11  parent::setUp();
12  $this->doLogin();
13  }
14 
15  function getTokens() {
16  return $this->getTokenList( self::$users['sysop'] );
17  }
18 
21  public function testWatchEdit() {
22  $tokens = $this->getTokens();
23 
24  $data = $this->doApiRequest( [
25  'action' => 'edit',
26  'title' => 'Help:UTPage', // Help namespace is hopefully wikitext
27  'text' => 'new text',
28  'token' => $tokens['edittoken'],
29  'watchlist' => 'watch' ] );
30  $this->assertArrayHasKey( 'edit', $data[0] );
31  $this->assertArrayHasKey( 'result', $data[0]['edit'] );
32  $this->assertEquals( 'Success', $data[0]['edit']['result'] );
33 
34  return $data;
35  }
36 
40  public function testWatchClear() {
41  $tokens = $this->getTokens();
42 
43  $data = $this->doApiRequest( [
44  'action' => 'query',
45  'wllimit' => 'max',
46  'list' => 'watchlist' ] );
47 
48  if ( isset( $data[0]['query']['watchlist'] ) ) {
49  $wl = $data[0]['query']['watchlist'];
50 
51  foreach ( $wl as $page ) {
52  $data = $this->doApiRequest( [
53  'action' => 'watch',
54  'title' => $page['title'],
55  'unwatch' => true,
56  'token' => $tokens['watchtoken'] ] );
57  }
58  }
59  $data = $this->doApiRequest( [
60  'action' => 'query',
61  'list' => 'watchlist' ], $data );
62  $this->assertArrayHasKey( 'query', $data[0] );
63  $this->assertArrayHasKey( 'watchlist', $data[0]['query'] );
64  foreach ( $data[0]['query']['watchlist'] as $index => $item ) {
65  // Previous tests may insert an invalid title
66  // like ":ApiEditPageTest testNonTextEdit", which
67  // can't be cleared.
68  if ( strpos( $item['title'], ':' ) === 0 ) {
69  unset( $data[0]['query']['watchlist'][$index] );
70  }
71  }
72  $this->assertEquals( 0, count( $data[0]['query']['watchlist'] ) );
73 
74  return $data;
75  }
76 
79  public function testWatchProtect() {
80  $tokens = $this->getTokens();
81 
82  $data = $this->doApiRequest( [
83  'action' => 'protect',
84  'token' => $tokens['protecttoken'],
85  'title' => 'Help:UTPage',
86  'protections' => 'edit=sysop',
87  'watchlist' => 'unwatch' ] );
88 
89  $this->assertArrayHasKey( 'protect', $data[0] );
90  $this->assertArrayHasKey( 'protections', $data[0]['protect'] );
91  $this->assertEquals( 1, count( $data[0]['protect']['protections'] ) );
92  $this->assertArrayHasKey( 'edit', $data[0]['protect']['protections'][0] );
93  }
94 
97  public function testGetRollbackToken() {
98  $this->getTokens();
99 
100  if ( !Title::newFromText( 'Help:UTPage' )->exists() ) {
101  $this->markTestSkipped( "The article [[Help:UTPage]] does not exist" ); // TODO: just create it?
102  }
103 
104  $data = $this->doApiRequest( [
105  'action' => 'query',
106  'prop' => 'revisions',
107  'titles' => 'Help:UTPage',
108  'rvtoken' => 'rollback' ] );
109 
110  $this->assertArrayHasKey( 'query', $data[0] );
111  $this->assertArrayHasKey( 'pages', $data[0]['query'] );
112  $keys = array_keys( $data[0]['query']['pages'] );
113  $key = array_pop( $keys );
114 
115  if ( isset( $data[0]['query']['pages'][$key]['missing'] ) ) {
116  $this->markTestSkipped( "Target page (Help:UTPage) doesn't exist" );
117  }
118 
119  $this->assertArrayHasKey( 'pageid', $data[0]['query']['pages'][$key] );
120  $this->assertArrayHasKey( 'revisions', $data[0]['query']['pages'][$key] );
121  $this->assertArrayHasKey( 0, $data[0]['query']['pages'][$key]['revisions'] );
122  $this->assertArrayHasKey( 'rollbacktoken', $data[0]['query']['pages'][$key]['revisions'][0] );
123 
124  return $data;
125  }
126 
133  public function testWatchRollback( $data ) {
134  $keys = array_keys( $data[0]['query']['pages'] );
135  $key = array_pop( $keys );
136  $pageinfo = $data[0]['query']['pages'][$key];
137  $revinfo = $pageinfo['revisions'][0];
138 
139  try {
140  $data = $this->doApiRequest( [
141  'action' => 'rollback',
142  'title' => 'Help:UTPage',
143  'user' => $revinfo['user'],
144  'token' => $pageinfo['rollbacktoken'],
145  'watchlist' => 'watch' ] );
146 
147  $this->assertArrayHasKey( 'rollback', $data[0] );
148  $this->assertArrayHasKey( 'title', $data[0]['rollback'] );
149  } catch ( UsageException $ue ) {
150  if ( $ue->getCodeString() == 'onlyauthor' ) {
151  $this->markTestIncomplete( "Only one author to 'Help:UTPage', cannot test rollback" );
152  } else {
153  $this->fail( "Received error '" . $ue->getCodeString() . "'" );
154  }
155  }
156  }
157 }
testWatchClear()
testWatchEdit
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:262
getTokenList(TestUser $user, $session=null)
doLogin($testUser= 'sysop')
API Database medium.
Definition: ApiWatchTest.php:9
$tokens
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
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
doApiRequest(array $params, array $session=null, $appendModule=false, User $user=null)
Does the API request and returns the result.
Definition: ApiTestCase.php:71
testWatchRollback($data)
Broken Broken because there is currently no revision info in the $pageinfo.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
Definition: hooks.txt:2491
This exception will be thrown when dieUsage is called to stop module execution.
Definition: ApiMain.php:1860