Drop archive.ar_text and ar_flags
[lhc/web/wiklou.git] / tests / phpunit / includes / PageArchiveTest.php
1 <?php
2
3 /**
4 * Test class for page archiving.
5 *
6 * @group ContentHandler
7 * @group Database
8 * ^--- important, causes temporary tables to be used instead of the real database
9 *
10 * @group medium
11 * ^--- important, causes tests not to fail with timeout
12 */
13 class PageArchiveTest extends MediaWikiTestCase {
14
15 /**
16 * @var PageArchive $archivedPage
17 */
18 private $archivedPage;
19
20 /**
21 * A logged out user who edited the page before it was archived.
22 * @var string $ipEditor
23 */
24 private $ipEditor;
25
26 /**
27 * Revision ID of the IP edit
28 * @var int $ipRevId
29 */
30 private $ipRevId;
31
32 function __construct( $name = null, array $data = [], $dataName = '' ) {
33 parent::__construct( $name, $data, $dataName );
34
35 $this->tablesUsed = array_merge(
36 $this->tablesUsed,
37 [
38 'page',
39 'revision',
40 'ip_changes',
41 'text',
42 'archive',
43 'recentchanges',
44 'logging',
45 'page_props',
46 ]
47 );
48 }
49
50 protected function setUp() {
51 parent::setUp();
52
53 $this->setMwGlobals( 'wgCommentTableSchemaMigrationStage', MIGRATION_OLD );
54 $this->setMwGlobals( 'wgActorTableSchemaMigrationStage', MIGRATION_OLD );
55 $this->overrideMwServices();
56
57 // First create our dummy page
58 $page = Title::newFromText( 'PageArchiveTest_thePage' );
59 $page = new WikiPage( $page );
60 $content = ContentHandler::makeContent(
61 'testing',
62 $page->getTitle(),
63 CONTENT_MODEL_WIKITEXT
64 );
65 $page->doEditContent( $content, 'testing', EDIT_NEW );
66
67 // Insert IP revision
68 $this->ipEditor = '2600:387:ed7:947e:8c16:a1ad:dd34:1dd7';
69 $rev = new Revision( [
70 'text' => 'Lorem Ipsum',
71 'comment' => 'just a test',
72 'page' => $page->getId(),
73 'user_text' => $this->ipEditor,
74 ] );
75 $dbw = wfGetDB( DB_MASTER );
76 $this->ipRevId = $rev->insertOn( $dbw );
77
78 // Delete the page
79 $page->doDeleteArticleReal( 'Just a test deletion' );
80
81 $this->archivedPage = new PageArchive( $page->getTitle() );
82 }
83
84 /**
85 * @covers PageArchive::undelete
86 * @covers PageArchive::undeleteRevisions
87 */
88 public function testUndeleteRevisions() {
89 // First make sure old revisions are archived
90 $dbr = wfGetDB( DB_REPLICA );
91 $arQuery = Revision::getArchiveQueryInfo();
92 $res = $dbr->select(
93 $arQuery['tables'],
94 $arQuery['fields'],
95 [ 'ar_rev_id' => $this->ipRevId ],
96 __METHOD__,
97 [],
98 $arQuery['joins']
99 );
100 $row = $res->fetchObject();
101 $this->assertEquals( $this->ipEditor, $row->ar_user_text );
102
103 // Should not be in revision
104 $res = $dbr->select( 'revision', '1', [ 'rev_id' => $this->ipRevId ] );
105 $this->assertFalse( $res->fetchObject() );
106
107 // Should not be in ip_changes
108 $res = $dbr->select( 'ip_changes', '1', [ 'ipc_rev_id' => $this->ipRevId ] );
109 $this->assertFalse( $res->fetchObject() );
110
111 // Restore the page
112 $this->archivedPage->undelete( [] );
113
114 // Should be back in revision
115 $revQuery = Revision::getQueryInfo();
116 $res = $dbr->select(
117 $revQuery['tables'],
118 $revQuery['fields'],
119 [ 'rev_id' => $this->ipRevId ],
120 __METHOD__,
121 [],
122 $revQuery['joins']
123 );
124 $row = $res->fetchObject();
125 $this->assertEquals( $this->ipEditor, $row->rev_user_text );
126
127 // Should be back in ip_changes
128 $res = $dbr->select( 'ip_changes', [ 'ipc_hex' ], [ 'ipc_rev_id' => $this->ipRevId ] );
129 $row = $res->fetchObject();
130 $this->assertEquals( IP::toHex( $this->ipEditor ), $row->ipc_hex );
131 }
132
133 /**
134 * @covers PageArchive::listRevisions
135 */
136 public function testListRevisions() {
137 $this->setMwGlobals( 'wgCommentTableSchemaMigrationStage', MIGRATION_OLD );
138 $this->overrideMwServices();
139
140 $revisions = $this->archivedPage->listRevisions();
141 $this->assertEquals( 2, $revisions->numRows() );
142
143 // Get the rows as arrays
144 $row1 = (array)$revisions->current();
145 $row2 = (array)$revisions->next();
146 // Unset the timestamps (we assume they will be right...
147 $this->assertInternalType( 'string', $row1['ar_timestamp'] );
148 $this->assertInternalType( 'string', $row2['ar_timestamp'] );
149 unset( $row1['ar_timestamp'] );
150 unset( $row2['ar_timestamp'] );
151
152 $this->assertEquals(
153 [
154 'ar_minor_edit' => '0',
155 'ar_user' => '0',
156 'ar_user_text' => '2600:387:ed7:947e:8c16:a1ad:dd34:1dd7',
157 'ar_actor' => null,
158 'ar_len' => '11',
159 'ar_deleted' => '0',
160 'ar_rev_id' => '3',
161 'ar_sha1' => '0qdrpxl537ivfnx4gcpnzz0285yxryy',
162 'ar_page_id' => '2',
163 'ar_comment_text' => 'just a test',
164 'ar_comment_data' => null,
165 'ar_comment_cid' => null,
166 'ar_content_format' => null,
167 'ar_content_model' => null,
168 'ts_tags' => null,
169 'ar_id' => '2',
170 'ar_namespace' => '0',
171 'ar_title' => 'PageArchiveTest_thePage',
172 'ar_text_id' => '3',
173 'ar_parent_id' => '2',
174 ],
175 $row1
176 );
177 $this->assertEquals(
178 [
179 'ar_minor_edit' => '0',
180 'ar_user' => '0',
181 'ar_user_text' => '127.0.0.1',
182 'ar_actor' => null,
183 'ar_len' => '7',
184 'ar_deleted' => '0',
185 'ar_rev_id' => '2',
186 'ar_sha1' => 'pr0s8e18148pxhgjfa0gjrvpy8fiyxc',
187 'ar_page_id' => '2',
188 'ar_comment_text' => 'testing',
189 'ar_comment_data' => null,
190 'ar_comment_cid' => null,
191 'ar_content_format' => null,
192 'ar_content_model' => null,
193 'ts_tags' => null,
194 'ar_id' => '1',
195 'ar_namespace' => '0',
196 'ar_title' => 'PageArchiveTest_thePage',
197 'ar_text_id' => '2',
198 'ar_parent_id' => '0',
199 ],
200 $row2
201 );
202 }
203
204 /**
205 * @covers PageArchive::listPagesBySearch
206 */
207 public function testListPagesBySearch() {
208 $pages = PageArchive::listPagesBySearch( 'PageArchiveTest_thePage' );
209 $this->assertSame( 1, $pages->numRows() );
210
211 $page = (array)$pages->current();
212
213 $this->assertSame(
214 [
215 'ar_namespace' => '0',
216 'ar_title' => 'PageArchiveTest_thePage',
217 'count' => '2',
218 ],
219 $page
220 );
221 }
222
223 /**
224 * @covers PageArchive::listPagesBySearch
225 */
226 public function testListPagesByPrefix() {
227 $pages = PageArchive::listPagesByPrefix( 'PageArchiveTest' );
228 $this->assertSame( 1, $pages->numRows() );
229
230 $page = (array)$pages->current();
231
232 $this->assertSame(
233 [
234 'ar_namespace' => '0',
235 'ar_title' => 'PageArchiveTest_thePage',
236 'count' => '2',
237 ],
238 $page
239 );
240 }
241
242 /**
243 * @covers PageArchive::getTextFromRow
244 */
245 public function testGetTextFromRow() {
246 $row = (object)[ 'ar_text_id' => 2 ];
247 $text = $this->archivedPage->getTextFromRow( $row );
248 $this->assertSame( 'testing', $text );
249 }
250
251 /**
252 * @covers PageArchive::getLastRevisionText
253 */
254 public function testGetLastRevisionText() {
255 $text = $this->archivedPage->getLastRevisionText();
256 $this->assertSame( 'Lorem Ipsum', $text );
257 }
258
259 /**
260 * @covers PageArchive::isDeleted
261 */
262 public function testIsDeleted() {
263 $this->assertTrue( $this->archivedPage->isDeleted() );
264 }
265 }