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
|
<?php
use MediaWiki\Block\DatabaseBlock;
use MediaWiki\Block\Restriction\PageRestriction;
use MediaWiki\Revision\RevisionRecord;
use MediaWiki\Revision\SlotRecord;
use MediaWiki\Tests\Unit\Permissions\MockAuthorityTrait;
/**
* Tests for action=revisiondelete
* @covers APIRevisionDelete
* @group API
* @group medium
* @group Database
*/
class ApiRevisionDeleteTest extends ApiTestCase {
use MockAuthorityTrait;
public static $page = 'Help:ApiRevDel_test';
public $revs = [];
protected function setUp(): void {
parent::setUp();
// Make a few edits for us to play with
for ( $i = 1; $i <= 5; $i++ ) {
$this->editPage( self::$page, MWCryptRand::generateHex( 10 ), 'summary' );
$this->revs[] = Title::newFromText( self::$page )->getLatestRevID( Title::READ_LATEST );
}
}
public function testHidingRevisions() {
$performer = $this->mockAnonAuthorityWithPermissions( [ 'writeapi', 'deleterevision' ] );
$revid = array_shift( $this->revs );
$out = $this->doApiRequestWithToken( [
'action' => 'revisiondelete',
'type' => 'revision',
'target' => self::$page,
'ids' => $revid,
'hide' => 'content|user|comment',
], null, $performer );
// Check the output
$out = $out[0]['revisiondelete'];
$this->assertEquals( 'Success', $out['status'] );
$this->assertArrayHasKey( 'items', $out );
$item = $out['items'][0];
$this->assertTrue( $item['userhidden'], 'userhidden' );
$this->assertTrue( $item['commenthidden'], 'commenthidden' );
$this->assertTrue( $item['texthidden'], 'texthidden' );
$this->assertEquals( $revid, $item['id'] );
// Now check that that revision was actually hidden
$revRecord = $this->getServiceContainer()
->getRevisionLookup()
->getRevisionById( $revid );
$this->assertNull( $revRecord->getContent( SlotRecord::MAIN, RevisionRecord::FOR_PUBLIC ) );
$this->assertNull( $revRecord->getComment( RevisionRecord::FOR_PUBLIC ) );
$this->assertNull( $revRecord->getUser( RevisionRecord::FOR_PUBLIC ) );
// Now test unhiding!
$out2 = $this->doApiRequestWithToken( [
'action' => 'revisiondelete',
'type' => 'revision',
'target' => self::$page,
'ids' => $revid,
'show' => 'content|user|comment',
], null, $performer );
// Check the output
$out2 = $out2[0]['revisiondelete'];
$this->assertEquals( 'Success', $out2['status'] );
$this->assertArrayHasKey( 'items', $out2 );
$item = $out2['items'][0];
$this->assertFalse( $item['userhidden'], 'userhidden' );
$this->assertFalse( $item['commenthidden'], 'commenthidden' );
$this->assertFalse( $item['texthidden'], 'texthidden' );
$this->assertEquals( $revid, $item['id'] );
// Now check that that revision was actually unhidden
$revRecord = $this->getServiceContainer()
->getRevisionLookup()
->getRevisionById( $revid );
$this->assertNotNull( $revRecord->getContent( SlotRecord::MAIN, RevisionRecord::FOR_PUBLIC ) );
$this->assertNotNull( $revRecord->getComment( RevisionRecord::FOR_PUBLIC ) );
$this->assertNotNull( $revRecord->getUser( RevisionRecord::FOR_PUBLIC ) );
}
public function testUnhidingOutput() {
$performer = $this->mockAnonAuthorityWithPermissions( [ 'writeapi', 'deleterevision' ] );
$revid = array_shift( $this->revs );
// Hide revisions
$this->doApiRequestWithToken( [
'action' => 'revisiondelete',
'type' => 'revision',
'target' => self::$page,
'ids' => $revid,
'hide' => 'content|user|comment',
], null, $performer );
$out = $this->doApiRequestWithToken( [
'action' => 'revisiondelete',
'type' => 'revision',
'target' => self::$page,
'ids' => $revid,
'show' => 'comment',
], null, $performer );
$out = $out[0]['revisiondelete'];
$this->assertEquals( 'Success', $out['status'] );
$this->assertArrayHasKey( 'items', $out );
$item = $out['items'][0];
// Check it has userhidden & texthidden
// but not commenthidden
$this->assertTrue( $item['userhidden'], 'userhidden' );
$this->assertFalse( $item['commenthidden'], 'commenthidden' );
$this->assertTrue( $item['texthidden'], 'texthidden' );
$this->assertEquals( $revid, $item['id'] );
}
public function testPartiallyBlockedPage() {
$this->setExpectedApiException( 'apierror-blocked-partial' );
$performer = $this->mockAnonAuthorityWithPermissions( [ 'writeapi', 'deleterevision' ] );
$block = new DatabaseBlock( [
'address' => $performer->getUser(),
'by' => static::getTestSysop()->getUser(),
'sitewide' => false,
] );
$block->setRestrictions( [
new PageRestriction( 0, Title::newFromText( self::$page )->getArticleID() )
] );
$this->getServiceContainer()->getDatabaseBlockStore()->insertBlock( $block );
$revid = array_shift( $this->revs );
$this->doApiRequestWithToken( [
'action' => 'revisiondelete',
'type' => 'revision',
'target' => self::$page,
'ids' => $revid,
'hide' => 'content|user|comment',
], null, $performer );
}
}
|