-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathignoreCommentTest.php
More file actions
127 lines (106 loc) · 4.04 KB
/
Copy pathignoreCommentTest.php
File metadata and controls
127 lines (106 loc) · 4.04 KB
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
<?php
namespace PHPSQLParser\Test\Parser;
use PHPSQLParser\PHPSQLParser;
class IgnoreCommentsTest extends \PHPUnit_Framework_TestCase
{
public function testComments1()
{
$sqlWithComment = 'SELECT a, -- inline comment in SELECT section
b
FROM test';
$sqlWithoutComment = 'SELECT a,
b
FROM test';
$this->commonAssert($sqlWithComment, $sqlWithoutComment, 'inline comment in SELECT section');
}
public function testComments2()
{
$sqlWithComment = 'SELECT a, /*
multi line
comment
*/
b
FROM test';
$sqlWithoutComment = 'SELECT a,
b
FROM test';
$this->commonAssert($sqlWithComment, $sqlWithoutComment, 'multi line comment');
}
public function testComments3()
{
$sqlWithComment = 'SELECT a
FROM test -- inline comment in FROM section';
$sqlWithoutComment = 'SELECT a
FROM test';
$this->commonAssert($sqlWithComment, $sqlWithoutComment, 'inline comment in FROM section');
}
public function testComments4()
{
$sqlWithComment = 'SELECT a
FROM test
WHERE id = 3 -- inline comment in WHERE section
AND b > 4';
$sqlWithoutComment = 'SELECT a
FROM test
WHERE id = 3
AND b > 4';
$this->commonAssert($sqlWithComment, $sqlWithoutComment, 'inline comment in WHERE section');
}
public function testComments5()
{
$sqlWithComment = 'SELECT a
FROM test
LIMIT -- inline comment in LIMIT section
10';
$sqlWithoutComment = 'SELECT a
FROM test
LIMIT
10';
$this->commonAssert($sqlWithComment, $sqlWithoutComment, 'inline comment in LIMIT section');
}
public function testComments6()
{
$sqlWithComment = 'SELECT a
FROM test
ORDER BY -- inline comment in ORDER BY section
a DESC';
$sqlWithoutComment = 'SELECT a
FROM test
ORDER BY
a DESC';
$this->commonAssert($sqlWithComment, $sqlWithoutComment, 'inline comment in ORDER BY section');
}
public function testComments7()
{
$sqlWithComment = 'INSERT INTO a (id) -- inline comment in INSERT section
VALUES (1)';
$sqlWithoutComment = 'INSERT INTO a (id)
VALUES (1)';
$this->commonAssert($sqlWithComment, $sqlWithoutComment, 'inline comment in INSERT section');
}
public function testComments8()
{
$sqlWithComment = 'INSERT INTO a (id)
VALUES (1) -- inline comment in VALUES section';
$sqlWithoutComment = 'INSERT INTO a (id)
VALUES (1)';
$this->commonAssert($sqlWithComment, $sqlWithoutComment, 'inline comment in VALUES section');
}
public function testComments9()
{
$sqlWithComment = 'INSERT INTO a (id) -- inline comment in INSERT section;
SELECT id -- inline comment in SELECT section
FROM x';
$sqlWithoutComment = 'INSERT INTO a (id)
SELECT id
FROM x';
$this->commonAssert($sqlWithComment, $sqlWithoutComment, 'inline comment in SELECT section');
}
private function commonAssert($sqlWithComment, $sqlWithoutComment, $assertMessage)
{
$withComment = (new PHPSQLParser($sqlWithComment, false, ['ignore_comment' => true]))->parsed;
$withoutComment = (new PHPSQLParser($sqlWithoutComment, false, ['ignore_comment' => false]))->parsed;
$this->assertEquals($withComment, $withoutComment, $assertMessage);
}
}
?>