1 |
|
package org.codehaus.mojo.sql; |
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
import junit.framework.TestCase; |
23 |
|
|
|
|
| 0% |
Uncovered Elements: 30 (30) |
Complexity: 6 |
Complexity Density: 0.25 |
|
24 |
|
public class SqlSplitterTest extends TestCase |
25 |
|
{ |
26 |
|
|
|
|
| 0% |
Uncovered Elements: 16 (16) |
Complexity: 1 |
Complexity Density: 0.06 |
4
-
|
|
27 |
0
|
public void testContainsSqlString() throws Exception... |
28 |
|
{ |
29 |
0
|
containsNot( "" ); |
30 |
0
|
containsNot( " " ); |
31 |
0
|
containsNot( " \t " ); |
32 |
|
|
33 |
0
|
contains( ";", 1 ); |
34 |
0
|
contains( "SELECT * from myTable;", 22 ); |
35 |
|
|
36 |
0
|
contains( "SELECT * from myTable; -- with sl comment", 22 ); |
37 |
0
|
contains( "SELECT * from myTable; /* with part comment */", 22 ); |
38 |
|
|
39 |
0
|
contains( "SELECT * from myTable /* with part comment inside*/ ; ", 54 ); |
40 |
|
|
41 |
0
|
contains( "SELECT * from myTable /* with ; semicolon*/ ; ", 46 ); |
42 |
|
|
43 |
0
|
contains( "INSERT INTO testTable (thevalue) VALUES ('value !'); -- comment at the end", 53 ); |
44 |
|
|
45 |
|
|
46 |
0
|
contains( "INSERT INTO testTable (thevalue) VALUES ('value \" !');", 55 ); |
47 |
|
|
48 |
|
|
49 |
0
|
contains( "INSERT INTO testTable (thevalue) VALUES (\"value ' !\");", 55 ); |
50 |
|
|
51 |
0
|
contains( "INSERT INTO testTable (thevalue) VALUES (\"value -- \");", 55 ); |
52 |
0
|
contains( "INSERT INTO testTable (thevalue) VALUES ('value -- ');", 55 ); |
53 |
|
|
54 |
0
|
containsNot( "SELECT * from myTable where value = ';' AND -- semicolon is quoted!" ); |
55 |
|
|
56 |
0
|
contains( "INSERT INTO testTable (thevalue) VALUES (' text '' other ');", 60 ); |
57 |
|
|
58 |
|
} |
59 |
|
|
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 1 |
Complexity Density: 0.25 |
4
-
|
|
60 |
0
|
public void testMsSQLStrings() throws Exception... |
61 |
|
{ |
62 |
0
|
String del = "GO"; |
63 |
|
|
64 |
0
|
containsNot( "SELECT COUNT(*) FROM Logs", del ); |
65 |
0
|
containsNot( "SELECT * FROM TPersons", del ); |
66 |
0
|
contains( "GO", del, 2 ); |
67 |
|
} |
68 |
|
|
69 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
70 |
0
|
private void contains( String sql, int expectedIndex ) throws Exception... |
71 |
|
{ |
72 |
0
|
contains( sql, ";", expectedIndex ); |
73 |
|
} |
74 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
75 |
0
|
private void containsNot( String sql ) throws Exception... |
76 |
|
{ |
77 |
0
|
containsNot( sql, ";" ); |
78 |
|
} |
79 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
80 |
0
|
private void contains( String sql, String delimiter, int expectedIndex ) throws Exception... |
81 |
|
{ |
82 |
0
|
assertEquals( sql, SqlSplitter.containsSqlEnd( sql, delimiter ), expectedIndex); |
83 |
|
} |
84 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
85 |
0
|
private void containsNot( String sql, String delimiter ) throws Exception... |
86 |
|
{ |
87 |
0
|
assertTrue( sql, SqlSplitter.containsSqlEnd( sql, delimiter ) == SqlSplitter.NO_END); |
88 |
|
} |
89 |
|
} |