2de35a7c882006d8a938b72509771d9ef31303f3
[lhc/web/wiklou.git] / tests / phpunit / includes / db / DatabaseSqliteTest.php
1 <?php
2
3 use Wikimedia\Rdbms\Blob;
4 use Wikimedia\Rdbms\Database;
5 use Wikimedia\Rdbms\DatabaseSqlite;
6 use Wikimedia\Rdbms\ResultWrapper;
7
8 class DatabaseSqliteMock extends DatabaseSqlite {
9 public static function newInstance( array $p = [] ) {
10 $p['dbFilePath'] = ':memory:';
11 $p['schema'] = false;
12
13 return Database::factory( 'SqliteMock', $p );
14 }
15
16 function query( $sql, $fname = '', $tempIgnore = false ) {
17 return true;
18 }
19
20 /**
21 * Override parent visibility to public
22 */
23 public function replaceVars( $s ) {
24 return parent::replaceVars( $s );
25 }
26 }
27
28 /**
29 * @group sqlite
30 * @group Database
31 * @group medium
32 */
33 class DatabaseSqliteTest extends MediaWikiTestCase {
34 /** @var DatabaseSqliteMock */
35 protected $db;
36
37 protected function setUp() {
38 parent::setUp();
39
40 if ( !Sqlite::isPresent() ) {
41 $this->markTestSkipped( 'No SQLite support detected' );
42 }
43 $this->db = DatabaseSqliteMock::newInstance();
44 if ( version_compare( $this->db->getServerVersion(), '3.6.0', '<' ) ) {
45 $this->markTestSkipped( "SQLite at least 3.6 required, {$this->db->getServerVersion()} found" );
46 }
47 }
48
49 private function replaceVars( $sql ) {
50 // normalize spacing to hide implementation details
51 return preg_replace( '/\s+/', ' ', $this->db->replaceVars( $sql ) );
52 }
53
54 private function assertResultIs( $expected, $res ) {
55 $this->assertNotNull( $res );
56 $i = 0;
57 foreach ( $res as $row ) {
58 foreach ( $expected[$i] as $key => $value ) {
59 $this->assertTrue( isset( $row->$key ) );
60 $this->assertEquals( $value, $row->$key );
61 }
62 $i++;
63 }
64 $this->assertEquals( count( $expected ), $i, 'Unexpected number of rows' );
65 }
66
67 public static function provideAddQuotes() {
68 return [
69 [ // #0: empty
70 '', "''"
71 ],
72 [ // #1: simple
73 'foo bar', "'foo bar'"
74 ],
75 [ // #2: including quote
76 'foo\'bar', "'foo''bar'"
77 ],
78 // #3: including \0 (must be represented as hex, per https://bugs.php.net/bug.php?id=63419)
79 [
80 "x\0y",
81 "x'780079'",
82 ],
83 [ // #4: blob object (must be represented as hex)
84 new Blob( "hello" ),
85 "x'68656c6c6f'",
86 ],
87 [ // #5: null
88 null,
89 "''",
90 ],
91 ];
92 }
93
94 /**
95 * @dataProvider provideAddQuotes()
96 * @covers DatabaseSqlite::addQuotes
97 */
98 public function testAddQuotes( $value, $expected ) {
99 // check quoting
100 $db = DatabaseSqlite::newStandaloneInstance( ':memory:' );
101 $this->assertEquals( $expected, $db->addQuotes( $value ), 'string not quoted as expected' );
102
103 // ok, quoting works as expected, now try a round trip.
104 $re = $db->query( 'select ' . $db->addQuotes( $value ) );
105
106 $this->assertTrue( $re !== false, 'query failed' );
107
108 $row = $re->fetchRow();
109 if ( $row ) {
110 if ( $value instanceof Blob ) {
111 $value = $value->fetch();
112 }
113
114 $this->assertEquals( $value, $row[0], 'string mangled by the database' );
115 } else {
116 $this->fail( 'query returned no result' );
117 }
118 }
119
120 /**
121 * @covers DatabaseSqlite::replaceVars
122 */
123 public function testReplaceVars() {
124 $this->assertEquals( 'foo', $this->replaceVars( 'foo' ), "Don't break anything accidentally" );
125
126 $this->assertEquals(
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 );",
129 $this->replaceVars(
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;"
133 )
134 );
135
136 $this->assertEquals(
137 "CREATE TABLE foo ( foo1 REAL, foo2 REAL, foo3 REAL );",
138 $this->replaceVars(
139 "CREATE TABLE foo ( foo1 FLOAT, foo2 DOUBLE( 1,10), foo3 DOUBLE PRECISION );"
140 )
141 );
142
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) );" )
145 );
146
147 $this->assertEquals( "CREATE TABLE text ( text_foo TEXT );",
148 $this->replaceVars( "CREATE TABLE text ( text_foo tinytext );" ),
149 'Table name changed'
150 );
151
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 );" )
154 );
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 );" )
157 );
158
159 $this->assertEquals( "CREATE TABLE enums( enum1 TEXT, myenum TEXT)",
160 $this->replaceVars( "CREATE TABLE enums( enum1 ENUM('A', 'B'), myenum ENUM ('X', 'Y'))" )
161 );
162
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" )
165 );
166
167 $this->assertEquals( "DROP INDEX foo",
168 $this->replaceVars( "DROP INDEX /*i*/foo ON /*_*/bar" )
169 );
170
171 $this->assertEquals( "DROP INDEX foo -- dropping index",
172 $this->replaceVars( "DROP INDEX /*i*/foo ON /*_*/bar -- dropping index" )
173 );
174 $this->assertEquals( "INSERT OR IGNORE INTO foo VALUES ('bar')",
175 $this->replaceVars( "INSERT OR IGNORE INTO foo VALUES ('bar')" )
176 );
177 }
178
179 /**
180 * @covers DatabaseSqlite::tableName
181 */
182 public function testTableName() {
183 // @todo Moar!
184 $db = DatabaseSqlite::newStandaloneInstance( ':memory:' );
185 $this->assertEquals( 'foo', $db->tableName( 'foo' ) );
186 $this->assertEquals( 'sqlite_master', $db->tableName( 'sqlite_master' ) );
187 $db->tablePrefix( 'foo' );
188 $this->assertEquals( 'sqlite_master', $db->tableName( 'sqlite_master' ) );
189 $this->assertEquals( 'foobar', $db->tableName( 'bar' ) );
190 }
191
192 /**
193 * @covers DatabaseSqlite::duplicateTableStructure
194 */
195 public function testDuplicateTableStructure() {
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)' );
200
201 $db->duplicateTableStructure( 'foo', 'bar' );
202 $this->assertEquals( 'CREATE TABLE "bar"(foo, barfoo)',
203 $db->selectField( 'sqlite_master', 'sql', [ 'name' => 'bar' ] ),
204 'Normal table duplication'
205 );
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 );
213
214 $db->duplicateTableStructure( 'foo', 'baz', true );
215 $this->assertEquals( 'CREATE TABLE "baz"(foo, barfoo)',
216 $db->selectField( 'sqlite_temp_master', 'sql', [ 'name' => 'baz' ] ),
217 'Creation of temporary duplicate'
218 );
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'
229 );
230 }
231
232 /**
233 * @covers DatabaseSqlite::duplicateTableStructure
234 */
235 public function testDuplicateTableStructureVirtual() {
236 $db = DatabaseSqlite::newStandaloneInstance( ':memory:' );
237 if ( $db->getFulltextSearchModule() != 'FTS3' ) {
238 $this->markTestSkipped( 'FTS3 not supported, cannot create virtual tables' );
239 }
240 $db->query( 'CREATE VIRTUAL TABLE "foo" USING FTS3(foobar)' );
241
242 $db->duplicateTableStructure( 'foo', 'bar' );
243 $this->assertEquals( 'CREATE VIRTUAL TABLE "bar" USING FTS3(foobar)',
244 $db->selectField( 'sqlite_master', 'sql', [ 'name' => 'bar' ] ),
245 'Duplication of virtual tables'
246 );
247
248 $db->duplicateTableStructure( 'foo', 'baz', true );
249 $this->assertEquals( 'CREATE VIRTUAL TABLE "baz" USING FTS3(foobar)',
250 $db->selectField( 'sqlite_master', 'sql', [ 'name' => 'baz' ] ),
251 "Can't create temporary virtual tables, should fall back to non-temporary duplication"
252 );
253 }
254
255 /**
256 * @covers DatabaseSqlite::deleteJoin
257 */
258 public function testDeleteJoin() {
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__ );
262 $db->insert( 'a', [
263 [ 'a_1' => 1 ],
264 [ 'a_1' => 2 ],
265 [ 'a_1' => 3 ],
266 ],
267 __METHOD__
268 );
269 $db->insert( 'b', [
270 [ 'b_1' => 2, 'b_2' => 'a' ],
271 [ 'b_1' => 3, 'b_2' => 'b' ],
272 ],
273 __METHOD__
274 );
275 $db->deleteJoin( 'a', 'b', 'a_1', 'b_1', [ 'b_2' => 'a' ], __METHOD__ );
276 $res = $db->query( "SELECT * FROM a", __METHOD__ );
277 $this->assertResultIs( [
278 [ 'a_1' => 1 ],
279 [ 'a_1' => 3 ],
280 ],
281 $res
282 );
283 }
284
285 /**
286 * @coversNothing
287 */
288 public function testEntireSchema() {
289 global $IP;
290
291 $result = Sqlite::checkSqlSyntax( "$IP/maintenance/tables.sql" );
292 if ( $result !== true ) {
293 $this->fail( $result );
294 }
295 $this->assertTrue( true ); // avoid test being marked as incomplete due to lack of assertions
296 }
297
298 /**
299 * Runs upgrades of older databases and compares results with current schema
300 * @todo Currently only checks list of tables
301 * @coversNothing
302 */
303 public function testUpgrades() {
304 global $IP, $wgVersion, $wgProfiler;
305
306 // Versions tested
307 $versions = [
308 // '1.13', disabled for now, was totally screwed up
309 // SQLite wasn't included in 1.14
310 '1.15',
311 '1.16',
312 '1.17',
313 '1.18',
314 '1.19',
315 '1.20',
316 '1.21',
317 '1.22',
318 '1.23',
319 ];
320
321 // Mismatches for these columns we can safely ignore
322 $ignoredColumns = [
323 'user_newtalk.user_last_timestamp', // r84185
324 ];
325
326 $currentDB = DatabaseSqlite::newStandaloneInstance( ':memory:' );
327 $currentDB->sourceFile( "$IP/maintenance/tables.sql" );
328
329 $profileToDb = false;
330 if ( isset( $wgProfiler['output'] ) ) {
331 $out = $wgProfiler['output'];
332 if ( $out === 'db' ) {
333 $profileToDb = true;
334 } elseif ( is_array( $out ) && in_array( 'db', $out ) ) {
335 $profileToDb = true;
336 }
337 }
338
339 if ( $profileToDb ) {
340 $currentDB->sourceFile( "$IP/maintenance/sqlite/archives/patch-profiling.sql" );
341 }
342 $currentTables = $this->getTables( $currentDB );
343 sort( $currentTables );
344
345 foreach ( $versions as $version ) {
346 $versions = "upgrading from $version to $wgVersion";
347 $db = $this->prepareTestDB( $version );
348 $tables = $this->getTables( $db );
349 $this->assertEquals( $currentTables, $tables, "Different tables $versions" );
350 foreach ( $tables as $table ) {
351 $currentCols = $this->getColumns( $currentDB, $table );
352 $cols = $this->getColumns( $db, $table );
353 $this->assertEquals(
354 array_keys( $currentCols ),
355 array_keys( $cols ),
356 "Mismatching columns for table \"$table\" $versions"
357 );
358 foreach ( $currentCols as $name => $column ) {
359 $fullName = "$table.$name";
360 $this->assertEquals(
361 (bool)$column->pk,
362 (bool)$cols[$name]->pk,
363 "PRIMARY KEY status does not match for column $fullName $versions"
364 );
365 if ( !in_array( $fullName, $ignoredColumns ) ) {
366 $this->assertEquals(
367 (bool)$column->notnull,
368 (bool)$cols[$name]->notnull,
369 "NOT NULL status does not match for column $fullName $versions"
370 );
371 $this->assertEquals(
372 $column->dflt_value,
373 $cols[$name]->dflt_value,
374 "Default values does not match for column $fullName $versions"
375 );
376 }
377 }
378 $currentIndexes = $this->getIndexes( $currentDB, $table );
379 $indexes = $this->getIndexes( $db, $table );
380 $this->assertEquals(
381 array_keys( $currentIndexes ),
382 array_keys( $indexes ),
383 "mismatching indexes for table \"$table\" $versions"
384 );
385 }
386 $db->close();
387 }
388 }
389
390 /**
391 * @covers DatabaseSqlite::insertId
392 */
393 public function testInsertIdType() {
394 $db = DatabaseSqlite::newStandaloneInstance( ':memory:' );
395
396 $databaseCreation = $db->query( 'CREATE TABLE a ( a_1 )', __METHOD__ );
397 $this->assertInstanceOf( ResultWrapper::class, $databaseCreation, "Database creation" );
398
399 $insertion = $db->insert( 'a', [ 'a_1' => 10 ], __METHOD__ );
400 $this->assertTrue( $insertion, "Insertion worked" );
401
402 $this->assertInternalType( 'integer', $db->insertId(), "Actual typecheck" );
403 $this->assertTrue( $db->close(), "closing database" );
404 }
405
406 private function prepareTestDB( $version ) {
407 static $maint = null;
408 if ( $maint === null ) {
409 $maint = new FakeMaintenance();
410 $maint->loadParamsAndArgs( null, [ 'quiet' => 1 ] );
411 }
412
413 global $IP;
414 $db = DatabaseSqlite::newStandaloneInstance( ':memory:' );
415 $db->sourceFile( "$IP/tests/phpunit/data/db/sqlite/tables-$version.sql" );
416 $updater = DatabaseUpdater::newForDB( $db, false, $maint );
417 $updater->doUpdates( [ 'core' ] );
418
419 return $db;
420 }
421
422 private function getTables( $db ) {
423 $list = array_flip( $db->listTables() );
424 $excluded = [
425 'external_user', // removed from core in 1.22
426 'math', // moved out of core in 1.18
427 'trackbacks', // removed from core in 1.19
428 'searchindex',
429 'searchindex_content',
430 'searchindex_segments',
431 'searchindex_segdir',
432 // FTS4 ready!!1
433 'searchindex_docsize',
434 'searchindex_stat',
435 ];
436 foreach ( $excluded as $t ) {
437 unset( $list[$t] );
438 }
439 $list = array_flip( $list );
440 sort( $list );
441
442 return $list;
443 }
444
445 private function getColumns( $db, $table ) {
446 $cols = [];
447 $res = $db->query( "PRAGMA table_info($table)" );
448 $this->assertNotNull( $res );
449 foreach ( $res as $col ) {
450 $cols[$col->name] = $col;
451 }
452 ksort( $cols );
453
454 return $cols;
455 }
456
457 private function getIndexes( $db, $table ) {
458 $indexes = [];
459 $res = $db->query( "PRAGMA index_list($table)" );
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;
467 }
468 $indexes[$index->name] = $index;
469 }
470 ksort( $indexes );
471
472 return $indexes;
473 }
474
475 public function testCaseInsensitiveLike() {
476 // TODO: Test this for all databases
477 $db = DatabaseSqlite::newStandaloneInstance( ':memory:' );
478 $res = $db->query( 'SELECT "a" LIKE "A" AS a' );
479 $row = $res->fetchRow();
480 $this->assertFalse( (bool)$row['a'] );
481 }
482
483 /**
484 * @covers DatabaseSqlite::numFields
485 */
486 public function testNumFields() {
487 $db = DatabaseSqlite::newStandaloneInstance( ':memory:' );
488
489 $databaseCreation = $db->query( 'CREATE TABLE a ( a_1 )', __METHOD__ );
490 $this->assertInstanceOf( ResultWrapper::class, $databaseCreation, "Failed to create table a" );
491 $res = $db->select( '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" );
495 $res = $db->select( 'a', '*' );
496 $this->assertEquals( 1, $db->numFields( $res ), "wrong number of fields" );
497
498 $this->assertTrue( $db->close(), "closing database" );
499 }
500
501 /**
502 * @covers \Wikimedia\Rdbms\DatabaseSqlite::__toString
503 */
504 public function testToString() {
505 $db = DatabaseSqlite::newStandaloneInstance( ':memory:' );
506
507 $toString = (string)$db;
508
509 $this->assertContains( 'SQLite ', $toString );
510 }
511 }