MediaWiki  1.30.0
backup_LogTest.php
Go to the documentation of this file.
1 <?php
15 
16  // We'll add several log entries and users for this test. The following
17  // variables hold the corresponding ids.
18  private $userId1, $userId2;
19  private $logId1, $logId2, $logId3;
20 
34  private function addLogEntry( $type, $subtype, User $user, $ns, $title,
35  $comment = null, $parameters = null
36  ) {
37  $logEntry = new ManualLogEntry( $type, $subtype );
38  $logEntry->setPerformer( $user );
39  $logEntry->setTarget( Title::newFromText( $title, $ns ) );
40  if ( $comment !== null ) {
41  $logEntry->setComment( $comment );
42  }
43  if ( $parameters !== null ) {
44  $logEntry->setParameters( $parameters );
45  }
46 
47  return $logEntry->insert();
48  }
49 
50  function addDBData() {
51  $this->tablesUsed[] = 'logging';
52  $this->tablesUsed[] = 'user';
53 
54  try {
55  $user1 = User::newFromName( 'BackupDumperLogUserA' );
56  $this->userId1 = $user1->getId();
57  if ( $this->userId1 === 0 ) {
58  $user1->addToDatabase();
59  $this->userId1 = $user1->getId();
60  }
61  $this->assertGreaterThan( 0, $this->userId1 );
62 
63  $user2 = User::newFromName( 'BackupDumperLogUserB' );
64  $this->userId2 = $user2->getId();
65  if ( $this->userId2 === 0 ) {
66  $user2->addToDatabase();
67  $this->userId2 = $user2->getId();
68  }
69  $this->assertGreaterThan( 0, $this->userId2 );
70 
71  $this->logId1 = $this->addLogEntry( 'type', 'subtype',
72  $user1, NS_MAIN, "PageA" );
73  $this->assertGreaterThan( 0, $this->logId1 );
74 
75  $this->logId2 = $this->addLogEntry( 'supress', 'delete',
76  $user2, NS_TALK, "PageB", "SomeComment" );
77  $this->assertGreaterThan( 0, $this->logId2 );
78 
79  $this->logId3 = $this->addLogEntry( 'move', 'delete',
80  $user2, NS_MAIN, "PageA", "SomeOtherComment",
81  [ 'key1' => 1, 3 => 'value3' ] );
82  $this->assertGreaterThan( 0, $this->logId3 );
83  } catch ( Exception $e ) {
84  // We'd love to pass $e directly. However, ... see
85  // documentation of exceptionFromAddDBData in
86  // DumpTestCase
87  $this->exceptionFromAddDBData = $e;
88  }
89  }
90 
104  private function assertLogItem( $id, $user_name, $user_id, $comment, $type,
105  $subtype, $title, $parameters = []
106  ) {
107  $this->assertNodeStart( "logitem" );
108  $this->skipWhitespace();
109 
110  $this->assertTextNode( "id", $id );
111  $this->assertTextNode( "timestamp", false );
112 
113  $this->assertNodeStart( "contributor" );
114  $this->skipWhitespace();
115  $this->assertTextNode( "username", $user_name );
116  $this->assertTextNode( "id", $user_id );
117  $this->assertNodeEnd( "contributor" );
118  $this->skipWhitespace();
119 
120  if ( $comment !== null ) {
121  $this->assertTextNode( "comment", $comment );
122  }
123  $this->assertTextNode( "type", $type );
124  $this->assertTextNode( "action", $subtype );
125  $this->assertTextNode( "logtitle", $title );
126 
127  $this->assertNodeStart( "params" );
128  $parameters_xml = unserialize( $this->xml->value );
129  $this->assertEquals( $parameters, $parameters_xml );
130  $this->assertTrue( $this->xml->read(), "Skipping past processed text of params" );
131  $this->assertNodeEnd( "params" );
132  $this->skipWhitespace();
133 
134  $this->assertNodeEnd( "logitem" );
135  $this->skipWhitespace();
136  }
137 
138  function testPlain() {
140 
141  // Preparing the dump
142  $fname = $this->getNewTempFile();
143 
144  $dumper = new DumpBackup( [ '--output=file:' . $fname ] );
145  $dumper->startId = $this->logId1;
146  $dumper->endId = $this->logId3 + 1;
147  $dumper->reporting = false;
148  $dumper->setDB( $this->db );
149 
150  // Performing the dump
151  $dumper->dump( WikiExporter::LOGS, WikiExporter::TEXT );
152 
153  // Analyzing the dumped data
154  $this->assertDumpStart( $fname );
155 
156  $this->assertLogItem( $this->logId1, "BackupDumperLogUserA",
157  $this->userId1, null, "type", "subtype", "PageA" );
158 
159  $this->assertNotNull( $wgContLang, "Content language object validation" );
160  $namespace = $wgContLang->getNsText( NS_TALK );
161  $this->assertInternalType( 'string', $namespace );
162  $this->assertGreaterThan( 0, strlen( $namespace ) );
163  $this->assertLogItem( $this->logId2, "BackupDumperLogUserB",
164  $this->userId2, "SomeComment", "supress", "delete",
165  $namespace . ":PageB" );
166 
167  $this->assertLogItem( $this->logId3, "BackupDumperLogUserB",
168  $this->userId2, "SomeOtherComment", "move", "delete",
169  "PageA", [ 'key1' => 1, 3 => 'value3' ] );
170 
171  $this->assertDumpEnd();
172  }
173 
176 
177  $this->checkHasGzip();
178 
179  // Preparing the dump
180  $fname = $this->getNewTempFile();
181 
182  $dumper = new DumpBackup();
183  $dumper->loadWithArgv( [ '--logs', '--output=gzip:' . $fname,
184  '--reporting=2' ] );
185  $dumper->startId = $this->logId1;
186  $dumper->endId = $this->logId3 + 1;
187  $dumper->setDB( $this->db );
188 
189  // xmldumps-backup demands reporting, although this is currently not
190  // implemented in BackupDumper, when dumping logging data. We
191  // nevertheless capture the output of the dump process already now,
192  // to be able to alert (once dumping produces reports) that this test
193  // needs updates.
194  $dumper->stderr = fopen( 'php://output', 'a' );
195  if ( $dumper->stderr === false ) {
196  $this->fail( "Could not open stream for stderr" );
197  }
198 
199  // Performing the dump
200  $dumper->execute();
201 
202  $this->assertTrue( fclose( $dumper->stderr ), "Closing stderr handle" );
203 
204  // Analyzing the dumped data
205  $this->gunzip( $fname );
206 
207  $this->assertDumpStart( $fname );
208 
209  $this->assertLogItem( $this->logId1, "BackupDumperLogUserA",
210  $this->userId1, null, "type", "subtype", "PageA" );
211 
212  $this->assertNotNull( $wgContLang, "Content language object validation" );
213  $namespace = $wgContLang->getNsText( NS_TALK );
214  $this->assertInternalType( 'string', $namespace );
215  $this->assertGreaterThan( 0, strlen( $namespace ) );
216  $this->assertLogItem( $this->logId2, "BackupDumperLogUserB",
217  $this->userId2, "SomeComment", "supress", "delete",
218  $namespace . ":PageB" );
219 
220  $this->assertLogItem( $this->logId3, "BackupDumperLogUserB",
221  $this->userId2, "SomeOtherComment", "move", "delete",
222  "PageA", [ 'key1' => 1, 3 => 'value3' ] );
223 
224  $this->assertDumpEnd();
225 
226  // Currently, no reporting is implemented. Alert via failure, once
227  // this changes.
228  // If reporting for log dumps has been implemented, please update
229  // the following statement to catch good output
230  $this->expectOutputString( '' );
231  }
232 }
$user
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
Definition: hooks.txt:244
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:268
BackupDumperLoggerTest\addLogEntry
addLogEntry( $type, $subtype, User $user, $ns, $title, $comment=null, $parameters=null)
adds a log entry to the database.
Definition: backup_LogTest.php:34
BackupDumperLoggerTest\$userId1
$userId1
Definition: backup_LogTest.php:18
BackupDumperLoggerTest
Tests for log dumps of BackupDumper.
Definition: backup_LogTest.php:14
DumpTestCase
Base TestCase for dumps.
Definition: DumpTestCase.php:6
DumpBackup
Definition: dumpBackup.php:30
$fname
if(!defined( 'MEDIAWIKI')) $fname
This file is not a valid entry point, perform no further processing unless MEDIAWIKI is defined.
Definition: Setup.php:36
unserialize
unserialize( $serialized)
Definition: ApiMessage.php:185
DumpTestCase\assertTextNode
assertTextNode( $name, $text, $skip_ws=true)
Asserts that the xml reader is at an element of given tag that contains a given text,...
Definition: DumpTestCase.php:274
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:550
BackupDumperLoggerTest\addDBData
addDBData()
Stub.
Definition: backup_LogTest.php:50
DumpTestCase\assertDumpEnd
assertDumpEnd( $name="mediawiki")
Asserts that the xml reader is at the final closing tag of an xml file and closes the reader.
Definition: DumpTestCase.php:210
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
NS_MAIN
const NS_MAIN
Definition: Defines.php:65
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:932
DumpTestCase\assertNodeEnd
assertNodeEnd( $name, $skip=true)
Asserts that the xml reader is at an closing element of given name, and optionally skips past it.
Definition: DumpTestCase.php:255
WikiExporter\TEXT
const TEXT
Definition: WikiExporter.php:58
BackupDumperLoggerTest\testPlain
testPlain()
Definition: backup_LogTest.php:138
BackupDumperLoggerTest\assertLogItem
assertLogItem( $id, $user_name, $user_id, $comment, $type, $subtype, $title, $parameters=[])
asserts that the xml reader is at the beginning of a log entry and skips over it while analyzing it.
Definition: backup_LogTest.php:104
MediaWikiTestCase\getNewTempFile
getNewTempFile()
Obtains a new temporary file name.
Definition: MediaWikiTestCase.php:457
DumpTestCase\assertNodeStart
assertNodeStart( $name, $skip=true)
Asserts that the xml reader is at an element of given name, and optionally skips past it.
Definition: DumpTestCase.php:239
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
BackupDumperLoggerTest\testXmlDumpsBackupUseCaseLogging
testXmlDumpsBackupUseCaseLogging()
Definition: backup_LogTest.php:174
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:2141
DumpTestCase\checkHasGzip
checkHasGzip()
Skip the test if 'gzip' is not in $PATH.
Definition: DumpTestCase.php:36
DumpTestCase\assertDumpStart
assertDumpStart( $fname, $skip_siteinfo=true)
Opens an XML file to analyze and optionally skips past siteinfo.
Definition: DumpTestCase.php:193
WikiExporter\LOGS
const LOGS
Definition: WikiExporter.php:52
BackupDumperLoggerTest\$userId2
$userId2
Definition: backup_LogTest.php:18
BackupDumperLoggerTest\$logId3
$logId3
Definition: backup_LogTest.php:19
DumpTestCase\gunzip
gunzip( $fname)
gunzips the given file and stores the result in the original file name
Definition: DumpTestCase.php:86
ManualLogEntry
Class for creating log entries manually, to inject them into the database.
Definition: LogEntry.php:400
NS_TALK
const NS_TALK
Definition: Defines.php:66
BackupDumperLoggerTest\$logId1
$logId1
Definition: backup_LogTest.php:19
DumpTestCase\skipWhitespace
skipWhitespace()
Steps the xml reader over white space.
Definition: DumpTestCase.php:223
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:51
BackupDumperLoggerTest\$logId2
$logId2
Definition: backup_LogTest.php:19
$wgContLang
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang
Definition: design.txt:56
$type
$type
Definition: testCompression.php:48