mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
49 lines
1020 B
PHP
49 lines
1020 B
PHP
<?php
|
|
|
|
namespace SilverStripe\View\Tests\Parsers;
|
|
|
|
use SilverStripe\Dev\SapphireTest;
|
|
use SilverStripe\View\Parsers\SQLFormatter;
|
|
|
|
class SQLFormatterTest extends SapphireTest
|
|
{
|
|
|
|
public function testNewlineHanding()
|
|
{
|
|
$formatter = new SQLFormatter();
|
|
|
|
$sqlBefore = <<<SQL
|
|
SELECT Test.Foo, Test.Bar FROM Test WHERE 'From' = "Where"
|
|
SQL;
|
|
$sqlAfter = <<<SQL
|
|
SELECT Test.Foo, Test.Bar
|
|
FROM Test
|
|
WHERE 'From' = "Where"
|
|
SQL;
|
|
|
|
$this->assertEquals(
|
|
$formatter->formatPlain($sqlBefore),
|
|
$sqlAfter,
|
|
'correct replacement of newlines and don\'t replace non-uppercase tokens'
|
|
);
|
|
|
|
$sqlBefore = <<<SQL
|
|
SELECT Test.Foo, Test.Bar
|
|
FROM Test
|
|
WHERE
|
|
'From' = "Where"
|
|
SQL;
|
|
$sqlAfter = <<<SQL
|
|
SELECT Test.Foo, Test.Bar
|
|
FROM Test
|
|
WHERE
|
|
'From' = "Where"
|
|
SQL;
|
|
$this->assertEquals(
|
|
$formatter->formatPlain($sqlBefore),
|
|
$sqlAfter,
|
|
'Leave existing newlines and indentation in place'
|
|
);
|
|
}
|
|
}
|