Go to the documentation of this file.
7 parent::__construct(
':memory:' );
20 return parent::replaceVars(
$s );
36 protected function setUp() {
40 $this->markTestSkipped(
'No SQLite support detected' );
43 if ( version_compare( $this->db->getServerVersion(),
'3.6.0',
'<' ) ) {
44 $this->markTestSkipped(
"SQLite at least 3.6 required, {$this->db->getServerVersion()} found" );
50 return preg_replace(
'/\s+/',
' ', $this->db->replaceVars( $sql ) );
54 $this->assertNotNull(
$res );
57 foreach ( $expected[$i]
as $key =>
$value ) {
58 $this->assertTrue( isset( $row->$key ) );
59 $this->assertEquals(
$value, $row->$key );
63 $this->assertEquals( count( $expected ), $i,
'Unexpected number of rows' );
72 'foo bar',
"'foo bar'"
75 'foo\'bar',
"'foo''bar'"
95 $this->assertEquals( $expected,
$db->
addQuotes(
$value ),
'string not quoted as expected' );
100 $this->assertTrue( $re !==
false,
'query failed' );
102 if ( $row = $re->fetchRow() ) {
107 $this->assertEquals(
$value, $row[0],
'string mangled by the database' );
109 $this->
fail(
'query returned no result' );
117 $this->assertEquals(
'foo', $this->
replaceVars(
'foo' ),
"Don't break anything accidentally" );
119 $this->assertEquals(
"CREATE TABLE /**/foo (foo_key INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "
120 .
"foo_bar TEXT, foo_name TEXT NOT NULL DEFAULT '', foo_int INTEGER, foo_int2 INTEGER );",
121 $this->
replaceVars(
"CREATE TABLE /**/foo (foo_key int unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT,
122 foo_bar char(13), foo_name varchar(255) binary NOT NULL DEFAULT '', foo_int tinyint ( 8 ), foo_int2 int(16) ) ENGINE=MyISAM;" )
125 $this->assertEquals(
"CREATE TABLE foo ( foo1 REAL, foo2 REAL, foo3 REAL );",
126 $this->
replaceVars(
"CREATE TABLE foo ( foo1 FLOAT, foo2 DOUBLE( 1,10), foo3 DOUBLE PRECISION );" )
129 $this->assertEquals(
"CREATE TABLE foo ( foo_binary1 BLOB, foo_binary2 BLOB );",
130 $this->
replaceVars(
"CREATE TABLE foo ( foo_binary1 binary(16), foo_binary2 varbinary(32) );" )
133 $this->assertEquals(
"CREATE TABLE text ( text_foo TEXT );",
134 $this->
replaceVars(
"CREATE TABLE text ( text_foo tinytext );" ),
138 $this->assertEquals(
"CREATE TABLE foo ( foobar INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL );",
139 $this->
replaceVars(
"CREATE TABLE foo ( foobar INT PRIMARY KEY NOT NULL AUTO_INCREMENT );" )
141 $this->assertEquals(
"CREATE TABLE foo ( foobar INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL );",
142 $this->
replaceVars(
"CREATE TABLE foo ( foobar INT PRIMARY KEY AUTO_INCREMENT NOT NULL );" )
145 $this->assertEquals(
"CREATE TABLE enums( enum1 TEXT, myenum TEXT)",
146 $this->
replaceVars(
"CREATE TABLE enums( enum1 ENUM('A', 'B'), myenum ENUM ('X', 'Y'))" )
149 $this->assertEquals(
"ALTER TABLE foo ADD COLUMN foo_bar INTEGER DEFAULT 42",
150 $this->
replaceVars(
"ALTER TABLE foo\nADD COLUMN foo_bar int(10) unsigned DEFAULT 42" )
153 $this->assertEquals(
"DROP INDEX foo",
154 $this->
replaceVars(
"DROP INDEX /*i*/foo ON /*_*/bar" )
157 $this->assertEquals(
"DROP INDEX foo -- dropping index",
158 $this->
replaceVars(
"DROP INDEX /*i*/foo ON /*_*/bar -- dropping index" )
169 $this->assertEquals(
'sqlite_master',
$db->
tableName(
'sqlite_master' ) );
171 $this->assertEquals(
'sqlite_master',
$db->
tableName(
'sqlite_master' ) );
172 $this->assertEquals(
'foobar',
$db->
tableName(
'bar' ) );
180 $db->
query(
'CREATE TABLE foo(foo, barfoo)' );
183 $this->assertEquals(
'CREATE TABLE "bar"(foo, barfoo)',
185 'Normal table duplication'
189 $this->assertEquals(
'CREATE TABLE "baz"(foo, barfoo)',
191 'Creation of temporary duplicate'
193 $this->assertEquals( 0,
195 'Create a temporary duplicate only'
205 $this->markTestSkipped(
'FTS3 not supported, cannot create virtual tables' );
207 $db->
query(
'CREATE VIRTUAL TABLE "foo" USING FTS3(foobar)' );
210 $this->assertEquals(
'CREATE VIRTUAL TABLE "bar" USING FTS3(foobar)',
212 'Duplication of virtual tables'
216 $this->assertEquals(
'CREATE VIRTUAL TABLE "baz" USING FTS3(foobar)',
218 "Can't create temporary virtual tables, should fall back to non-temporary duplication"
227 $db->
query(
'CREATE TABLE a (a_1)', __METHOD__ );
228 $db->
query(
'CREATE TABLE b (b_1, b_2)', __METHOD__ );
237 array(
'b_1' => 2,
'b_2' =>
'a' ),
238 array(
'b_1' => 3,
'b_2' =>
'b' ),
259 $this->assertTrue(
true );
267 global $IP, $wgVersion, $wgProfileToDatabase;
280 $ignoredColumns =
array(
281 'user_newtalk.user_last_timestamp',
285 $currentDB->sourceFile(
"$IP/maintenance/tables.sql" );
286 if ( $wgProfileToDatabase ) {
287 $currentDB->sourceFile(
"$IP/maintenance/sqlite/archives/patch-profiling.sql" );
289 $currentTables = $this->
getTables( $currentDB );
290 sort( $currentTables );
293 $versions =
"upgrading from $version to $wgVersion";
296 $this->assertEquals( $currentTables,
$tables,
"Different tables $versions" );
298 $currentCols = $this->
getColumns( $currentDB, $table );
301 array_keys( $currentCols ),
303 "Mismatching columns for table \"$table\" $versions"
305 foreach ( $currentCols
as $name => $column ) {
306 $fullName =
"$table.$name";
309 (
bool)$cols[
$name]->pk,
310 "PRIMARY KEY status does not match for column $fullName $versions"
312 if ( !in_array( $fullName, $ignoredColumns ) ) {
314 (
bool)$column->notnull,
315 (
bool)$cols[
$name]->notnull,
316 "NOT NULL status does not match for column $fullName $versions"
320 $cols[
$name]->dflt_value,
321 "Default values does not match for column $fullName $versions"
325 $currentIndexes = $this->
getIndexes( $currentDB, $table );
328 array_keys( $currentIndexes ),
329 array_keys( $indexes ),
330 "mismatching indexes for table \"$table\" $versions"
343 $databaseCreation =
$db->
query(
'CREATE TABLE a ( a_1 )', __METHOD__ );
344 $this->assertInstanceOf(
'ResultWrapper', $databaseCreation,
"Database creation" );
346 $insertion =
$db->
insert(
'a',
array(
'a_1' => 10 ), __METHOD__ );
347 $this->assertTrue( $insertion,
"Insertion worked" );
349 $this->assertInternalType(
'integer',
$db->
insertId(),
"Actual typecheck" );
350 $this->assertTrue(
$db->
close(),
"closing database" );
354 static $maint =
null;
355 if ( $maint ===
null ) {
357 $maint->loadParamsAndArgs(
null,
array(
'quiet' => 1 ) );
362 $db->
sourceFile(
"$IP/tests/phpunit/data/db/sqlite/tables-$version.sql" );
364 $updater->doUpdates(
array(
'core' ) );
376 'searchindex_content',
377 'searchindex_segments',
378 'searchindex_segdir',
380 'searchindex_docsize',
383 foreach ( $excluded
as $t ) {
386 $list = array_flip( $list );
395 $this->assertNotNull(
$res );
396 foreach (
$res as $col ) {
397 $cols[$col->name] = $col;
407 $this->assertNotNull(
$res );
408 foreach (
$res as $index ) {
409 $res2 =
$db->
query(
"PRAGMA index_info({$index->name})" );
410 $this->assertNotNull( $res2 );
411 $index->columns =
array();
412 foreach ( $res2
as $col ) {
413 $index->columns[] = $col;
415 $indexes[$index->name] = $index;
426 $row =
$res->fetchRow();
427 $this->assertFalse( (
bool)$row[
'a'] );
testAddQuotes( $value, $expected)
@dataProvider provideAddQuotes() @covers DatabaseSqlite::addQuotes
lastQuery()
Return the last query that went through DatabaseBase::query()
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. $reader:XMLReader object $logInfo:Array of information Return false to stop further processing of the tag 'ImportHandlePageXMLTag':When parsing a XML tag in a page. $reader:XMLReader object $pageInfo:Array of information Return false to stop further processing of the tag 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information Return false to stop further processing of the tag 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. $reader:XMLReader object Return false to stop further processing of the tag 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. $reader:XMLReader object $revisionInfo:Array of information Return false to stop further processing of the tag 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. $title:Title object for the current page $request:WebRequest $ignoreRedirect:boolean to skip redirect check $target:Title/string of redirect target $article:Article object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) $article:article(object) being checked 'IsTrustedProxy':Override the result of wfIsTrustedProxy() $ip:IP being check $result:Change this value to override the result of wfIsTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of User::isValidEmailAddr(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetMagic':DEPRECATED, use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetSpecialPageAliases':DEPRECATED, use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Associative array mapping language codes to prefixed links of the form "language:title". & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LinkBegin':Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
duplicateTableStructure( $oldName, $newName, $temporary=false, $fname=__METHOD__)
testCaseInsensitiveLike()
assertResultIs( $expected, $res)
testTableName()
@covers DatabaseSqlite::tableName
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
namespace and then decline to actually register it RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist & $tables
close()
Closes a database connection.
replaceVars( $s)
Override parent visibility to public.
This class allows simple acccess to a SQLite database independently from main database settings.
if(!defined( 'MEDIAWIKI')) $fname
This file is not a valid entry point, perform no further processing unless MEDIAWIKI is defined.
as a message key or array as accepted by ApiBase::dieUsageMsg after processing request parameters Return false to let the request fail
tableName( $name, $format='quoted')
Use MySQL's naming (accounts for prefix etc) but remove surrounding backticks.
@group sqlite @group Database @group medium
testReplaceVars()
@covers DatabaseSqlite::replaceVars
tablePrefix( $prefix=null)
Get/set the table prefix.
insert( $table, $a, $fname=__METHOD__, $options=array())
Based on generic method (parent) with some prior SQLite-sepcific adjustments.
query( $sql, $fname='', $tempIgnore=false)
Run an SQL query and return the result.
selectField( $table, $var, $cond='', $fname=__METHOD__, $options=array())
A SELECT wrapper which returns a single field from a single result row.
static newForDB(&$db, $shared=false, $maintenance=null)
insertId()
This must be called after nextSequenceVal.
testDeleteJoin()
@covers DatabaseSqlite::deleteJoin
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
listTables( $prefix=null, $fname=__METHOD__)
List all tables on the database.
static provideAddQuotes()
when a variable name is used in a it is silently declared as a new masking the global
Fake maintenance wrapper, mostly used for the web installer/updater.
static isPresent()
Checks whether PHP has SQLite support.
testDuplicateTableStructureVirtual()
@covers DatabaseSqlite::duplicateTableStructure
sourceFile( $filename, $lineCallback=false, $resultCallback=false, $fname=false, $inputCallback=false)
Read and execute SQL commands from a file.
testInsertIdType()
@covers DatabaseSqlite::insertId
Allows to change the fields on the form that will be generated $name
testUpgrades()
Runs upgrades of older databases and compares results with current schema.
static checkSqlSyntax( $files)
Checks given files for correctness of SQL syntax.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
testDuplicateTableStructure()
@covers DatabaseSqlite::duplicateTableStructure
deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds, $fname=__METHOD__)
DELETE where the condition is a join.
static getFulltextSearchModule()
Returns version of currently supported SQLite fulltext search module or false if none present.