Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PMA_Linter_Test.php « libraries « test - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 56667170a5cfc4e5093b52772c7f011484aecb61 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Tests for Linter.class.php.
 *
 * @package PhpMyAdmin-test
 */

/*
 * Include to test.
 */
require_once 'libraries/Linter.class.php';

/**
 * Tests for Linter.class.php.
 *
 * @package PhpMyAdmin-test
 */
class PMA_Linter_Test extends PHPUnit_Framework_TestCase
{

    /**
     * Test for PMA_Linter::getLines
     *
     * @return void
     */
    public function testGetLines()
    {
        $this->assertEquals(array(0), PMA_Linter::getLines(''));
        $this->assertEquals(array(0, 2), PMA_Linter::getLines("a\nb"));
        $this->assertEquals(array(0, 4, 7), PMA_Linter::getLines("abc\nde\n"));
    }

    /**
     * Test for PMA_Linter::findLineNumberAndColumn
     *
     * @return void
     */
    public function testFindLineNumberAndColumn()
    {
        // Let the analyzed string be:
        //      ^abc$
        //      ^de$
        //      ^$
        //
        // Where `^` is the beginning of the line and `$` the end of the line.
        //
        // Positions of each character (by line):
        //      ( a, 0), ( b, 1), ( c, 2), (\n, 3),
        //      ( d, 4), ( e, 5), (\n, 6),
        //      (\n, 7).
        $this->assertEquals(
            array(1, 0),
            PMA_Linter::findLineNumberAndColumn(array(0, 4, 7), 4)
        );
        $this->assertEquals(
            array(1, 1),
            PMA_Linter::findLineNumberAndColumn(array(0, 4, 7), 5)
        );
        $this->assertEquals(
            array(1, 2),
            PMA_Linter::findLineNumberAndColumn(array(0, 4, 7), 6)
        );
        $this->assertEquals(
            array(2, 0),
            PMA_Linter::findLineNumberAndColumn(array(0, 4, 7), 7)
        );
    }

    /**
     * Test for PMA_Linter::lint
     *
     * @return void
     */
    public function testLintEmpty()
    {
        $this->expectOutputString('[]');
        PMA_Linter::lint('');
    }

    /**
     * Test for PMA_Linter::lint
     *
     * @return void
     */
    public function testLintNoErrors()
    {
        $this->expectOutputString('[]');
        PMA_Linter::lint('SELECT * FROM tbl');
    }

    /**
     * Test for PMA_Linter::lint
     *
     * @return void
     */
    public function testLintErrors()
    {
        $this->expectOutputString(
            json_encode(
                array(
                    array(
                        'message' => 'Unrecognized data type. (near <code>IN</code>)',
                        'fromLine' => 0,
                        'fromColumn' => 22,
                        'toLine' => 0,
                        'toColumn' => 24,
                        'severity' => 'error',
                    ),
                    array(
                        'message' => 'A closing bracket was expected. (near <code>IN</code>)',
                        'fromLine' => 0,
                        'fromColumn' => 22,
                        'toLine' => 0,
                        'toColumn' => 24,
                        'severity' => 'error',
                    )
                )
            )
        );
        PMA_Linter::lint('CREATE TABLE tbl ( id IN');
    }

    /**
     * Test for PMA_Linter::lint
     *
     * @return void
     */
    public function testLongQuery()
    {
        $this->expectOutputString(
            json_encode(
                array(
                    array(
                        'message' => 'The linting is disabled for this query because it exceededs the maxmimum length.',
                        'fromLine' => 0,
                        'fromColumn' => 0,
                        'toLine' => 0,
                        'toColumn' => 0,
                        'severity' => 'warning',
                    )
                )
            )
        );
        PMA_Linter::lint(str_repeat(";", 10001));
    }
}