2010-12-14 16:26:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @group Database
|
2016-09-26 22:40:07 +00:00
|
|
|
* @group Database
|
2010-12-14 16:26:35 +00:00
|
|
|
*/
|
2010-12-28 18:17:16 +00:00
|
|
|
class DatabaseTest extends MediaWikiTestCase {
|
2013-10-18 10:36:09 +00:00
|
|
|
/**
|
2016-09-26 22:40:07 +00:00
|
|
|
* @var Database
|
2013-10-18 10:36:09 +00:00
|
|
|
*/
|
2014-04-24 16:06:21 +00:00
|
|
|
protected $db;
|
|
|
|
|
|
|
|
|
|
private $functionTest = false;
|
2010-12-14 16:26:35 +00:00
|
|
|
|
2012-10-08 10:56:20 +00:00
|
|
|
protected function setUp() {
|
2012-10-23 17:02:36 +00:00
|
|
|
parent::setUp();
|
2012-01-11 20:19:55 +00:00
|
|
|
$this->db = wfGetDB( DB_MASTER );
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-08 10:56:20 +00:00
|
|
|
protected function tearDown() {
|
2012-10-23 17:02:36 +00:00
|
|
|
parent::tearDown();
|
2012-01-11 20:19:55 +00:00
|
|
|
if ( $this->functionTest ) {
|
|
|
|
|
$this->dropFunctions();
|
|
|
|
|
$this->functionTest = false;
|
|
|
|
|
}
|
2016-08-22 05:35:12 +00:00
|
|
|
$this->db->restoreFlags( IDatabase::RESTORE_INITIAL );
|
2010-12-14 16:26:35 +00:00
|
|
|
}
|
2016-09-15 21:40:00 +00:00
|
|
|
|
2013-10-18 10:36:09 +00:00
|
|
|
/**
|
2016-09-26 22:40:07 +00:00
|
|
|
* @covers Database::dropTable
|
2013-10-18 10:36:09 +00:00
|
|
|
*/
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testAddQuotesNull() {
|
2010-12-14 16:26:35 +00:00
|
|
|
$check = "NULL";
|
2011-06-09 08:43:53 +00:00
|
|
|
if ( $this->db->getType() === 'sqlite' || $this->db->getType() === 'oracle' ) {
|
2010-12-14 16:26:35 +00:00
|
|
|
$check = "''";
|
|
|
|
|
}
|
|
|
|
|
$this->assertEquals( $check, $this->db->addQuotes( null ) );
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testAddQuotesInt() {
|
2010-12-14 16:26:35 +00:00
|
|
|
# returning just "1234" should be ok too, though...
|
|
|
|
|
# maybe
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
"'1234'",
|
|
|
|
|
$this->db->addQuotes( 1234 ) );
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testAddQuotesFloat() {
|
2010-12-14 16:26:35 +00:00
|
|
|
# returning just "1234.5678" would be ok too, though
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
"'1234.5678'",
|
|
|
|
|
$this->db->addQuotes( 1234.5678 ) );
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testAddQuotesString() {
|
2010-12-14 16:26:35 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
"'string'",
|
|
|
|
|
$this->db->addQuotes( 'string' ) );
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testAddQuotesStringQuote() {
|
2010-12-14 16:26:35 +00:00
|
|
|
$check = "'string''s cause trouble'";
|
|
|
|
|
if ( $this->db->getType() === 'mysql' ) {
|
|
|
|
|
$check = "'string\'s cause trouble'";
|
|
|
|
|
}
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
$check,
|
|
|
|
|
$this->db->addQuotes( "string's cause trouble" ) );
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-18 08:18:49 +00:00
|
|
|
private function getSharedTableName( $table, $database, $prefix, $format = 'quoted' ) {
|
2016-09-15 17:07:47 +00:00
|
|
|
global $wgSharedDB, $wgSharedTables, $wgSharedPrefix, $wgSharedSchema;
|
2012-07-18 08:18:49 +00:00
|
|
|
|
2016-09-15 17:07:47 +00:00
|
|
|
$this->db->setTableAliases( [
|
|
|
|
|
$table => [
|
|
|
|
|
'dbname' => $database,
|
|
|
|
|
'schema' => null,
|
|
|
|
|
'prefix' => $prefix
|
|
|
|
|
]
|
|
|
|
|
] );
|
2012-07-18 08:18:49 +00:00
|
|
|
|
|
|
|
|
$ret = $this->db->tableName( $table, $format );
|
|
|
|
|
|
2016-09-15 17:07:47 +00:00
|
|
|
$this->db->setTableAliases( array_fill_keys(
|
|
|
|
|
$wgSharedDB ? $wgSharedTables : [],
|
|
|
|
|
[
|
|
|
|
|
'dbname' => $wgSharedDB,
|
|
|
|
|
'schema' => $wgSharedSchema,
|
|
|
|
|
'prefix' => $wgSharedPrefix
|
|
|
|
|
]
|
|
|
|
|
) );
|
2012-07-18 08:18:49 +00:00
|
|
|
|
|
|
|
|
return $ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private function prefixAndQuote( $table, $database = null, $prefix = null, $format = 'quoted' ) {
|
|
|
|
|
if ( $this->db->getType() === 'sqlite' || $format !== 'quoted' ) {
|
|
|
|
|
$quote = '';
|
|
|
|
|
} elseif ( $this->db->getType() === 'mysql' ) {
|
|
|
|
|
$quote = '`';
|
2013-05-26 14:26:41 +00:00
|
|
|
} elseif ( $this->db->getType() === 'oracle' ) {
|
|
|
|
|
$quote = '/*Q*/';
|
2012-07-18 08:18:49 +00:00
|
|
|
} else {
|
|
|
|
|
$quote = '"';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $database !== null ) {
|
2013-05-26 14:26:41 +00:00
|
|
|
if ( $this->db->getType() === 'oracle' ) {
|
|
|
|
|
$database = $quote . $database . '.';
|
|
|
|
|
} else {
|
|
|
|
|
$database = $quote . $database . $quote . '.';
|
|
|
|
|
}
|
2012-07-18 08:18:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $prefix === null ) {
|
|
|
|
|
$prefix = $this->dbPrefix();
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-26 14:26:41 +00:00
|
|
|
if ( $this->db->getType() === 'oracle' ) {
|
2013-11-19 18:03:54 +00:00
|
|
|
return strtoupper( $database . $quote . $prefix . $table );
|
2013-05-26 14:26:41 +00:00
|
|
|
} else {
|
|
|
|
|
return $database . $quote . $prefix . $table . $quote;
|
|
|
|
|
}
|
2012-07-18 08:18:49 +00:00
|
|
|
}
|
|
|
|
|
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testTableNameLocal() {
|
2012-07-18 08:18:49 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
$this->prefixAndQuote( 'tablename' ),
|
|
|
|
|
$this->db->tableName( 'tablename' )
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testTableNameRawLocal() {
|
2012-07-18 08:18:49 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
$this->prefixAndQuote( 'tablename', null, null, 'raw' ),
|
|
|
|
|
$this->db->tableName( 'tablename', 'raw' )
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testTableNameShared() {
|
2012-07-18 08:18:49 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
$this->prefixAndQuote( 'tablename', 'sharedatabase', 'sh_' ),
|
|
|
|
|
$this->getSharedTableName( 'tablename', 'sharedatabase', 'sh_' )
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
$this->prefixAndQuote( 'tablename', 'sharedatabase', null ),
|
|
|
|
|
$this->getSharedTableName( 'tablename', 'sharedatabase', null )
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testTableNameRawShared() {
|
2012-07-18 08:18:49 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
$this->prefixAndQuote( 'tablename', 'sharedatabase', 'sh_', 'raw' ),
|
|
|
|
|
$this->getSharedTableName( 'tablename', 'sharedatabase', 'sh_', 'raw' )
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
$this->prefixAndQuote( 'tablename', 'sharedatabase', null, 'raw' ),
|
|
|
|
|
$this->getSharedTableName( 'tablename', 'sharedatabase', null, 'raw' )
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testTableNameForeign() {
|
2012-07-18 08:18:49 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
$this->prefixAndQuote( 'tablename', 'databasename', '' ),
|
|
|
|
|
$this->db->tableName( 'databasename.tablename' )
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testTableNameRawForeign() {
|
2012-07-18 08:18:49 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
$this->prefixAndQuote( 'tablename', 'databasename', '', 'raw' ),
|
|
|
|
|
$this->db->tableName( 'databasename.tablename', 'raw' )
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testStoredFunctions() {
|
2016-02-17 09:09:32 +00:00
|
|
|
if ( !in_array( wfGetDB( DB_MASTER )->getType(), [ 'mysql', 'postgres' ] ) ) {
|
2012-01-11 20:19:55 +00:00
|
|
|
$this->markTestSkipped( 'MySQL or Postgres required' );
|
|
|
|
|
}
|
|
|
|
|
global $IP;
|
|
|
|
|
$this->dropFunctions();
|
|
|
|
|
$this->functionTest = true;
|
2014-04-24 16:06:21 +00:00
|
|
|
$this->assertTrue(
|
|
|
|
|
$this->db->sourceFile( "$IP/tests/phpunit/data/db/{$this->db->getType()}/functions.sql" )
|
|
|
|
|
);
|
2012-01-11 20:19:55 +00:00
|
|
|
$res = $this->db->query( 'SELECT mw_test_function() AS test', __METHOD__ );
|
|
|
|
|
$this->assertEquals( 42, $res->fetchObject()->test );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private function dropFunctions() {
|
|
|
|
|
$this->db->query( 'DROP FUNCTION IF EXISTS mw_test_function'
|
2016-09-15 21:40:00 +00:00
|
|
|
. ( $this->db->getType() == 'postgres' ? '()' : '' )
|
2012-01-11 20:19:55 +00:00
|
|
|
);
|
|
|
|
|
}
|
2012-11-26 13:34:20 +00:00
|
|
|
|
2013-10-23 22:51:31 +00:00
|
|
|
public function testUnknownTableCorruptsResults() {
|
2016-02-17 09:09:32 +00:00
|
|
|
$res = $this->db->select( 'page', '*', [ 'page_id' => 1 ] );
|
2012-11-26 13:34:20 +00:00
|
|
|
$this->assertFalse( $this->db->tableExists( 'foobarbaz' ) );
|
|
|
|
|
$this->assertInternalType( 'int', $res->numRows() );
|
|
|
|
|
}
|
2015-12-08 01:26:15 +00:00
|
|
|
|
|
|
|
|
public function testTransactionIdle() {
|
|
|
|
|
$db = $this->db;
|
|
|
|
|
|
|
|
|
|
$db->setFlag( DBO_TRX );
|
2016-07-04 18:02:42 +00:00
|
|
|
$called = false;
|
2015-12-08 01:26:15 +00:00
|
|
|
$flagSet = null;
|
2016-09-15 21:40:00 +00:00
|
|
|
$db->onTransactionIdle(
|
|
|
|
|
function () use ( $db, &$flagSet, &$called ) {
|
|
|
|
|
$called = true;
|
|
|
|
|
$flagSet = $db->getFlag( DBO_TRX );
|
|
|
|
|
},
|
|
|
|
|
__METHOD__
|
|
|
|
|
);
|
2015-12-08 01:26:15 +00:00
|
|
|
$this->assertFalse( $flagSet, 'DBO_TRX off in callback' );
|
|
|
|
|
$this->assertTrue( $db->getFlag( DBO_TRX ), 'DBO_TRX restored to default' );
|
2016-07-04 18:02:42 +00:00
|
|
|
$this->assertTrue( $called, 'Callback reached' );
|
2015-12-08 01:26:15 +00:00
|
|
|
|
|
|
|
|
$db->clearFlag( DBO_TRX );
|
|
|
|
|
$flagSet = null;
|
2016-09-15 21:40:00 +00:00
|
|
|
$db->onTransactionIdle(
|
|
|
|
|
function () use ( $db, &$flagSet ) {
|
|
|
|
|
$flagSet = $db->getFlag( DBO_TRX );
|
|
|
|
|
},
|
|
|
|
|
__METHOD__
|
|
|
|
|
);
|
2015-12-08 01:26:15 +00:00
|
|
|
$this->assertFalse( $flagSet, 'DBO_TRX off in callback' );
|
|
|
|
|
$this->assertFalse( $db->getFlag( DBO_TRX ), 'DBO_TRX restored to default' );
|
|
|
|
|
|
|
|
|
|
$db->clearFlag( DBO_TRX );
|
2016-09-15 21:40:00 +00:00
|
|
|
$db->onTransactionIdle(
|
|
|
|
|
function () use ( $db ) {
|
|
|
|
|
$db->setFlag( DBO_TRX );
|
|
|
|
|
},
|
|
|
|
|
__METHOD__
|
|
|
|
|
);
|
2015-12-08 01:26:15 +00:00
|
|
|
$this->assertFalse( $db->getFlag( DBO_TRX ), 'DBO_TRX restored to default' );
|
|
|
|
|
}
|
2016-07-04 18:02:42 +00:00
|
|
|
|
|
|
|
|
public function testTransactionResolution() {
|
|
|
|
|
$db = $this->db;
|
|
|
|
|
|
|
|
|
|
$db->clearFlag( DBO_TRX );
|
|
|
|
|
$db->begin( __METHOD__ );
|
|
|
|
|
$called = false;
|
2016-09-15 21:40:00 +00:00
|
|
|
$db->onTransactionResolution( function () use ( $db, &$called ) {
|
2016-07-04 18:02:42 +00:00
|
|
|
$called = true;
|
|
|
|
|
$db->setFlag( DBO_TRX );
|
|
|
|
|
} );
|
|
|
|
|
$db->commit( __METHOD__ );
|
|
|
|
|
$this->assertFalse( $db->getFlag( DBO_TRX ), 'DBO_TRX restored to default' );
|
|
|
|
|
$this->assertTrue( $called, 'Callback reached' );
|
|
|
|
|
|
|
|
|
|
$db->clearFlag( DBO_TRX );
|
|
|
|
|
$db->begin( __METHOD__ );
|
|
|
|
|
$called = false;
|
2016-09-15 21:40:00 +00:00
|
|
|
$db->onTransactionResolution( function () use ( $db, &$called ) {
|
2016-07-04 18:02:42 +00:00
|
|
|
$called = true;
|
|
|
|
|
$db->setFlag( DBO_TRX );
|
|
|
|
|
} );
|
2016-08-17 21:05:41 +00:00
|
|
|
$db->rollback( __METHOD__, IDatabase::FLUSHING_ALL_PEERS );
|
2016-07-04 18:02:42 +00:00
|
|
|
$this->assertFalse( $db->getFlag( DBO_TRX ), 'DBO_TRX restored to default' );
|
|
|
|
|
$this->assertTrue( $called, 'Callback reached' );
|
|
|
|
|
}
|
2016-08-17 21:05:41 +00:00
|
|
|
|
2016-08-26 07:19:34 +00:00
|
|
|
/**
|
2016-09-26 22:40:07 +00:00
|
|
|
* @covers Database::setTransactionListener()
|
2016-08-26 07:19:34 +00:00
|
|
|
*/
|
|
|
|
|
public function testTransactionListener() {
|
|
|
|
|
$db = $this->db;
|
|
|
|
|
|
2016-09-15 21:40:00 +00:00
|
|
|
$db->setTransactionListener( 'ping', function () use ( $db, &$called ) {
|
2016-08-26 07:19:34 +00:00
|
|
|
$called = true;
|
|
|
|
|
} );
|
|
|
|
|
|
|
|
|
|
$called = false;
|
|
|
|
|
$db->begin( __METHOD__ );
|
|
|
|
|
$db->commit( __METHOD__ );
|
|
|
|
|
$this->assertTrue( $called, 'Callback reached' );
|
|
|
|
|
|
|
|
|
|
$called = false;
|
|
|
|
|
$db->begin( __METHOD__ );
|
|
|
|
|
$db->commit( __METHOD__ );
|
|
|
|
|
$this->assertTrue( $called, 'Callback still reached' );
|
|
|
|
|
|
|
|
|
|
$called = false;
|
|
|
|
|
$db->begin( __METHOD__ );
|
|
|
|
|
$db->rollback( __METHOD__ );
|
|
|
|
|
$this->assertTrue( $called, 'Callback reached' );
|
|
|
|
|
|
|
|
|
|
$db->setTransactionListener( 'ping', null );
|
|
|
|
|
$called = false;
|
|
|
|
|
$db->begin( __METHOD__ );
|
|
|
|
|
$db->commit( __METHOD__ );
|
|
|
|
|
$this->assertFalse( $called, 'Callback not reached' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2016-09-26 22:40:07 +00:00
|
|
|
* @covers Database::flushSnapshot()
|
2016-08-26 07:19:34 +00:00
|
|
|
*/
|
2016-09-08 11:28:52 +00:00
|
|
|
public function testFlushSnapshot() {
|
2016-08-26 07:19:34 +00:00
|
|
|
$db = $this->db;
|
|
|
|
|
|
2016-09-08 11:28:52 +00:00
|
|
|
$db->flushSnapshot( __METHOD__ ); // ok
|
|
|
|
|
$db->flushSnapshot( __METHOD__ ); // ok
|
2016-08-26 07:19:34 +00:00
|
|
|
|
|
|
|
|
$db->setFlag( DBO_TRX, $db::REMEMBER_PRIOR );
|
|
|
|
|
$db->query( 'SELECT 1', __METHOD__ );
|
|
|
|
|
$this->assertTrue( (bool)$db->trxLevel(), "Transaction started." );
|
2016-09-08 11:28:52 +00:00
|
|
|
$db->flushSnapshot( __METHOD__ ); // ok
|
2016-08-26 07:19:34 +00:00
|
|
|
$db->restoreFlags( $db::RESTORE_PRIOR );
|
|
|
|
|
|
|
|
|
|
$this->assertFalse( (bool)$db->trxLevel(), "Transaction cleared." );
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-17 21:05:41 +00:00
|
|
|
public function testGetScopedLock() {
|
|
|
|
|
$db = $this->db;
|
|
|
|
|
|
|
|
|
|
$db->setFlag( DBO_TRX );
|
|
|
|
|
try {
|
|
|
|
|
$this->badLockingMethodImplicit( $db );
|
|
|
|
|
} catch ( RunTimeException $e ) {
|
|
|
|
|
$this->assertTrue( $db->trxLevel() > 0, "Transaction not committed." );
|
|
|
|
|
}
|
|
|
|
|
$db->clearFlag( DBO_TRX );
|
|
|
|
|
$db->rollback( __METHOD__, IDatabase::FLUSHING_ALL_PEERS );
|
|
|
|
|
$this->assertTrue( $db->lockIsFree( 'meow', __METHOD__ ) );
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
$this->badLockingMethodExplicit( $db );
|
|
|
|
|
} catch ( RunTimeException $e ) {
|
|
|
|
|
$this->assertTrue( $db->trxLevel() > 0, "Transaction not committed." );
|
|
|
|
|
}
|
|
|
|
|
$db->rollback( __METHOD__, IDatabase::FLUSHING_ALL_PEERS );
|
|
|
|
|
$this->assertTrue( $db->lockIsFree( 'meow', __METHOD__ ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private function badLockingMethodImplicit( IDatabase $db ) {
|
|
|
|
|
$lock = $db->getScopedLockAndFlush( 'meow', __METHOD__, 1 );
|
|
|
|
|
$db->query( "SELECT 1" ); // trigger DBO_TRX
|
|
|
|
|
throw new RunTimeException( "Uh oh!" );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private function badLockingMethodExplicit( IDatabase $db ) {
|
|
|
|
|
$lock = $db->getScopedLockAndFlush( 'meow', __METHOD__, 1 );
|
|
|
|
|
$db->begin( __METHOD__ );
|
|
|
|
|
throw new RunTimeException( "Uh oh!" );
|
|
|
|
|
}
|
2016-08-22 05:35:12 +00:00
|
|
|
|
|
|
|
|
/**
|
2016-09-26 22:40:07 +00:00
|
|
|
* @covers Database::getFlag(
|
|
|
|
|
* @covers Database::setFlag()
|
|
|
|
|
* @covers Database::restoreFlags()
|
2016-08-22 05:35:12 +00:00
|
|
|
*/
|
|
|
|
|
public function testFlagSetting() {
|
|
|
|
|
$db = $this->db;
|
|
|
|
|
$origTrx = $db->getFlag( DBO_TRX );
|
|
|
|
|
$origSsl = $db->getFlag( DBO_SSL );
|
|
|
|
|
|
2016-09-20 23:24:16 +00:00
|
|
|
$origTrx
|
|
|
|
|
? $db->clearFlag( DBO_TRX, $db::REMEMBER_PRIOR )
|
|
|
|
|
: $db->setFlag( DBO_TRX, $db::REMEMBER_PRIOR );
|
2016-08-22 05:35:12 +00:00
|
|
|
$this->assertEquals( !$origTrx, $db->getFlag( DBO_TRX ) );
|
|
|
|
|
|
2016-09-20 23:24:16 +00:00
|
|
|
$origSsl
|
|
|
|
|
? $db->clearFlag( DBO_SSL, $db::REMEMBER_PRIOR )
|
|
|
|
|
: $db->setFlag( DBO_SSL, $db::REMEMBER_PRIOR );
|
2016-08-22 05:35:12 +00:00
|
|
|
$this->assertEquals( !$origSsl, $db->getFlag( DBO_SSL ) );
|
|
|
|
|
|
2016-09-20 23:24:16 +00:00
|
|
|
$db->restoreFlags( $db::RESTORE_INITIAL );
|
|
|
|
|
$this->assertEquals( $origTrx, $db->getFlag( DBO_TRX ) );
|
|
|
|
|
$this->assertEquals( $origSsl, $db->getFlag( DBO_SSL ) );
|
|
|
|
|
|
|
|
|
|
$origTrx
|
|
|
|
|
? $db->clearFlag( DBO_TRX, $db::REMEMBER_PRIOR )
|
|
|
|
|
: $db->setFlag( DBO_TRX, $db::REMEMBER_PRIOR );
|
|
|
|
|
$origSsl
|
|
|
|
|
? $db->clearFlag( DBO_SSL, $db::REMEMBER_PRIOR )
|
|
|
|
|
: $db->setFlag( DBO_SSL, $db::REMEMBER_PRIOR );
|
2016-08-22 05:35:12 +00:00
|
|
|
|
|
|
|
|
$db->restoreFlags();
|
|
|
|
|
$this->assertEquals( $origSsl, $db->getFlag( DBO_SSL ) );
|
|
|
|
|
$this->assertEquals( !$origTrx, $db->getFlag( DBO_TRX ) );
|
|
|
|
|
|
|
|
|
|
$db->restoreFlags();
|
|
|
|
|
$this->assertEquals( $origSsl, $db->getFlag( DBO_SSL ) );
|
|
|
|
|
$this->assertEquals( $origTrx, $db->getFlag( DBO_TRX ) );
|
|
|
|
|
}
|
2016-09-16 18:32:23 +00:00
|
|
|
|
|
|
|
|
/**
|
2016-09-26 22:40:07 +00:00
|
|
|
* @covers Database::tablePrefix()
|
|
|
|
|
* @covers Database::dbSchema()
|
2016-09-16 18:32:23 +00:00
|
|
|
*/
|
|
|
|
|
public function testMutators() {
|
|
|
|
|
$old = $this->db->tablePrefix();
|
|
|
|
|
$this->assertType( 'string', $old, 'Prefix is string' );
|
|
|
|
|
$this->assertEquals( $old, $this->db->tablePrefix(), "Prefix unchanged" );
|
|
|
|
|
$this->assertEquals( $old, $this->db->tablePrefix( 'xxx' ) );
|
|
|
|
|
$this->assertEquals( 'xxx', $this->db->tablePrefix(), "Prefix set" );
|
|
|
|
|
$this->db->tablePrefix( $old );
|
|
|
|
|
$this->assertNotEquals( 'xxx', $this->db->tablePrefix() );
|
|
|
|
|
|
|
|
|
|
$old = $this->db->dbSchema();
|
|
|
|
|
$this->assertType( 'string', $old, 'Schema is string' );
|
|
|
|
|
$this->assertEquals( $old, $this->db->dbSchema(), "Schema unchanged" );
|
|
|
|
|
$this->assertEquals( $old, $this->db->dbSchema( 'xxx' ) );
|
|
|
|
|
$this->assertEquals( 'xxx', $this->db->dbSchema(), "Schema set" );
|
|
|
|
|
$this->db->dbSchema( $old );
|
|
|
|
|
$this->assertNotEquals( 'xxx', $this->db->dbSchema() );
|
|
|
|
|
}
|
2010-12-14 16:26:35 +00:00
|
|
|
}
|