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
|
<?php
namespace MediaWiki\Tests\Api;
use ApiUsageException;
use MediaWiki\MainConfigNames;
use MediaWiki\Title\Title;
/**
* Tests for Rollback API.
*
* @group API
* @group Database
* @group medium
*
* @covers \ApiRollback
*/
class ApiRollbackTest extends ApiTestCase {
protected function setUp(): void {
parent::setUp();
$this->overrideConfigValue( MainConfigNames::WatchlistExpiry, true );
}
public function testProtectWithWatch(): void {
$title = Title::makeTitle( NS_MAIN, 'TestProtectWithWatch' );
$revisionStore = $this->getServiceContainer()->getRevisionStore();
$user = $this->getTestUser()->getUser();
$sysop = $this->getTestSysop()->getUser();
// Create page as sysop.
$this->editPage( $title, 'Some text', '', NS_MAIN, $sysop );
// Edit as non-sysop.
$this->editPage( $title, 'Vandalism', '', NS_MAIN, $user );
// Rollback as sysop.
$apiResult = $this->doApiRequestWithToken( [
'action' => 'rollback',
'title' => $title->getPrefixedText(),
'user' => $user->getName(),
'watchlist' => 'watch',
'watchlistexpiry' => '99990123000000',
] )[0];
// Content of latest revision should match the initial.
$latestRev = $revisionStore->getRevisionByTitle( $title );
$initialRev = $revisionStore->getFirstRevision( $title );
$this->assertTrue( $latestRev->hasSameContent( $initialRev ) );
// ...but have different rev IDs.
$this->assertNotSame( $latestRev->getId(), $initialRev->getId() );
// Make sure the API response looks good.
$this->assertArrayHasKey( 'rollback', $apiResult );
$this->assertSame( $title->getPrefixedText(), $apiResult['rollback']['title'] );
// And that the page was temporarily watched.
$this->assertTrue( $this->getServiceContainer()->getWatchlistManager()->isTempWatched( $sysop, $title ) );
$recentChange = $revisionStore->getRecentChange( $latestRev );
$this->assertSame( '0', $recentChange->getAttribute( 'rc_bot' ) );
$this->assertSame( $sysop->getName(), $recentChange->getAttribute( 'rc_user_text' ) );
}
public function testRollbackMarkAsBot() {
$revisionStore = $this->getServiceContainer()->getRevisionStore();
$title = Title::makeTitle( NS_MAIN, 'ApiRollbackTest::testRollbackMarkAsBot' );
$user = $this->getTestUser()->getUser();
$sysop = $this->getTestSysop()->getUser();
// Create page as sysop.
$this->editPage( $title, 'Some text', '', NS_MAIN, $sysop );
// Edit as non-sysop.
$this->editPage( $title, 'Vandalism', '', NS_MAIN, $user );
// Rollback as sysop.
$apiResult = $this->doApiRequestWithToken( [
'action' => 'rollback',
'title' => $title->getPrefixedText(),
'user' => $user->getName(),
'markbot' => true
] )[0];
// Make sure the API response looks good.
$this->assertArrayHasKey( 'rollback', $apiResult );
$this->assertSame( $title->getPrefixedText(), $apiResult['rollback']['title'] );
$recentChange = $revisionStore->getRecentChange( $revisionStore->getRevisionByTitle( $title ) );
$this->assertSame( '1', $recentChange->getAttribute( 'rc_bot' ) );
}
public function testRollbackNoToken() {
$user = $this->getTestUser()->getUser();
$sysop = $this->getTestSysop()->getUser();
$title = Title::makeTitle( NS_MAIN, 'ApiRollbackTest::testRollbackNoToken' );
// Create page as sysop.
$this->editPage( $title, 'Some text', '', NS_MAIN, $sysop );
// Edit as non-sysop.
$this->editPage( $title, 'Vandalism', '', NS_MAIN, $user );
$this->expectException( ApiUsageException::class );
$this->doApiRequest( [
'action' => 'rollback',
'title' => $title->getPrefixedText(),
'user' => $user->getName(),
] )[0];
}
}
|