2010-12-14 16:26:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @group Database
|
2012-01-11 20:19:55 +00:00
|
|
|
* @group DatabaseBase
|
2010-12-14 16:26:35 +00:00
|
|
|
*/
|
2010-12-28 18:17:16 +00:00
|
|
|
class DatabaseTest extends MediaWikiTestCase {
|
2012-01-11 20:19:55 +00:00
|
|
|
var $db, $functionTest = false;
|
2010-12-14 16:26:35 +00:00
|
|
|
|
|
|
|
|
function setUp() {
|
2012-01-11 20:19:55 +00:00
|
|
|
$this->db = wfGetDB( DB_MASTER );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function tearDown() {
|
|
|
|
|
if ( $this->functionTest ) {
|
|
|
|
|
$this->dropFunctions();
|
|
|
|
|
$this->functionTest = false;
|
|
|
|
|
}
|
2010-12-14 16:26:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testAddQuotesNull() {
|
|
|
|
|
$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 ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testAddQuotesInt() {
|
|
|
|
|
# returning just "1234" should be ok too, though...
|
|
|
|
|
# maybe
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
"'1234'",
|
|
|
|
|
$this->db->addQuotes( 1234 ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testAddQuotesFloat() {
|
|
|
|
|
# returning just "1234.5678" would be ok too, though
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
"'1234.5678'",
|
|
|
|
|
$this->db->addQuotes( 1234.5678 ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testAddQuotesString() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
"'string'",
|
|
|
|
|
$this->db->addQuotes( 'string' ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testAddQuotesStringQuote() {
|
|
|
|
|
$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" ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testFillPreparedEmpty() {
|
|
|
|
|
$sql = $this->db->fillPrepared(
|
|
|
|
|
'SELECT * FROM interwiki', array() );
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
"SELECT * FROM interwiki",
|
|
|
|
|
$sql );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testFillPreparedQuestion() {
|
|
|
|
|
$sql = $this->db->fillPrepared(
|
|
|
|
|
'SELECT * FROM cur WHERE cur_namespace=? AND cur_title=?',
|
|
|
|
|
array( 4, "Snicker's_paradox" ) );
|
|
|
|
|
|
|
|
|
|
$check = "SELECT * FROM cur WHERE cur_namespace='4' AND cur_title='Snicker''s_paradox'";
|
|
|
|
|
if ( $this->db->getType() === 'mysql' ) {
|
|
|
|
|
$check = "SELECT * FROM cur WHERE cur_namespace='4' AND cur_title='Snicker\'s_paradox'";
|
|
|
|
|
}
|
|
|
|
|
$this->assertEquals( $check, $sql );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testFillPreparedBang() {
|
|
|
|
|
$sql = $this->db->fillPrepared(
|
|
|
|
|
'SELECT user_id FROM ! WHERE user_name=?',
|
|
|
|
|
array( '"user"', "Slash's Dot" ) );
|
|
|
|
|
|
|
|
|
|
$check = "SELECT user_id FROM \"user\" WHERE user_name='Slash''s Dot'";
|
|
|
|
|
if ( $this->db->getType() === 'mysql' ) {
|
|
|
|
|
$check = "SELECT user_id FROM \"user\" WHERE user_name='Slash\'s Dot'";
|
|
|
|
|
}
|
|
|
|
|
$this->assertEquals( $check, $sql );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testFillPreparedRaw() {
|
|
|
|
|
$sql = $this->db->fillPrepared(
|
|
|
|
|
"SELECT * FROM cur WHERE cur_title='This_\\&_that,_WTF\\?\\!'",
|
|
|
|
|
array( '"user"', "Slash's Dot" ) );
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
"SELECT * FROM cur WHERE cur_title='This_&_that,_WTF?!'",
|
|
|
|
|
$sql );
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-11 20:19:55 +00:00
|
|
|
/**
|
|
|
|
|
* @group Broken
|
|
|
|
|
*/
|
|
|
|
|
function testStoredFunctions() {
|
|
|
|
|
if ( !in_array( wfGetDB( DB_MASTER )->getType(), array( 'mysql', 'postgres' ) ) ) {
|
|
|
|
|
$this->markTestSkipped( 'MySQL or Postgres required' );
|
|
|
|
|
}
|
|
|
|
|
global $IP;
|
|
|
|
|
$this->dropFunctions();
|
|
|
|
|
$this->functionTest = true;
|
|
|
|
|
$this->assertTrue( $this->db->sourceFile( "$IP/tests/phpunit/data/db/{$this->db->getType()}/functions.sql" ) );
|
|
|
|
|
$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'
|
|
|
|
|
. ( $this->db->getType() == 'postgres' ? '()' : '' )
|
|
|
|
|
);
|
|
|
|
|
}
|
2010-12-14 16:26:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|