-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathJSQLParserExceptionTest.java
More file actions
84 lines (70 loc) · 2.48 KB
/
JSQLParserExceptionTest.java
File metadata and controls
84 lines (70 loc) · 2.48 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
package net.sf.jsqlparser.parser;
import net.sf.jsqlparser.JSQLParserException;
import org.junit.After;
import org.junit.AfterClass;
import static org.junit.Assert.*;
import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.nio.charset.StandardCharsets;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
/**
*
* @author schwitters
*/
public class JSQLParserExceptionTest {
public JSQLParserExceptionTest() {
}
@BeforeClass
public static void setUpClass() {
}
@AfterClass
public static void tearDownClass() {
}
@Before
public void setUp() {
}
@After
public void tearDown() {
}
/**
* Test of parseExpression method, of class CCJSqlParserUtil.
*/
@Test
public void testExceptionWithCause() throws Exception {
IllegalArgumentException arg1 = new IllegalArgumentException();
JSQLParserException ex1=new JSQLParserException("", arg1);
assertSame(arg1, ex1.getCause());
}
@Test
public void testExceptionPrintStacktrace() throws Exception {
IllegalArgumentException arg1 = new IllegalArgumentException("BRATKARTOFFEL");
JSQLParserException ex1=new JSQLParserException("", arg1);
StringWriter sw = new StringWriter();
ex1.printStackTrace(new PrintWriter(sw, true));
assertTrue(sw.toString().contains("BRATKARTOFFEL"));
ByteArrayOutputStream bos = new ByteArrayOutputStream();
ex1.printStackTrace(new PrintStream(bos, true));
assertTrue(new String(bos.toByteArray(), StandardCharsets.UTF_8).contains("BRATKARTOFFEL"));
}
@Test
public void testExceptionPrintStacktraceNoCause() throws Exception {
JSQLParserException ex1=new JSQLParserException("", null);
StringWriter sw = new StringWriter();
ex1.printStackTrace(new PrintWriter(sw, true));
assertFalse(sw.toString().contains("BRATKARTOFFEL"));
ByteArrayOutputStream bos = new ByteArrayOutputStream();
ex1.printStackTrace(new PrintStream(bos, true));
assertFalse(new String(bos.toByteArray(), StandardCharsets.UTF_8).contains("BRATKARTOFFEL"));
}
@Test
public void testExceptionDefaultContructorCauseInit() throws Exception {
JSQLParserException ex1=new JSQLParserException();
assertNull(ex1.getCause());
ex1=new JSQLParserException((Throwable) null);
assertNull(ex1.getCause());
}
}