MySQL2MySQLi/UnitTests/Function/RealEscapeStringTest.php

77 lines
2.9 KiB
PHP

<?php
if (!defined("PHPUnit_MAIN_METHOD")) {
define("PHPUnit_MAIN_METHOD", "MySQLConverterTool_Function_RealEscapeStringTest::main");
}
require_once('GenericTest.php');
require_once('MySQLConverterTool/Function/RealEscapeString.php');
class MySQLConverterTool_UnitTests_Function_RealEscapeStringTest extends MySQLConverterTool_UnitTests_Function_GenericTest {
public static function main() {
require_once "PHPUnit/TextUI/TestRunner.php";
$suite = new PHPUnit_Framework_TestSuite("MySQLConverterTool_UnitTests_Function_RealEscapeStringTest");
$result = PHPUnit_TextUI_TestRunner::run($suite);
}
protected function setUp() {
$this->gen = new MySQLConverterTool_Function_RealEscapeString('mysqli_real_escape_string');
$this->default_conn = $this->gen->ston_name;
}
public function testHandle() {
// string mysql_real_escape_string ( string unescaped_string [, resource link_identifier] )
// string mysqli_real_escape_string ( mysqli link, string escapestr )
// too few parameters: parse error
list($warning, $code) = $this->gen->handle($this->buildParams(array()));
$this->assertNotNull($warning);
$this->assertNull($code);
// mysql_real_escape_string(<unescaped_string>)
list($warning, $code) = $this->gen->handle($this->buildParams(array('<unescaped_string>')));
$this->assertNotNull($warning);
$this->assertEquals(
sprintf('((isset(%s) && is_object(%s)) ? %s(%s, %s) : ((trigger_error("[MySQLConverterToo] Fix the mysql_escape_string() call! This code does not work.", E_USER_ERROR)) ? "" : ""))',
$this->default_conn,
$this->default_conn,
$this->gen->new_name,
$this->default_conn,
'<unescaped_string>'
),
$code
);
// mysql_real_escape_string(<unescaped_string>)
list($warning, $code) = $this->gen->handle($this->buildParams(array('<unescaped_string>', '<link_identifier>')));
$this->assertNull($warning);
$this->assertEquals(
sprintf('%s(%s, %s)',
$this->gen->new_name,
'<link_identifier>',
'<unescaped_string>'
),
$code
);
// too many parameters: parse error
list($warning, $code) = $this->gen->handle($this->buildParams(array('<unescaped_string>', '<link_identifier>', '<ERROR>')));
$this->assertNotNull($warning);
$this->assertNull($code);
}
}
if (PHPUnit_MAIN_METHOD == "MySQLConverterTool_Function_RealEscapeStringTest::main") {
MySQLConverterTool_Function_RealEscapeStringTest::main();
}
?>