mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-12 11:11:31 +00:00
resolved conflicts
This commit is contained in:
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace PhpMyAdmin\SqlParser\Tests\Parser;
|
||||
|
||||
use PhpMyAdmin\SqlParser\Exceptions\ParserException;
|
||||
use PhpMyAdmin\SqlParser\Parser;
|
||||
use PhpMyAdmin\SqlParser\Tests\TestCase;
|
||||
use PhpMyAdmin\SqlParser\Token;
|
||||
use PhpMyAdmin\SqlParser\TokensList;
|
||||
|
||||
use function sprintf;
|
||||
|
||||
class ParserTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* @dataProvider parseProvider
|
||||
*/
|
||||
public function testParse(string $test): void
|
||||
{
|
||||
$this->runParserTest($test);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[][]
|
||||
*/
|
||||
public static function parseProvider(): array
|
||||
{
|
||||
return [
|
||||
['parser/parse'],
|
||||
['parser/parse2'],
|
||||
['parser/parseDelimiter'],
|
||||
];
|
||||
}
|
||||
|
||||
public function testUnrecognizedStatement(): void
|
||||
{
|
||||
$parser = new Parser('SELECT 1; FROM');
|
||||
$this->assertEquals(
|
||||
'Unrecognized statement type.',
|
||||
$parser->errors[0]->getMessage()
|
||||
);
|
||||
}
|
||||
|
||||
public function testUnrecognizedKeyword(): void
|
||||
{
|
||||
$parser = new Parser('SELECT 1 FROM foo PARTITION(bar, baz) AS');
|
||||
$this->assertEquals(
|
||||
'Unrecognized keyword.',
|
||||
$parser->errors[0]->getMessage()
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @runInSeparateProcess
|
||||
* @preserveGlobalState disabled
|
||||
*/
|
||||
public function testError(): void
|
||||
{
|
||||
$parser = new Parser(new TokensList());
|
||||
|
||||
$parser->error('error #1', new Token('foo'), 1);
|
||||
$parser->error(sprintf('%2$s #%1$d', 2, 'error'), new Token('bar'), 2);
|
||||
|
||||
$this->assertEquals(
|
||||
$parser->errors,
|
||||
[
|
||||
new ParserException('error #1', new Token('foo'), 1),
|
||||
new ParserException('error #2', new Token('bar'), 2),
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
public function testErrorStrict(): void
|
||||
{
|
||||
$this->expectExceptionCode(3);
|
||||
$this->expectExceptionMessage('strict error');
|
||||
$this->expectException(ParserException::class);
|
||||
$parser = new Parser(new TokensList());
|
||||
$parser->strict = true;
|
||||
|
||||
$parser->error('strict error', new Token('foo'), 3);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user