1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kew.rule;
17
18 import org.apache.bsf.BSFEngine;
19 import org.apache.bsf.BSFException;
20 import org.apache.bsf.BSFManager;
21 import org.codehaus.groovy.bsf.GroovyEngine;
22 import org.junit.Ignore;
23 import org.junit.Test;
24
25 import groovy.lang.Binding;
26 import groovy.lang.GroovyShell;
27
28
29
30
31
32
33
34 public class LoadEmbeddedGroovyTest {
35 @Test public void testNativeGroovy() {
36 Binding binding = new Binding();
37 binding.setVariable("foo", new Integer(2));
38 GroovyShell shell = new GroovyShell(binding);
39
40 Object value = shell.evaluate("println 'Hello World!'; x = 123; return foo * 10");
41 assert value.equals(new Integer(20));
42 assert binding.getVariable("x").equals(new Integer(123));
43 }
44
45 @Test public void testBSFGroovy() throws BSFException {
46 BSFManager.registerScriptingEngine(
47 "groovy",
48 "org.codehaus.groovy.bsf.GroovyEngine",
49 new String[] { "groovy", "gy" }
50 );
51 GroovyEngine ge = new GroovyEngine();
52 BSFManager manager = new BSFManager();
53 BSFEngine engine = manager.loadScriptingEngine("groovy");
54 manager.eval("groovy", "LoadEmbeddedGroovyTest", 0, 0, "println 'hello embedded groovy world'");
55 }
56
57 @Test public void testBSFGroovy2() throws BSFException {
58 BSFManager.registerScriptingEngine(
59 "groovy",
60 "org.codehaus.groovy.bsf.GroovyEngine",
61 new String[] { "groovy", "gy" }
62 );
63 GroovyEngine ge = new GroovyEngine();
64 BSFManager manager = new BSFManager();
65 BSFEngine engine = manager.loadScriptingEngine("groovy");
66 manager.eval("groovy", "LoadEmbeddedGroovyTest", 0, 0, "var = 0\r\ndef foo() {\r\n var++\r\n }\r\n foo()");
67 }
68 }