* Added support for configuration of an arbitrary number of commons-style file repositories. * Split Image.php into filerepo/File.php and filerepo/LocalFile.php * Renamed Image::getImagePath() to File::getPath() * Added initial support for timestamp-based file fetching (OldLocalFile), to be expanded upon by aaron. * Changed the interface for Image/File object creation: use wfFindFile() or wfLocalFile() depending on semantics * ImageGallery::add() now accepts a title object as the first parameter * Moved file handling operations on upload from SpecialUpload to File * Removed path-related functions from ImageFunctions.php. Removed static path accessors from File. * Added a Content-Disposition header to thumb.php output * Improved thumb.php error handling * Updated the unit test suite to kind of partially work with modern computers. RunTests.php doesn't work just yet. Fixed an actual regression that the test suite detected -- moved some defines to Defines.php where they will be loaded consistently.
80 lines
1.8 KiB
PHP
80 lines
1.8 KiB
PHP
<?php
|
|
|
|
class DatabaseTest extends PHPUnit_Framework_TestCase {
|
|
var $db;
|
|
|
|
function setUp() {
|
|
$this->db = wfGetDB( DB_SLAVE );
|
|
}
|
|
|
|
function testAddQuotesNull() {
|
|
$this->assertEquals(
|
|
'NULL',
|
|
$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() {
|
|
$this->assertEquals(
|
|
"'string\'s cause trouble'",
|
|
$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" ) );
|
|
$this->assertEquals(
|
|
"SELECT * FROM cur WHERE cur_namespace='4' AND cur_title='Snicker\'s_paradox'",
|
|
$sql);
|
|
}
|
|
|
|
function testFillPreparedBang() {
|
|
$sql = $this->db->fillPrepared(
|
|
'SELECT user_id FROM ! WHERE user_name=?',
|
|
array( '"user"', "Slash's Dot" ) );
|
|
$this->assertEquals(
|
|
"SELECT user_id FROM \"user\" WHERE user_name='Slash\'s Dot'",
|
|
$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);
|
|
}
|
|
|
|
}
|
|
|
|
?>
|