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
|
<?php
namespace MediaWiki\Tests\Rest\Handler;
use Exception;
use MediaWiki\Content\TextContent;
use MediaWiki\Rest\Handler\RevisionSourceHandler;
use MediaWiki\Rest\LocalizedHttpException;
use MediaWiki\Rest\RequestData;
use MediaWiki\Revision\RevisionRecord;
use MediaWiki\Revision\SlotRecord;
use MediaWikiIntegrationTestCase;
use Wikimedia\Message\MessageValue;
use Wikimedia\ObjectCache\BagOStuff;
/**
* @covers \MediaWiki\Rest\Handler\RevisionSourceHandler
* @group Database
*/
class RevisionSourceHandlerTest extends MediaWikiIntegrationTestCase {
use HandlerTestTrait;
private const WIKITEXT = 'Hello \'\'\'World\'\'\'';
private const HTML = '<p>Hello <b>World</b></p>';
protected function setUp(): void {
parent::setUp();
$this->overrideConfigValues( [
'RightsUrl' => 'https://example.com/rights',
'RightsText' => 'some rights',
] );
}
/**
* @param BagOStuff|null $cache
* @return RevisionSourceHandler
* @throws Exception
*/
private function newHandler( BagOStuff $cache = null ): RevisionSourceHandler {
$handler = new RevisionSourceHandler(
$this->getServiceContainer()->getPageRestHelperFactory()
);
return $handler;
}
private function getExistingPageWithRevisions( $name ) {
$page = $this->getNonexistingTestPage( $name );
$this->editPage( $page, self::WIKITEXT );
$revisions['first'] = $page->getRevisionRecord();
$this->editPage( $page, 'DEAD BEEF' );
$revisions['latest'] = $page->getRevisionRecord();
return [ $page, $revisions ];
}
public function testExecuteBare() {
[ $page, $revisions ] = $this->getExistingPageWithRevisions( __METHOD__ );
$firstRev = $revisions['first'];
$request = new RequestData(
[ 'pathParams' => [ 'id' => $firstRev->getId() ] ]
);
$htmlUrl = "https://wiki.example.com/rest/v1/revision/{$firstRev->getId()}/html";
$handler = $this->newHandler();
$config = [ 'format' => 'bare' ];
$data = $this->executeHandlerAndGetBodyData( $handler, $request, $config );
$this->assertResponseData( $firstRev, $data );
$this->assertSame( $htmlUrl, $data['html_url'] );
}
public function testExecuteSource() {
[ $page, $revisions ] = $this->getExistingPageWithRevisions( __METHOD__ );
$firstRev = $revisions['first'];
$request = new RequestData(
[ 'pathParams' => [ 'id' => $firstRev->getId() ] ]
);
$handler = $this->newHandler();
$config = [ 'format' => 'source' ];
$data = $this->executeHandlerAndGetBodyData( $handler, $request, $config );
/** @var TextContent $content */
$content = $firstRev->getContent( SlotRecord::MAIN );
$this->assertResponseData( $firstRev, $data );
$this->assertSame( $content->getText(), $data['source'] );
}
public function testExecute_missingparam() {
$request = new RequestData();
$this->expectExceptionObject(
new LocalizedHttpException(
new MessageValue( "paramvalidator-missingparam", [ 'title' ] ),
400
)
);
$handler = $this->newHandler();
$this->executeHandler( $handler, $request );
}
public function testExecute_error() {
$request = new RequestData( [ 'pathParams' => [ 'id' => '2074398742' ] ] );
$this->expectExceptionObject(
new LocalizedHttpException(
new MessageValue( "rest-nonexistent-revision", [ 'testing' ] ),
404
)
);
$handler = $this->newHandler();
$this->executeHandler( $handler, $request );
}
/**
* @param RevisionRecord $rev
* @param array $data
*/
private function assertResponseData( RevisionRecord $rev, array $data ): void {
$this->assertSame( $rev->getId(), $data['id'] );
$this->assertSame( $rev->getSize(), $data['size'] );
$this->assertSame( $rev->isMinor(), $data['minor'] );
$this->assertSame(
wfTimestampOrNull( TS_ISO_8601, $rev->getTimestamp() ),
$data['timestamp']
);
$this->assertSame( $rev->getPage()->getId(), $data['page']['id'] );
$this->assertSame( $rev->getPage()->getDBkey(), $data['page']['key'] ); // assume main namespace
$this->assertSame(
$rev->getPageAsLinkTarget()->getText(),
$data['page']['title']
); // assume main namespace
$this->assertSame( CONTENT_MODEL_WIKITEXT, $data['content_model'] );
$this->assertSame( 'https://example.com/rights', $data['license']['url'] );
$this->assertSame( 'some rights', $data['license']['title'] );
$this->assertSame( $rev->getComment()->text, $data['comment'] );
$this->assertSame( $rev->getUser()->getId(), $data['user']['id'] );
$this->assertSame( $rev->getUser()->getName(), $data['user']['name'] );
}
}
|