summaryrefslogtreecommitdiffstats
path: root/tests/Utils/ErrorTest.php
blob: be8e17deb8fea3a72479c0b0b0b56923324e81b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php

namespace PhpMyAdmin\SqlParser\Tests\Utils;

use PhpMyAdmin\SqlParser\Lexer;
use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
use PhpMyAdmin\SqlParser\Utils\Error;

class ErrorTest extends TestCase
{
    public function testGet()
    {
        $lexer = new Lexer('SELECT * FROM db..tbl $');
        $parser = new Parser($lexer->list);
        $this->assertEquals(
            array(
                array(
                    'Unexpected character.',
                    0,
                    '$',
                    22,
                ),
                array(
                    'Unexpected dot.',
                    0,
                    '.',
                    17,
                ),
            ),
            Error::get(array($lexer, $parser))
        );
    }

    public function testFormat()
    {
        $this->assertEquals(
            array('#1: error msg (near "token" at position 100)'),
            Error::format(array(array('error msg', 42, 'token', 100)))
        );
        $this->assertEquals(
            array('#1: error msg (near "token" at position 100)', '#2: error msg (near "token" at position 200)'),
            Error::format(array(array('error msg', 42, 'token', 100), array('error msg', 42, 'token', 200)))
        );
    }
}