135 lines
3.6 KiB
PHP
135 lines
3.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\SqlParser\Tests\Components;
|
|
|
|
use PhpMyAdmin\SqlParser\Components\OptionsArray;
|
|
use PhpMyAdmin\SqlParser\Parser;
|
|
use PhpMyAdmin\SqlParser\Tests\TestCase;
|
|
|
|
class OptionsArrayTest extends TestCase
|
|
{
|
|
public function testParse(): void
|
|
{
|
|
$component = OptionsArray::parse(
|
|
new Parser(),
|
|
$this->getTokensList('A B = /*comment*/ (test) C'),
|
|
[
|
|
'A' => 1,
|
|
'B' => [
|
|
2,
|
|
'var',
|
|
],
|
|
'C' => 3,
|
|
]
|
|
);
|
|
$this->assertEquals(
|
|
[
|
|
1 => 'A',
|
|
2 => [
|
|
'name' => 'B',
|
|
'expr' => '(test)',
|
|
'value' => 'test',
|
|
'equals' => true,
|
|
],
|
|
3 => 'C',
|
|
],
|
|
$component->options
|
|
);
|
|
}
|
|
|
|
public function testParseExpr(): void
|
|
{
|
|
$component = OptionsArray::parse(
|
|
new Parser(),
|
|
$this->getTokensList('SUM = (3 + 5) RESULT = 8'),
|
|
[
|
|
'SUM' => [
|
|
1,
|
|
'expr',
|
|
['parenthesesDelimited' => true],
|
|
],
|
|
'RESULT' => [
|
|
2,
|
|
'var',
|
|
],
|
|
]
|
|
);
|
|
$this->assertEquals('(3 + 5)', (string) $component->has('SUM', true));
|
|
$this->assertEquals('8', $component->has('RESULT'));
|
|
}
|
|
|
|
public function testHas(): void
|
|
{
|
|
$component = OptionsArray::parse(
|
|
new Parser(),
|
|
$this->getTokensList('A B = /*comment*/ (test) C'),
|
|
[
|
|
'A' => 1,
|
|
'B' => [
|
|
2,
|
|
'var',
|
|
],
|
|
'C' => 3,
|
|
]
|
|
);
|
|
$this->assertTrue($component->has('A'));
|
|
$this->assertEquals('test', $component->has('B'));
|
|
$this->assertTrue($component->has('C'));
|
|
$this->assertFalse($component->has('D'));
|
|
}
|
|
|
|
public function testRemove(): void
|
|
{
|
|
/* Assertion 1 */
|
|
$component = new OptionsArray(['a', 'b', 'c']);
|
|
$this->assertTrue($component->remove('b'));
|
|
$this->assertFalse($component->remove('d'));
|
|
$this->assertEquals($component->options, [0 => 'a', 2 => 'c']);
|
|
|
|
/* Assertion 2 */
|
|
$component = OptionsArray::parse(
|
|
new Parser(),
|
|
$this->getTokensList('A B = /*comment*/ (test) C'),
|
|
[
|
|
'A' => 1,
|
|
'B' => [
|
|
2,
|
|
'var',
|
|
],
|
|
'C' => 3,
|
|
]
|
|
);
|
|
$this->assertEquals('test', $component->has('B'));
|
|
$component->remove('B');
|
|
$this->assertFalse($component->has('B'));
|
|
}
|
|
|
|
public function testMerge(): void
|
|
{
|
|
$component = new OptionsArray(['a']);
|
|
$component->merge(['b', 'c']);
|
|
$this->assertEquals($component->options, ['a', 'b', 'c']);
|
|
}
|
|
|
|
public function testBuild(): void
|
|
{
|
|
$component = new OptionsArray(
|
|
[
|
|
'ALL',
|
|
'SQL_CALC_FOUND_ROWS',
|
|
[
|
|
'name' => 'MAX_STATEMENT_TIME',
|
|
'value' => '42',
|
|
'equals' => true,
|
|
],
|
|
]
|
|
);
|
|
$this->assertEquals(
|
|
OptionsArray::build($component),
|
|
'ALL SQL_CALC_FOUND_ROWS MAX_STATEMENT_TIME=42'
|
|
);
|
|
}
|
|
}
|