2010-12-14 16:26:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
2017-02-10 18:09:05 +00:00
|
|
|
use Wikimedia\Rdbms\IDatabase;
|
2017-07-26 09:04:34 +00:00
|
|
|
use Wikimedia\Rdbms\LBFactorySingle;
|
2017-07-20 20:17:11 +00:00
|
|
|
use Wikimedia\Rdbms\TransactionProfiler;
|
|
|
|
|
use Wikimedia\TestingAccessWrapper;
|
2017-02-10 18:09:05 +00:00
|
|
|
|
2017-07-20 20:17:11 +00:00
|
|
|
class DatabaseTest extends PHPUnit_Framework_TestCase {
|
2010-12-14 16:26:35 +00:00
|
|
|
|
2012-10-08 10:56:20 +00:00
|
|
|
protected function setUp() {
|
2017-07-20 20:17:11 +00:00
|
|
|
$this->db = new DatabaseTestHelper( __CLASS__ . '::' . $this->getName() );
|
2012-01-11 20:19:55 +00:00
|
|
|
}
|
|
|
|
|
|
2017-07-20 20:17:11 +00:00
|
|
|
public static function provideAddQuotes() {
|
|
|
|
|
return [
|
|
|
|
|
[ null, 'NULL' ],
|
|
|
|
|
[ 1234, "'1234'" ],
|
|
|
|
|
[ 1234.5678, "'1234.5678'" ],
|
|
|
|
|
[ 'string', "'string'" ],
|
|
|
|
|
[ 'string\'s cause trouble', "'string\'s cause trouble'" ],
|
|
|
|
|
];
|
2010-12-14 16:26:35 +00:00
|
|
|
}
|
2016-09-15 21:40:00 +00:00
|
|
|
|
2013-10-18 10:36:09 +00:00
|
|
|
/**
|
2017-07-20 20:17:11 +00:00
|
|
|
* @dataProvider provideAddQuotes
|
|
|
|
|
* @covers Wikimedia\Rdbms\Database::addQuotes
|
2013-10-18 10:36:09 +00:00
|
|
|
*/
|
2017-07-20 20:17:11 +00:00
|
|
|
public function testAddQuotes( $input, $expected ) {
|
|
|
|
|
$this->assertEquals( $expected, $this->db->addQuotes( $input ) );
|
2010-12-14 16:26:35 +00:00
|
|
|
}
|
|
|
|
|
|
2017-07-20 20:17:11 +00:00
|
|
|
public static function provideTableName() {
|
|
|
|
|
// Formatting is mostly ignored since addIdentifierQuotes is abstract.
|
|
|
|
|
// For testing of addIdentifierQuotes, see actual Database subclas tests.
|
|
|
|
|
return [
|
|
|
|
|
'local' => [
|
|
|
|
|
'tablename',
|
|
|
|
|
'tablename',
|
|
|
|
|
'quoted',
|
|
|
|
|
],
|
|
|
|
|
'local-raw' => [
|
|
|
|
|
'tablename',
|
|
|
|
|
'tablename',
|
|
|
|
|
'raw',
|
|
|
|
|
],
|
|
|
|
|
'shared' => [
|
|
|
|
|
'sharedb.tablename',
|
|
|
|
|
'tablename',
|
|
|
|
|
'quoted',
|
|
|
|
|
[ 'dbname' => 'sharedb', 'schema' => null, 'prefix' => '' ],
|
|
|
|
|
],
|
|
|
|
|
'shared-raw' => [
|
|
|
|
|
'sharedb.tablename',
|
|
|
|
|
'tablename',
|
|
|
|
|
'raw',
|
|
|
|
|
[ 'dbname' => 'sharedb', 'schema' => null, 'prefix' => '' ],
|
|
|
|
|
],
|
|
|
|
|
'shared-prefix' => [
|
|
|
|
|
'sharedb.sh_tablename',
|
|
|
|
|
'tablename',
|
|
|
|
|
'quoted',
|
|
|
|
|
[ 'dbname' => 'sharedb', 'schema' => null, 'prefix' => 'sh_' ],
|
|
|
|
|
],
|
|
|
|
|
'shared-prefix-raw' => [
|
|
|
|
|
'sharedb.sh_tablename',
|
|
|
|
|
'tablename',
|
|
|
|
|
'raw',
|
|
|
|
|
[ 'dbname' => 'sharedb', 'schema' => null, 'prefix' => 'sh_' ],
|
|
|
|
|
],
|
|
|
|
|
'foreign' => [
|
|
|
|
|
'databasename.tablename',
|
|
|
|
|
'databasename.tablename',
|
|
|
|
|
'quoted',
|
|
|
|
|
],
|
|
|
|
|
'foreign-raw' => [
|
|
|
|
|
'databasename.tablename',
|
|
|
|
|
'databasename.tablename',
|
|
|
|
|
'raw',
|
|
|
|
|
],
|
|
|
|
|
];
|
2010-12-14 16:26:35 +00:00
|
|
|
}
|
|
|
|
|
|
2017-07-20 20:17:11 +00:00
|
|
|
/**
|
|
|
|
|
* @dataProvider provideTableName
|
|
|
|
|
* @covers Wikimedia\Rdbms\Database::tableName
|
|
|
|
|
*/
|
|
|
|
|
public function testTableName( $expected, $table, $format, array $alias = null ) {
|
|
|
|
|
if ( $alias ) {
|
|
|
|
|
$this->db->setTableAliases( [ $table => $alias ] );
|
2013-05-26 14:26:41 +00:00
|
|
|
}
|
2012-07-18 08:18:49 +00:00
|
|
|
$this->assertEquals(
|
2017-07-20 20:17:11 +00:00
|
|
|
$expected,
|
|
|
|
|
$this->db->tableName( $table, $format ?: 'quoted' )
|
2012-07-18 08:18:49 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-20 20:17:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Wikimedia\Rdbms\Database::onTransactionIdle
|
|
|
|
|
* @covers Wikimedia\Rdbms\Database::runOnTransactionIdleCallbacks
|
|
|
|
|
*/
|
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
|
|
|
|
2017-07-26 09:04:34 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Wikimedia\Rdbms\Database::onTransactionPreCommitOrIdle
|
|
|
|
|
* @covers Wikimedia\Rdbms\Database::runOnTransactionPreCommitCallbacks
|
|
|
|
|
*/
|
|
|
|
|
public function testTransactionPreCommitOrIdle() {
|
|
|
|
|
$db = $this->getMockDB( [ 'isOpen' ] );
|
|
|
|
|
$db->method( 'isOpen' )->willReturn( true );
|
|
|
|
|
$db->clearFlag( DBO_TRX );
|
|
|
|
|
|
|
|
|
|
$this->assertFalse( $db->getFlag( DBO_TRX ), 'DBO_TRX is not set' );
|
|
|
|
|
|
|
|
|
|
$called = false;
|
|
|
|
|
$db->onTransactionPreCommitOrIdle(
|
|
|
|
|
function () use ( &$called ) {
|
|
|
|
|
$called = true;
|
|
|
|
|
},
|
|
|
|
|
__METHOD__
|
|
|
|
|
);
|
|
|
|
|
$this->assertTrue( $called, 'Called when idle' );
|
|
|
|
|
|
|
|
|
|
$db->begin( __METHOD__ );
|
|
|
|
|
$called = false;
|
|
|
|
|
$db->onTransactionPreCommitOrIdle(
|
|
|
|
|
function () use ( &$called ) {
|
|
|
|
|
$called = true;
|
|
|
|
|
},
|
|
|
|
|
__METHOD__
|
|
|
|
|
);
|
|
|
|
|
$this->assertFalse( $called, 'Not called when transaction is active' );
|
|
|
|
|
$db->commit( __METHOD__ );
|
|
|
|
|
$this->assertTrue( $called, 'Called when transaction is committed' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Wikimedia\Rdbms\Database::onTransactionPreCommitOrIdle
|
|
|
|
|
* @covers Wikimedia\Rdbms\Database::runOnTransactionPreCommitCallbacks
|
|
|
|
|
*/
|
|
|
|
|
public function testTransactionPreCommitOrIdle_TRX() {
|
|
|
|
|
$db = $this->getMockDB( [ 'isOpen' ] );
|
|
|
|
|
$db->method( 'isOpen' )->willReturn( true );
|
|
|
|
|
$db->setFlag( DBO_TRX );
|
|
|
|
|
|
|
|
|
|
$lbFactory = LBFactorySingle::newFromConnection( $db );
|
|
|
|
|
// Ask for the connectin so that LB sets internal state
|
|
|
|
|
// about this connection being the master connection
|
|
|
|
|
$lb = $lbFactory->getMainLB();
|
|
|
|
|
$conn = $lb->openConnection( $lb->getWriterIndex() );
|
|
|
|
|
$this->assertSame( $db, $conn, 'Same DB instance' );
|
|
|
|
|
$this->assertTrue( $db->getFlag( DBO_TRX ), 'DBO_TRX is set' );
|
|
|
|
|
|
|
|
|
|
$called = false;
|
|
|
|
|
$db->onTransactionPreCommitOrIdle(
|
|
|
|
|
function () use ( &$called ) {
|
|
|
|
|
$called = true;
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
$this->assertFalse( $called, 'Not called when idle if DBO_TRX is set' );
|
|
|
|
|
|
|
|
|
|
$lbFactory->beginMasterChanges( __METHOD__ );
|
|
|
|
|
$this->assertFalse( $called, 'Not called when lb-transaction is active' );
|
|
|
|
|
|
|
|
|
|
$lbFactory->commitMasterChanges( __METHOD__ );
|
|
|
|
|
$this->assertTrue( $called, 'Called when lb-transaction is committed' );
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-20 20:17:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Wikimedia\Rdbms\Database::onTransactionResolution
|
|
|
|
|
* @covers Wikimedia\Rdbms\Database::runOnTransactionIdleCallbacks
|
|
|
|
|
*/
|
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
|
|
|
/**
|
2017-07-20 20:17:11 +00:00
|
|
|
* @covers Wikimedia\Rdbms\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' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-07-20 20:17:11 +00:00
|
|
|
* Use this mock instead of DatabaseTestHelper for cases where
|
|
|
|
|
* DatabaseTestHelper is too inflexibile due to mocking too much
|
|
|
|
|
* or being too restrictive about fname matching (e.g. for tests
|
|
|
|
|
* that assert behaviour when the name is a mismatch, we need to
|
|
|
|
|
* catch the error here instead of there).
|
|
|
|
|
*
|
|
|
|
|
* @return Database
|
|
|
|
|
*/
|
|
|
|
|
private function getMockDB( $methods = [] ) {
|
|
|
|
|
static $abstractMethods = [
|
|
|
|
|
'affectedRows',
|
|
|
|
|
'closeConnection',
|
|
|
|
|
'dataSeek',
|
|
|
|
|
'doQuery',
|
|
|
|
|
'fetchObject', 'fetchRow',
|
|
|
|
|
'fieldInfo', 'fieldName',
|
|
|
|
|
'getSoftwareLink', 'getServerVersion',
|
|
|
|
|
'getType',
|
|
|
|
|
'indexInfo',
|
|
|
|
|
'insertId',
|
|
|
|
|
'lastError', 'lastErrno',
|
|
|
|
|
'numFields', 'numRows',
|
|
|
|
|
'open',
|
|
|
|
|
'strencode',
|
|
|
|
|
];
|
|
|
|
|
$db = $this->getMockBuilder( Database::class )
|
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
|
->setMethods( array_values( array_unique( array_merge(
|
|
|
|
|
$abstractMethods,
|
|
|
|
|
$methods
|
|
|
|
|
) ) ) )
|
|
|
|
|
->getMock();
|
|
|
|
|
$wdb = TestingAccessWrapper::newFromObject( $db );
|
|
|
|
|
$wdb->trxProfiler = new TransactionProfiler();
|
|
|
|
|
$wdb->connLogger = new \Psr\Log\NullLogger();
|
|
|
|
|
$wdb->queryLogger = new \Psr\Log\NullLogger();
|
|
|
|
|
return $db;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers Wikimedia\Rdbms\Database::flushSnapshot
|
2016-08-26 07:19:34 +00:00
|
|
|
*/
|
2016-09-08 11:28:52 +00:00
|
|
|
public function testFlushSnapshot() {
|
2017-07-20 20:17:11 +00:00
|
|
|
$db = $this->getMockDB( [ 'isOpen' ] );
|
|
|
|
|
$db->method( 'isOpen' )->willReturn( true );
|
2016-08-26 07:19:34 +00:00
|
|
|
|
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() {
|
2017-07-20 20:17:11 +00:00
|
|
|
$db = $this->getMockDB( [ 'isOpen' ] );
|
|
|
|
|
$db->method( 'isOpen' )->willReturn( true );
|
2016-08-17 21:05:41 +00:00
|
|
|
|
|
|
|
|
$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
|
|
|
|
|
|
|
|
/**
|
2017-07-20 20:17:11 +00:00
|
|
|
* @covers Wikimedia\Rdbms\Database::getFlag
|
|
|
|
|
* @covers Wikimedia\Rdbms\Database::setFlag
|
|
|
|
|
* @covers Wikimedia\Rdbms\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
|
|
|
|
|
|
|
|
/**
|
2017-07-20 20:17:11 +00:00
|
|
|
* @covers Wikimedia\Rdbms\Database::tablePrefix
|
|
|
|
|
* @covers Wikimedia\Rdbms\Database::dbSchema
|
2016-09-16 18:32:23 +00:00
|
|
|
*/
|
|
|
|
|
public function testMutators() {
|
|
|
|
|
$old = $this->db->tablePrefix();
|
2017-07-20 20:17:11 +00:00
|
|
|
$this->assertInternalType( 'string', $old, 'Prefix is string' );
|
2016-09-16 18:32:23 +00:00
|
|
|
$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();
|
2017-07-20 20:17:11 +00:00
|
|
|
$this->assertInternalType( 'string', $old, 'Schema is string' );
|
2016-09-16 18:32:23 +00:00
|
|
|
$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
|
|
|
}
|