|
35 | 35 | *
|
36 | 36 | * @author Benjamin Bentmann
|
37 | 37 | */
|
38 |
| -public class GroovyScriptInterpreterTest { |
| 38 | +class GroovyScriptInterpreterTest { |
39 | 39 | @Test
|
40 |
| - public void testEvaluateScript() throws Exception { |
| 40 | + void testEvaluateScript() throws Exception { |
41 | 41 | ByteArrayOutputStream out = new ByteArrayOutputStream();
|
42 |
| - ScriptInterpreter interpreter = new GroovyScriptInterpreter(); |
43 |
| - assertEquals( |
44 |
| - Boolean.TRUE, interpreter.evaluateScript("print \"Test\"\nreturn true", null, new PrintStream(out))); |
| 42 | + try (ScriptInterpreter interpreter = new GroovyScriptInterpreter()) { |
| 43 | + assertEquals( |
| 44 | + Boolean.TRUE, |
| 45 | + interpreter.evaluateScript("print \"Test\"\nreturn true", null, new PrintStream(out))); |
| 46 | + } |
45 | 47 | assertEquals("Test", out.toString());
|
46 | 48 | }
|
47 | 49 |
|
48 | 50 | @Test
|
49 |
| - public void testEvaluateScriptWithDefaultClassPath() throws Exception { |
| 51 | + void testEvaluateScriptWithDefaultClassPath() throws Exception { |
50 | 52 | ByteArrayOutputStream out = new ByteArrayOutputStream();
|
51 |
| - ScriptInterpreter interpreter = new GroovyScriptInterpreter(); |
52 |
| - |
53 |
| - assertEquals( |
54 |
| - Boolean.TRUE, |
55 |
| - interpreter.evaluateScript( |
56 |
| - "print getClass().getResource( \"/class-path.txt\" ).getPath().toURI().getPath()\nreturn true", |
57 |
| - null, |
58 |
| - new PrintStream(out))); |
| 53 | + try (ScriptInterpreter interpreter = new GroovyScriptInterpreter()) { |
| 54 | + assertEquals( |
| 55 | + Boolean.TRUE, |
| 56 | + interpreter.evaluateScript( |
| 57 | + "print getClass().getResource( \"/class-path.txt\" ).getPath().toURI().getPath()\nreturn true", |
| 58 | + null, |
| 59 | + new PrintStream(out))); |
| 60 | + } |
59 | 61 |
|
60 | 62 | String testClassPath =
|
61 | 63 | new File("target/test-classes/class-path.txt").toURI().getPath();
|
62 | 64 | assertEquals(testClassPath, out.toString());
|
63 | 65 | }
|
64 | 66 |
|
65 | 67 | @Test
|
66 |
| - public void testEvaluateScriptWithCustomClassPath() throws Exception { |
| 68 | + void testEvaluateScriptWithCustomClassPath() throws Exception { |
67 | 69 | ByteArrayOutputStream out = new ByteArrayOutputStream();
|
68 |
| - ScriptInterpreter interpreter = new GroovyScriptInterpreter(); |
| 70 | + try (ScriptInterpreter interpreter = new GroovyScriptInterpreter()) { |
69 | 71 |
|
70 |
| - List<String> classPath = Collections.singletonList(new File("src/test-class-path").getAbsolutePath()); |
71 |
| - interpreter.setClassPath(classPath); |
| 72 | + List<String> classPath = Collections.singletonList(new File("src/test-class-path").getAbsolutePath()); |
| 73 | + interpreter.setClassPath(classPath); |
72 | 74 |
|
73 |
| - assertEquals( |
74 |
| - Boolean.TRUE, |
75 |
| - interpreter.evaluateScript( |
76 |
| - "print getClass().getResource( \"/class-path.txt\" ).getPath().toURI().getPath()\nreturn true", |
77 |
| - null, |
78 |
| - new PrintStream(out))); |
| 75 | + assertEquals( |
| 76 | + Boolean.TRUE, |
| 77 | + interpreter.evaluateScript( |
| 78 | + "print getClass().getResource( \"/class-path.txt\" ).getPath().toURI().getPath()\nreturn true", |
| 79 | + null, |
| 80 | + new PrintStream(out))); |
| 81 | + } |
79 | 82 |
|
80 | 83 | String testClassPath =
|
81 | 84 | new File("src/test-class-path/class-path.txt").toURI().getPath();
|
82 | 85 | assertEquals(testClassPath, out.toString());
|
83 | 86 | }
|
84 | 87 |
|
85 | 88 | @Test
|
86 |
| - public void testEvaluateScriptVars() throws Exception { |
| 89 | + void testEvaluateScriptVars() throws Exception { |
87 | 90 | Map<String, Object> vars = new HashMap<>();
|
88 | 91 | vars.put("testVar", "data");
|
89 | 92 | ByteArrayOutputStream out = new ByteArrayOutputStream();
|
90 |
| - ScriptInterpreter interpreter = new GroovyScriptInterpreter(); |
91 |
| - assertEquals( |
92 |
| - Boolean.TRUE, interpreter.evaluateScript("print testVar\nreturn true", vars, new PrintStream(out))); |
| 93 | + try (ScriptInterpreter interpreter = new GroovyScriptInterpreter()) { |
| 94 | + assertEquals( |
| 95 | + Boolean.TRUE, interpreter.evaluateScript("print testVar\nreturn true", vars, new PrintStream(out))); |
| 96 | + } |
93 | 97 | assertEquals("data", out.toString());
|
94 | 98 | }
|
95 | 99 | }
|
0 commit comments