MediaWiki REL1_33
|
Test cases in RevisionTest should not interact with the Database. More...
Private Member Functions | |
getBlobStore () | |
getRevisionStore () | |
getWANObjectCache () | |
mockBlobStoreFactory ( $blobStore) | |
Additional Inherited Members | |
Static Public Member Functions inherited from MediaWikiTestCase | |
static | getMutableTestUser ( $groups=[]) |
Convenience method for getting a mutable test user. | |
static | getTestPrefixFor (IDatabase $db) |
static | getTestSysop () |
Convenience method for getting an immutable admin test user. | |
static | getTestUser ( $groups=[]) |
Convenience method for getting an immutable test user. | |
static | installMockMwServices (Config $configOverrides=null) |
Creates a new "mock" MediaWikiServices instance, and installs it. | |
static | listTables (IMaintainableDatabase $db) |
static | prepareServices (Config $bootstrapConfig) |
static | resetNonServiceCaches () |
Resets some non-service singleton instances and other static caches. | |
static | restoreMwServices () |
Restores the original, non-mock MediaWikiServices instance. | |
static | setUpBeforeClass () |
static | setupTestDB (IMaintainableDatabase $db, $prefix) |
Creates an empty skeleton of the wiki database by cloning its structure to equivalent tables using the given $prefix. | |
static | teardownTestDB () |
Restores MediaWiki to using the table set (table prefix) it was using before setupTestDB() was called. | |
static | wfResetOutputBuffersBarrier ( $buffer) |
Used as a marker to prevent wfResetOutputBuffers from breaking PHPUnit. | |
Public Attributes inherited from MediaWikiTestCase | |
const | DB_PREFIX = 'unittest_' |
Table name prefixes. | |
const | ORA_DB_PREFIX = 'ut_' |
Static Public Attributes inherited from MediaWikiTestCase | |
static TestUser[] | $users |
Protected Member Functions inherited from MediaWikiTestCase | |
addCoreDBData () | |
addTmpFiles ( $files) | |
arrayWrap (array $elements) | |
Utility method taking an array of elements and wrapping each element in its own array. | |
assertArrayEquals (array $expected, array $actual, $ordered=false, $named=false) | |
Assert that two arrays are equal. | |
assertFileContains ( $fileName, $actualData, $createIfMissing=false, $msg='') | |
Check whether file contains given data. | |
assertHTMLEquals ( $expected, $actual, $msg='') | |
Put each HTML element on its own line and then equals() the results. | |
assertSelect ( $table, $fields, $condition, array $expectedRows, array $options=[], array $join_conds=[]) | |
Asserts that the given database query yields the rows given by $expectedRows. | |
assertType ( $type, $actual, $message='') | |
Asserts the type of the provided value. | |
assertTypeOrValue ( $type, $actual, $value=false, $message='') | |
Asserts that the provided variable is of the specified internal type or equals the $value argument. | |
checkDbIsSupported () | |
checkPHPExtension ( $extName) | |
Check if $extName is a loaded PHP extension, will skip the test whenever it is not loaded. | |
editPage ( $pageName, $text, $summary='', $defaultNs=NS_MAIN) | |
Edits or creates a page/revision. | |
ensureMockDatabaseConnection (IDatabase $db) | |
getDefaultWikitextNS () | |
Returns the ID of a namespace that defaults to Wikitext. | |
getExistingTestPage ( $title=null) | |
Returns a WikiPage representing an existing page. | |
getNewTempDirectory () | |
obtains a new temporary directory | |
getNewTempFile () | |
Obtains a new temporary file name. | |
getNonexistingTestPage ( $title=null) | |
Returns a WikiPage representing a non-existing page. | |
getSchemaOverrides (IMaintainableDatabase $db) | |
Stub. | |
insertPage ( $pageName, $text='Sample page for unit test.', $namespace=null, User $user=null) | |
Insert a new page. | |
isTestInDatabaseGroup () | |
isWikitextNS ( $ns) | |
Returns true if the given namespace defaults to Wikitext according to $wgNamespaceContentModels. | |
markTestSkippedIfDbType ( $type) | |
Skip the test if using the specified database type. | |
markTestSkippedIfNoDiff3 () | |
Check, if $wgDiff3 is set and ready to merge Will mark the calling test as skipped, if not ready. | |
mergeMwGlobalArrayValue ( $name, $values) | |
Merges the given values into a MW global array variable. | |
objectAssociativeSort (array &$array) | |
Does an associative sort that works for objects. | |
overrideMwServices (Config $configOverrides=null, array $services=[]) | |
Stashes the global instance of MediaWikiServices, and installs a new one, allowing test cases to override settings and services. | |
revisionDelete ( $rev, array $value=[Revision::DELETED_TEXT=> 1], $comment='') | |
Revision-deletes a revision. | |
setIniSetting ( $name, $value) | |
Set an ini setting for the duration of the test. | |
setLogger ( $channel, LoggerInterface $logger) | |
Sets the logger for a specified channel, for the duration of the test. | |
setMwGlobals ( $pairs, $value=null) | |
Sets a global, maintaining a stashed version of the previous global to be restored in tearDown. | |
setService ( $name, $object) | |
Sets a service, maintaining a stashed version of the previous service to be restored in tearDown. | |
setTemporaryHook ( $hookName, $handler) | |
Create a temporary hook handler which will be reset by tearDown. | |
stashMwGlobals ( $globalKeys) | |
Stashes the global, will be restored in tearDown() | |
tearDown () | |
truncateTable ( $tableName, IDatabase $db=null) | |
Empties the given table and resets any auto-increment counters. | |
Static Protected Member Functions inherited from MediaWikiTestCase | |
static | getExternalStoreDatabaseConnections () |
Gets master database connections for all of the ExternalStoreDB stores configured in $wgDefaultExternalStore. | |
static | isUsingExternalStoreDB () |
Check whether ExternalStoreDB is being used. | |
static | setupDatabaseWithTestPrefix (IMaintainableDatabase $db, $prefix=null) |
Setups a database with cloned tables using the given prefix. | |
static | setupExternalStoreTestDBs ( $testPrefix=null) |
Clones the External Store database(s) for testing. | |
static | stripStringKeys (&$r) |
Utility function for eliminating all string keys from an array. | |
Protected Attributes inherited from MediaWikiTestCase | |
Database | $db |
Primary database. | |
array | $supportedDBs |
array | $tablesUsed = [] |
Test cases in RevisionTest should not interact with the Database.
For test cases that need Database interaction see RevisionDbTestBase.
Definition at line 18 of file RevisionTest.php.
|
private |
Definition at line 436 of file RevisionTest.php.
References $cache, and getWANObjectCache().
Referenced by getRevisionStore(), testCompressRevisionTextUtf8Gzip(), testDecompressRevisionText(), testGetRevisionWithGzipAndLegacyEncoding(), and testGetRevisionWithLegacyEncoding().
RevisionTest::getMockTitle | ( | $model = CONTENT_MODEL_WIKITEXT | ) |
string | $model |
Definition at line 48 of file RevisionTest.php.
References MediaWikiTestCase\getDefaultWikitextNS().
Referenced by testConstructFromArray(), testConstructFromArray_userSetAsExpected(), testConstructFromArrayThrowsExceptions(), testConstructFromEmptyArray(), testConstructFromRow(), testGetContent(), testGetContent_failure(), testGetId(), testGetParentId(), testGetSha1(), testGetSha1_failure(), testGetSize(), testGetSize_failure(), testLoadFromTitle(), testSetId(), and testSetUserIdAndName().
|
private |
Definition at line 465 of file RevisionTest.php.
References $cache, getBlobStore(), getWANObjectCache(), and MIGRATION_OLD.
|
private |
Definition at line 429 of file RevisionTest.php.
Referenced by getBlobStore(), getRevisionStore(), and testGetRevisionText_external_oldId().
|
private |
Definition at line 448 of file RevisionTest.php.
Referenced by testCompressRevisionTextUtf8Gzip(), testDecompressRevisionText(), testGetRevisionText_external_oldId(), testGetRevisionWithGzipAndLegacyEncoding(), and testGetRevisionWithLegacyEncoding().
RevisionTest::provideConstructFromArray | ( | ) |
Definition at line 28 of file RevisionTest.php.
References CONTENT_MODEL_JAVASCRIPT.
RevisionTest::provideConstructFromArray_userSetAsExpected | ( | ) |
Definition at line 103 of file RevisionTest.php.
RevisionTest::provideConstructFromArrayThrowsExceptions | ( | ) |
Definition at line 159 of file RevisionTest.php.
RevisionTest::provideConstructFromRow | ( | ) |
Definition at line 209 of file RevisionTest.php.
References $rev, and Revision\DELETED_TEXT.
RevisionTest::provideDecompressRevisionText | ( | ) |
Definition at line 669 of file RevisionTest.php.
References false, and serialize().
RevisionTest::provideGetId | ( | ) |
Definition at line 295 of file RevisionTest.php.
References null.
RevisionTest::provideGetParentId | ( | ) |
Definition at line 346 of file RevisionTest.php.
References null.
RevisionTest::provideGetRevisionText | ( | ) |
Definition at line 361 of file RevisionTest.php.
References object.
RevisionTest::provideGetRevisionTextWithGzipAndLegacyEncoding | ( | ) |
Definition at line 520 of file RevisionTest.php.
References object.
RevisionTest::provideGetRevisionTextWithLegacyEncoding | ( | ) |
Definition at line 487 of file RevisionTest.php.
References object.
RevisionTest::provideGetRevisionTextWithZlibExtension | ( | ) |
Definition at line 385 of file RevisionTest.php.
References object.
RevisionTest::provideGetRevisionTextWithZlibExtension_badData | ( | ) |
Definition at line 404 of file RevisionTest.php.
References object.
RevisionTest::provideSetId | ( | ) |
Definition at line 315 of file RevisionTest.php.
RevisionTest::provideSetUserIdAndName | ( | ) |
Definition at line 330 of file RevisionTest.php.
RevisionTest::provideTestGetRevisionText_external_returnsFalseWhenNotEnoughUrlParts | ( | ) |
Definition at line 780 of file RevisionTest.php.
RevisionTest::provideTestGetRevisionText_returnsDecompressedTextFieldWhenNotExternal | ( | ) |
Definition at line 743 of file RevisionTest.php.
References object.
RevisionTest::setUp | ( | ) |
Reimplemented from MediaWikiTestCase.
Definition at line 20 of file RevisionTest.php.
References SCHEMA_COMPAT_READ_NEW, SCHEMA_COMPAT_WRITE_BOTH, and MediaWikiTestCase\setMwGlobals().
RevisionTest::testCompressRevisionTextUtf8 | ( | ) |
Revision::compressRevisionText.
Definition at line 563 of file RevisionTest.php.
References Revision\compressRevisionText(), and Revision\getRevisionText().
RevisionTest::testCompressRevisionTextUtf8Gzip | ( | ) |
Revision::compressRevisionText.
Definition at line 580 of file RevisionTest.php.
References MediaWikiTestCase\checkPHPExtension(), Revision\compressRevisionText(), getBlobStore(), Revision\getRevisionText(), mockBlobStoreFactory(), and MediaWikiTestCase\setService().
RevisionTest::testConstructFromArray | ( | $rowArray | ) |
provideConstructFromArray Revision::__construct \MediaWiki\Revision\RevisionStore::newMutableRevisionFromArray
Definition at line 76 of file RevisionTest.php.
References $rev, CONTENT_MODEL_JAVASCRIPT, and getMockTitle().
RevisionTest::testConstructFromArray_userSetAsExpected | ( | array | $rowArray, |
$expectedUserId, | |||
$expectedUserName | |||
) |
provideConstructFromArray_userSetAsExpected Revision::__construct \MediaWiki\Revision\RevisionStore::newMutableRevisionFromArray
array | $rowArray | |
mixed | $expectedUserId | null to expect the current wgUser ID |
mixed | $expectedUserName | null to expect the current wgUser name |
Definition at line 140 of file RevisionTest.php.
References $rev, getMockTitle(), MediaWikiTestCase\getTestUser(), and MediaWikiTestCase\setMwGlobals().
RevisionTest::testConstructFromArrayThrowsExceptions | ( | $rowArray, | |
Exception | $expectedException | ||
) |
provideConstructFromArrayThrowsExceptions Revision::__construct \MediaWiki\Revision\RevisionStore::newMutableRevisionFromArray
Definition at line 189 of file RevisionTest.php.
References getMockTitle().
RevisionTest::testConstructFromArrayWithBadPageId | ( | ) |
Revision::__construct \MediaWiki\Revision\RevisionStore::newMutableRevisionFromArray.
Definition at line 96 of file RevisionTest.php.
References $rev.
RevisionTest::testConstructFromEmptyArray | ( | ) |
Revision::__construct \MediaWiki\Revision\RevisionStore::newMutableRevisionFromArray.
Definition at line 87 of file RevisionTest.php.
References $rev, and getMockTitle().
RevisionTest::testConstructFromNothing | ( | ) |
Revision::__construct \MediaWiki\Revision\RevisionStore::newMutableRevisionFromArray.
Definition at line 202 of file RevisionTest.php.
RevisionTest::testConstructFromRow | ( | array | $arrayData, |
callable | $assertions | ||
) |
provideConstructFromRow Revision::__construct \MediaWiki\Revision\RevisionStore::newMutableRevisionFromArray
Definition at line 273 of file RevisionTest.php.
References $rev, getMockTitle(), and object.
RevisionTest::testConstructFromRowWithBadPageId | ( | ) |
Revision::__construct \MediaWiki\Revision\RevisionStore::newMutableRevisionFromArray.
Definition at line 283 of file RevisionTest.php.
References $rev, and MediaWikiTestCase\overrideMwServices().
RevisionTest::testDecompressRevisionText | ( | $legacyEncoding, | |
$text, | |||
$flags, | |||
$expected | |||
) |
provideDecompressRevisionText Revision::decompressRevisionText
bool | $legacyEncoding | |
mixed | $text | |
array | $flags | |
mixed | $expected |
Definition at line 730 of file RevisionTest.php.
References Revision\decompressRevisionText(), getBlobStore(), mockBlobStoreFactory(), and MediaWikiTestCase\setService().
RevisionTest::testGetContent | ( | ) |
Definition at line 930 of file RevisionTest.php.
References $content, $rev, $title, and getMockTitle().
RevisionTest::testGetContent_failure | ( | ) |
Definition at line 946 of file RevisionTest.php.
References $rev, $title, and getMockTitle().
RevisionTest::testGetId | ( | $rowArray, | |
$expectedId | |||
) |
provideGetId Revision::getId
Definition at line 310 of file RevisionTest.php.
References $rev, and getMockTitle().
RevisionTest::testGetParentId | ( | $rowArray, | |
$expected | |||
) |
provideGetParentId Revision::getParentId()
Definition at line 356 of file RevisionTest.php.
References $rev, and getMockTitle().
RevisionTest::testGetRevisionText | ( | $expected, | |
$rowData, | |||
$prefix = 'old_' , |
|||
$wiki = false |
|||
) |
Revision::getRevisionText provideGetRevisionText.
Definition at line 379 of file RevisionTest.php.
References Revision\getRevisionText().
Referenced by testGetRevisionWithGzipAndLegacyEncoding(), testGetRevisionWithLegacyEncoding(), and testGetRevisionWithZlibExtension().
RevisionTest::testGetRevisionText_external_noOldId | ( | ) |
Definition at line 807 of file RevisionTest.php.
References Revision\getRevisionText(), and MediaWikiTestCase\setService().
RevisionTest::testGetRevisionText_external_oldId | ( | ) |
Definition at line 826 of file RevisionTest.php.
References $cache, Revision\getRevisionText(), getWANObjectCache(), mockBlobStoreFactory(), and MediaWikiTestCase\setService().
RevisionTest::testGetRevisionText_external_returnsFalseWhenNotEnoughUrlParts | ( | $text | ) |
provideTestGetRevisionText_external_returnsFalseWhenNotEnoughUrlParts Revision::getRevisionText
Definition at line 789 of file RevisionTest.php.
References Revision\getRevisionText().
RevisionTest::testGetRevisionText_returnsDecompressedTextFieldWhenNotExternal | ( | $row, | |
$prefix, | |||
$expected | |||
) |
provideTestGetRevisionText_returnsDecompressedTextFieldWhenNotExternal Revision::getRevisionText
Definition at line 772 of file RevisionTest.php.
References Revision\getRevisionText().
RevisionTest::testGetRevisionWithGzipAndLegacyEncoding | ( | $expected, | |
$lang, | |||
$encoding, | |||
$rowData | |||
) |
Revision::getRevisionText provideGetRevisionTextWithGzipAndLegacyEncoding.
Definition at line 550 of file RevisionTest.php.
References $lang, MediaWikiTestCase\checkPHPExtension(), getBlobStore(), mockBlobStoreFactory(), MediaWikiTestCase\setService(), and testGetRevisionText().
RevisionTest::testGetRevisionWithLegacyEncoding | ( | $expected, | |
$lang, | |||
$encoding, | |||
$rowData | |||
) |
Revision::getRevisionText provideGetRevisionTextWithLegacyEncoding.
Definition at line 512 of file RevisionTest.php.
References $lang, getBlobStore(), mockBlobStoreFactory(), MediaWikiTestCase\setService(), and testGetRevisionText().
RevisionTest::testGetRevisionWithZlibExtension | ( | $expected, | |
$rowData | |||
) |
Revision::getRevisionText provideGetRevisionTextWithZlibExtension.
Definition at line 399 of file RevisionTest.php.
References MediaWikiTestCase\checkPHPExtension(), and testGetRevisionText().
RevisionTest::testGetRevisionWithZlibExtension_badData | ( | $expected, | |
$rowData | |||
) |
Revision::getRevisionText provideGetRevisionTextWithZlibExtension_badData.
Definition at line 418 of file RevisionTest.php.
References MediaWikiTestCase\checkPHPExtension(), and Revision\getRevisionText().
RevisionTest::testGetSha1 | ( | ) |
Definition at line 897 of file RevisionTest.php.
References $rev, $title, and getMockTitle().
RevisionTest::testGetSha1_failure | ( | ) |
Definition at line 913 of file RevisionTest.php.
References $rev, $title, and getMockTitle().
RevisionTest::testGetSize | ( | ) |
Definition at line 865 of file RevisionTest.php.
References $rev, $title, and getMockTitle().
RevisionTest::testGetSize_failure | ( | ) |
Definition at line 880 of file RevisionTest.php.
References $rev, $title, and getMockTitle().
RevisionTest::testLoadFromTitle | ( | ) |
Definition at line 603 of file RevisionTest.php.
References MediaWikiTestCase\$db, $title, getMockTitle(), Revision\loadFromTitle(), object, MediaWikiTestCase\overrideMwServices(), SCHEMA_COMPAT_NEW, and MediaWikiTestCase\setMwGlobals().
RevisionTest::testSetId | ( | $input, | |
$expected | |||
) |
provideSetId Revision::setId
Definition at line 324 of file RevisionTest.php.
References $input, $rev, and getMockTitle().
RevisionTest::testSetUserIdAndName | ( | $inputId, | |
$expectedId, | |||
$name | |||
) |
provideSetUserIdAndName Revision::setUserIdAndName
Definition at line 339 of file RevisionTest.php.
References $name, $rev, getMockTitle(), and Revision\RAW.