10 $p[
'dbFilePath'] =
':memory:';
13 return Database::factory(
'SqliteMock', $p );
24 return parent::replaceVars(
$s );
41 $this->markTestSkipped(
'No SQLite support detected' );
44 if ( version_compare( $this->db->getServerVersion(),
'3.6.0',
'<' ) ) {
45 $this->markTestSkipped(
"SQLite at least 3.6 required, {$this->db->getServerVersion()} found" );
51 return preg_replace(
'/\s+/',
' ', $this->db->replaceVars( $sql ) );
55 $this->assertNotNull(
$res );
57 foreach (
$res as $row ) {
58 foreach ( $expected[$i] as $key =>
$value ) {
59 $this->assertTrue( isset( $row->$key ) );
60 $this->assertEquals(
$value, $row->$key );
64 $this->assertEquals( count( $expected ), $i,
'Unexpected number of rows' );
73 'foo bar',
"'foo bar'"
76 'foo\'bar',
"'foo''bar'"
100 $db = DatabaseSqlite::newStandaloneInstance(
':memory:' );
101 $this->assertEquals( $expected,
$db->
addQuotes(
$value ),
'string not quoted as expected' );
106 $this->assertTrue( $re !==
false,
'query failed' );
108 $row = $re->fetchRow();
114 $this->assertEquals(
$value, $row[0],
'string mangled by the database' );
116 $this->fail(
'query returned no result' );
124 $this->assertEquals(
'foo', $this->
replaceVars(
'foo' ),
"Don't break anything accidentally" );
127 "CREATE TABLE /**/foo (foo_key INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "
128 .
"foo_bar TEXT, foo_name TEXT NOT NULL DEFAULT '', foo_int INTEGER, foo_int2 INTEGER );",
130 "CREATE TABLE /**/foo (foo_key int unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT, "
131 .
"foo_bar char(13), foo_name varchar(255) binary NOT NULL DEFAULT '', "
132 .
"foo_int tinyint ( 8 ), foo_int2 int(16) ) ENGINE=MyISAM;"
137 "CREATE TABLE foo ( foo1 REAL, foo2 REAL, foo3 REAL );",
139 "CREATE TABLE foo ( foo1 FLOAT, foo2 DOUBLE( 1,10), foo3 DOUBLE PRECISION );"
143 $this->assertEquals(
"CREATE TABLE foo ( foo_binary1 BLOB, foo_binary2 BLOB );",
144 $this->
replaceVars(
"CREATE TABLE foo ( foo_binary1 binary(16), foo_binary2 varbinary(32) );" )
147 $this->assertEquals(
"CREATE TABLE text ( text_foo TEXT );",
148 $this->
replaceVars(
"CREATE TABLE text ( text_foo tinytext );" ),
152 $this->assertEquals(
"CREATE TABLE foo ( foobar INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL );",
153 $this->
replaceVars(
"CREATE TABLE foo ( foobar INT PRIMARY KEY NOT NULL AUTO_INCREMENT );" )
155 $this->assertEquals(
"CREATE TABLE foo ( foobar INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL );",
156 $this->
replaceVars(
"CREATE TABLE foo ( foobar INT PRIMARY KEY AUTO_INCREMENT NOT NULL );" )
159 $this->assertEquals(
"CREATE TABLE enums( enum1 TEXT, myenum TEXT)",
160 $this->
replaceVars(
"CREATE TABLE enums( enum1 ENUM('A', 'B'), myenum ENUM ('X', 'Y'))" )
163 $this->assertEquals(
"ALTER TABLE foo ADD COLUMN foo_bar INTEGER DEFAULT 42",
164 $this->
replaceVars(
"ALTER TABLE foo\nADD COLUMN foo_bar int(10) unsigned DEFAULT 42" )
167 $this->assertEquals(
"DROP INDEX foo",
168 $this->
replaceVars(
"DROP INDEX /*i*/foo ON /*_*/bar" )
171 $this->assertEquals(
"DROP INDEX foo -- dropping index",
172 $this->
replaceVars(
"DROP INDEX /*i*/foo ON /*_*/bar -- dropping index" )
174 $this->assertEquals(
"INSERT OR IGNORE INTO foo VALUES ('bar')",
175 $this->
replaceVars(
"INSERT OR IGNORE INTO foo VALUES ('bar')" )
184 $db = DatabaseSqlite::newStandaloneInstance(
':memory:' );
186 $this->assertEquals(
'sqlite_master',
$db->
tableName(
'sqlite_master' ) );
188 $this->assertEquals(
'sqlite_master',
$db->
tableName(
'sqlite_master' ) );
189 $this->assertEquals(
'foobar',
$db->
tableName(
'bar' ) );
196 $db = DatabaseSqlite::newStandaloneInstance(
':memory:' );
197 $db->
query(
'CREATE TABLE foo(foo, barfoo)' );
198 $db->
query(
'CREATE INDEX index1 ON foo(foo)' );
199 $db->
query(
'CREATE UNIQUE INDEX index2 ON foo(barfoo)' );
202 $this->assertEquals(
'CREATE TABLE "bar"(foo, barfoo)',
204 'Normal table duplication'
206 $indexList =
$db->
query(
'PRAGMA INDEX_LIST("bar")' );
207 $index = $indexList->next();
208 $this->assertEquals(
'bar_index1', $index->name );
209 $this->assertEquals(
'0', $index->unique );
210 $index = $indexList->next();
211 $this->assertEquals(
'bar_index2', $index->name );
212 $this->assertEquals(
'1', $index->unique );
215 $this->assertEquals(
'CREATE TABLE "baz"(foo, barfoo)',
216 $db->
selectField(
'sqlite_temp_master',
'sql', [
'name' =>
'baz' ] ),
217 'Creation of temporary duplicate'
219 $indexList =
$db->
query(
'PRAGMA INDEX_LIST("baz")' );
220 $index = $indexList->next();
221 $this->assertEquals(
'baz_index1', $index->name );
222 $this->assertEquals(
'0', $index->unique );
223 $index = $indexList->next();
224 $this->assertEquals(
'baz_index2', $index->name );
225 $this->assertEquals(
'1', $index->unique );
226 $this->assertEquals( 0,
227 $db->
selectField(
'sqlite_master',
'COUNT(*)', [
'name' =>
'baz' ] ),
228 'Create a temporary duplicate only'
236 $db = DatabaseSqlite::newStandaloneInstance(
':memory:' );
238 $this->markTestSkipped(
'FTS3 not supported, cannot create virtual tables' );
240 $db->
query(
'CREATE VIRTUAL TABLE "foo" USING FTS3(foobar)' );
243 $this->assertEquals(
'CREATE VIRTUAL TABLE "bar" USING FTS3(foobar)',
245 'Duplication of virtual tables'
249 $this->assertEquals(
'CREATE VIRTUAL TABLE "baz" USING FTS3(foobar)',
251 "Can't create temporary virtual tables, should fall back to non-temporary duplication"
259 $db = DatabaseSqlite::newStandaloneInstance(
':memory:' );
260 $db->
query(
'CREATE TABLE a (a_1)', __METHOD__ );
261 $db->
query(
'CREATE TABLE b (b_1, b_2)', __METHOD__ );
270 [
'b_1' => 2,
'b_2' =>
'a' ],
271 [
'b_1' => 3,
'b_2' =>
'b' ],
275 $db->
deleteJoin(
'a',
'b',
'a_1',
'b_1', [
'b_2' =>
'a' ], __METHOD__ );
292 if ( $result !==
true ) {
293 $this->fail( $result );
295 $this->assertTrue(
true );
323 'user_newtalk.user_last_timestamp',
326 $currentDB = DatabaseSqlite::newStandaloneInstance(
':memory:' );
327 $currentDB->sourceFile(
"$IP/maintenance/tables.sql" );
329 $profileToDb =
false;
332 if (
$out ===
'db' ) {
334 } elseif ( is_array(
$out ) && in_array(
'db',
$out ) ) {
339 if ( $profileToDb ) {
340 $currentDB->sourceFile(
"$IP/maintenance/sqlite/archives/patch-profiling.sql" );
342 $currentTables = $this->
getTables( $currentDB );
343 sort( $currentTables );
345 foreach ( $versions as $version ) {
346 $versions =
"upgrading from $version to $wgVersion";
349 $this->assertEquals( $currentTables,
$tables,
"Different tables $versions" );
350 foreach (
$tables as $table ) {
351 $currentCols = $this->
getColumns( $currentDB, $table );
354 array_keys( $currentCols ),
356 "Mismatching columns for table \"$table\" $versions"
358 foreach ( $currentCols as $name => $column ) {
362 (
bool)$cols[$name]->pk,
363 "PRIMARY KEY status does not match for column $fullName $versions"
365 if ( !in_array(
$fullName, $ignoredColumns ) ) {
367 (
bool)$column->notnull,
368 (
bool)$cols[$name]->notnull,
369 "NOT NULL status does not match for column $fullName $versions"
373 $cols[$name]->dflt_value,
374 "Default values does not match for column $fullName $versions"
378 $currentIndexes = $this->
getIndexes( $currentDB, $table );
381 array_keys( $currentIndexes ),
382 array_keys( $indexes ),
383 "mismatching indexes for table \"$table\" $versions"
394 $db = DatabaseSqlite::newStandaloneInstance(
':memory:' );
396 $databaseCreation =
$db->
query(
'CREATE TABLE a ( a_1 )', __METHOD__ );
397 $this->assertInstanceOf( ResultWrapper::class, $databaseCreation,
"Database creation" );
399 $insertion =
$db->
insert(
'a', [
'a_1' => 10 ], __METHOD__ );
400 $this->assertTrue( $insertion,
"Insertion worked" );
402 $this->assertInternalType(
'integer',
$db->
insertId(),
"Actual typecheck" );
403 $this->assertTrue(
$db->
close(),
"closing database" );
407 static $maint =
null;
408 if ( $maint ===
null ) {
410 $maint->loadParamsAndArgs(
null, [
'quiet' => 1 ] );
414 $db = DatabaseSqlite::newStandaloneInstance(
':memory:' );
415 $db->
sourceFile(
"$IP/tests/phpunit/data/db/sqlite/tables-$version.sql" );
417 $updater->doUpdates( [
'core' ] );
429 'searchindex_content',
430 'searchindex_segments',
431 'searchindex_segdir',
433 'searchindex_docsize',
436 foreach ( $excluded as
$t ) {
439 $list = array_flip( $list );
448 $this->assertNotNull(
$res );
449 foreach (
$res as $col ) {
450 $cols[$col->name] = $col;
460 $this->assertNotNull(
$res );
461 foreach (
$res as $index ) {
462 $res2 =
$db->
query(
"PRAGMA index_info({$index->name})" );
463 $this->assertNotNull( $res2 );
464 $index->columns = [];
465 foreach ( $res2 as $col ) {
466 $index->columns[] = $col;
468 $indexes[$index->name] = $index;
477 $db = DatabaseSqlite::newStandaloneInstance(
':memory:' );
479 $row =
$res->fetchRow();
480 $this->assertFalse( (
bool)$row[
'a'] );
487 $db = DatabaseSqlite::newStandaloneInstance(
':memory:' );
489 $databaseCreation =
$db->
query(
'CREATE TABLE a ( a_1 )', __METHOD__ );
490 $this->assertInstanceOf( ResultWrapper::class, $databaseCreation,
"Failed to create table a" );
492 $this->assertEquals( 0,
$db->
numFields(
$res ),
"expects to get 0 fields for an empty table" );
493 $insertion =
$db->
insert(
'a', [
'a_1' => 10 ], __METHOD__ );
494 $this->assertTrue( $insertion,
"Insertion failed" );
498 $this->assertTrue(
$db->
close(),
"closing database" );
505 $db = DatabaseSqlite::newStandaloneInstance(
':memory:' );
509 $this->assertContains(
'SQLite ', $toString );
516 $attributes = Database::attributesFromType(
'sqlite' );
517 $this->assertTrue( $attributes[Database::ATTR_DB_LEVEL_LOCKING] );
$wgVersion
MediaWiki version number.
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
if(!defined( 'MEDIAWIKI')) $wgProfiler
This file is not a valid entry point, perform no further processing unless MEDIAWIKI is defined.
replaceVars( $s)
Override parent visibility to public.
query( $sql, $fname='', $tempIgnore=false)
Run an SQL query and return the result.
static newInstance(array $p=[])
testCaseInsensitiveLike()
testDuplicateTableStructureVirtual()
DatabaseSqlite::duplicateTableStructure.
testInsertIdType()
DatabaseSqlite::insertId.
assertResultIs( $expected, $res)
testAddQuotes( $value, $expected)
provideAddQuotes() DatabaseSqlite::addQuotes
testUpgrades()
Runs upgrades of older databases and compares results with current schema.
static provideAddQuotes()
testToString()
\Wikimedia\Rdbms\DatabaseSqlite::__toString
testReplaceVars()
DatabaseSqlite::replaceVars.
testTableName()
DatabaseSqlite::tableName.
testEntireSchema()
@coversNothing
testNumFields()
DatabaseSqlite::numFields.
testDuplicateTableStructure()
DatabaseSqlite::duplicateTableStructure.
testsAttributes()
\Wikimedia\Rdbms\DatabaseSqlite::getAttributes()
testDeleteJoin()
DatabaseSqlite::deleteJoin.
static newForDB(Database $db, $shared=false, Maintenance $maintenance=null)
Fake maintenance wrapper, mostly used for the web installer/updater.
static isPresent()
Checks whether PHP has SQLite support.
static checkSqlSyntax( $files)
Checks given files for correctness of SQL syntax.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist & $tables
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out