View Javadoc

1   /*
2    * Copyright 2007 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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   * Tests that Groovy can be loaded via Bean Scripting Framework
31  
32   * @author Kuali Rice Team (rice.collab@kuali.org)
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  }