124 lines
3.0 KiB
PHP
124 lines
3.0 KiB
PHP
<?php
|
|
|
|
namespace Medoo\Tests;
|
|
|
|
use Medoo\Medoo;
|
|
use InvalidArgumentException;
|
|
|
|
/**
|
|
* @coversDefaultClass \Medoo\Medoo
|
|
*/
|
|
class QuoteTest extends MedooTestCase
|
|
{
|
|
/**
|
|
* @covers ::quote()
|
|
* @dataProvider typesProvider
|
|
*/
|
|
public function testQuote($type)
|
|
{
|
|
$this->setType($type);
|
|
|
|
$quotedString = $this->database->quote("Co'mpl''ex \"st'\"ring");
|
|
|
|
$expected = [
|
|
'mysql' => <<<EOD
|
|
'Co\'mpl\'\'ex \"st\'\"ring'
|
|
EOD,
|
|
'mssql' => <<<EOD
|
|
'Co''mpl''''ex "st''"ring'
|
|
EOD,
|
|
'sqlite' => <<<EOD
|
|
'Co''mpl''''ex "st''"ring'
|
|
EOD,
|
|
'pgsql' => <<<EOD
|
|
'Co''mpl''''ex "st''"ring'
|
|
EOD,
|
|
'oracle' => <<<EOD
|
|
'Co''mpl''''ex "st''"ring'
|
|
EOD
|
|
];
|
|
|
|
$this->assertEquals($expected[$type], $quotedString);
|
|
}
|
|
|
|
/**
|
|
* @covers ::columnQuote()
|
|
*/
|
|
public function testColumnQuote()
|
|
{
|
|
$this->assertEquals('"ColumnName"', $this->database->columnQuote("ColumnName"));
|
|
$this->assertEquals('"Column"."name"', $this->database->columnQuote("Column.name"));
|
|
$this->assertEquals('"Column"."Name"', $this->database->columnQuote("Column.Name"));
|
|
|
|
$this->assertEquals('"ネーム"', $this->database->columnQuote("ネーム"));
|
|
}
|
|
|
|
public function columnNamesProvider(): array
|
|
{
|
|
return [
|
|
["9ColumnName"],
|
|
["@ColumnName"],
|
|
[".ColumnName"],
|
|
["ColumnName."],
|
|
["ColumnName (alias)"]
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @covers ::columnQuote()
|
|
* @dataProvider columnNamesProvider
|
|
*/
|
|
public function testIncorrectColumnQuote($column)
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
|
|
$this->database->columnQuote($column);
|
|
}
|
|
|
|
/**
|
|
* @covers ::tableQuote()
|
|
*/
|
|
public function testTableQuote()
|
|
{
|
|
$this->assertEquals('"TableName"', $this->database->tableQuote("TableName"));
|
|
$this->assertEquals('"_table"', $this->database->tableQuote("_table"));
|
|
|
|
$this->assertEquals('"アカウント"', $this->database->tableQuote("アカウント"));
|
|
}
|
|
|
|
/**
|
|
* @covers ::tableQuote()
|
|
*/
|
|
public function testPrefixTableQuote()
|
|
{
|
|
$database = new Medoo([
|
|
'testMode' => true,
|
|
'prefix' => 'PREFIX_'
|
|
]);
|
|
|
|
$this->assertEquals('"PREFIX_TableName"', $database->tableQuote("TableName"));
|
|
}
|
|
|
|
public function tableNamesProvider(): array
|
|
{
|
|
return [
|
|
["9TableName"],
|
|
["@TableName"],
|
|
[".TableName"],
|
|
["TableName."],
|
|
["Table.name"]
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @covers ::tableQuote()
|
|
* @dataProvider tableNamesProvider
|
|
*/
|
|
public function testIncorrectTableQuote($table)
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
|
|
$this->database->tableQuote($table);
|
|
}
|
|
}
|