32 function __construct( $name =
null, array $data = [], $dataName =
'' ) {
33 parent::__construct( $name, $data, $dataName );
35 $this->tablesUsed = array_merge(
58 $page = Title::newFromText(
'PageArchiveTest_thePage' );
60 $content = ContentHandler::makeContent(
65 $page->doEditContent( $content,
'testing',
EDIT_NEW );
68 $this->ipEditor =
'2600:387:ed7:947e:8c16:a1ad:dd34:1dd7';
70 'text' =>
'Lorem Ipsum',
71 'comment' =>
'just a test',
72 'page' => $page->getId(),
73 'user_text' => $this->ipEditor,
76 $this->ipRevId =
$rev->insertOn( $dbw );
79 $page->doDeleteArticleReal(
'Just a test deletion' );
81 $this->archivedPage =
new PageArchive( $page->getTitle() );
91 $arQuery = Revision::getArchiveQueryInfo();
95 [
'ar_rev_id' => $this->ipRevId ],
100 $row =
$res->fetchObject();
101 $this->assertEquals( $this->ipEditor, $row->ar_user_text );
104 $res =
$dbr->select(
'revision',
'1', [
'rev_id' => $this->ipRevId ] );
105 $this->assertFalse(
$res->fetchObject() );
108 $res =
$dbr->select(
'ip_changes',
'1', [
'ipc_rev_id' => $this->ipRevId ] );
109 $this->assertFalse(
$res->fetchObject() );
112 $this->archivedPage->undelete( [] );
119 [
'rev_id' => $this->ipRevId ],
124 $row =
$res->fetchObject();
125 $this->assertEquals( $this->ipEditor, $row->rev_user_text );
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 );
140 $revisions = $this->archivedPage->listRevisions();
141 $this->assertEquals( 2, $revisions->numRows() );
144 $row1 = (
array)$revisions->current();
145 $row2 = (
array)$revisions->next();
147 $this->assertInternalType(
'string', $row1[
'ar_timestamp'] );
148 $this->assertInternalType(
'string', $row2[
'ar_timestamp'] );
149 unset( $row1[
'ar_timestamp'] );
150 unset( $row2[
'ar_timestamp'] );
154 'ar_minor_edit' =>
'0',
156 'ar_user_text' =>
'2600:387:ed7:947e:8c16:a1ad:dd34:1dd7',
161 'ar_sha1' =>
'0qdrpxl537ivfnx4gcpnzz0285yxryy',
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,
170 'ar_namespace' =>
'0',
171 'ar_title' =>
'PageArchiveTest_thePage',
173 'ar_parent_id' =>
'2',
179 'ar_minor_edit' =>
'0',
181 'ar_user_text' =>
'127.0.0.1',
186 'ar_sha1' =>
'pr0s8e18148pxhgjfa0gjrvpy8fiyxc',
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,
195 'ar_namespace' =>
'0',
196 'ar_title' =>
'PageArchiveTest_thePage',
198 'ar_parent_id' =>
'0',
209 $this->assertSame( 1, $pages->numRows() );
211 $page = (
array)$pages->current();
215 'ar_namespace' =>
'0',
216 'ar_title' =>
'PageArchiveTest_thePage',
228 $this->assertSame( 1, $pages->numRows() );
230 $page = (
array)$pages->current();
234 'ar_namespace' =>
'0',
235 'ar_title' =>
'PageArchiveTest_thePage',
246 $row = (
object)[
'ar_text_id' => 2 ];
247 $text = $this->archivedPage->getTextFromRow( $row );
248 $this->assertSame(
'testing', $text );
255 $text = $this->archivedPage->getLastRevisionText();
256 $this->assertSame(
'Lorem Ipsum', $text );
263 $this->assertTrue( $this->archivedPage->isDeleted() );
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Test class for page archiving.
testListPagesByPrefix()
PageArchive::listPagesBySearch.
testGetTextFromRow()
PageArchive::getTextFromRow.
$ipEditor
A logged out user who edited the page before it was archived.
testListRevisions()
PageArchive::listRevisions.
testIsDeleted()
PageArchive::isDeleted.
testGetLastRevisionText()
PageArchive::getLastRevisionText.
__construct( $name=null, array $data=[], $dataName='')
$ipRevId
Revision ID of the IP edit.
testUndeleteRevisions()
PageArchive::undelete PageArchive::undeleteRevisions.
testListPagesBySearch()
PageArchive::listPagesBySearch.
Used to show archived pages and eventually restore them.
static listPagesBySearch( $term)
List deleted pages recorded in the archive matching the given term, using search engine archive.
static listPagesByPrefix( $prefix)
List deleted pages recorded in the archive table matching the given title prefix.
Class representing a MediaWiki article and history.
the array() calling protocol came about after MediaWiki 1.4rc1.
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
globals will be eliminated from MediaWiki replaced by an application object which would be passed to constructors Whether that would be an convenient solution remains to be but certainly PHP makes such object oriented programming models easier than they were in previous versions For the time being MediaWiki programmers will have to work in an environment with some global context At the time of globals were initialised on startup by MediaWiki of these were configuration which are documented in DefaultSettings php There is no comprehensive documentation for the remaining however some of the most important ones are listed below They are typically initialised either in index php or in Setup php For a description of the see design txt $wgTitle Title object created from the request URL $wgOut OutputPage object for HTTP response $wgUser User object for the user associated with the current request $wgLang Language object selected by user preferences $wgContLang Language object associated with the wiki being viewed $wgParser Parser object Parser extensions register their hooks here $wgRequest WebRequest object
const CONTENT_MODEL_WIKITEXT