/* * Copyright 2002-2016 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.integration.scripting.jsr223; import static org.junit.Assert.assertEquals; import java.util.HashMap; import java.util.Map; import org.junit.Test; import org.springframework.core.io.ClassPathResource; import org.springframework.core.io.Resource; import org.springframework.integration.scripting.ScriptExecutor; import org.springframework.scripting.support.ResourceScriptSource; import org.springframework.scripting.support.StaticScriptSource; /** * @author David Turanski * @author Artem Bilan */ public class Jsr223ScriptExecutorTests { @Test public void test() { ScriptExecutor executor = ScriptExecutorFactory.getScriptExecutor("jruby"); executor.executeScript(new StaticScriptSource("'hello, world'")); executor.executeScript(new StaticScriptSource("'hello, again'")); Map<String, Object> variables = new HashMap<String, Object>(); Map<String, Object> headers = new HashMap<String, Object>(); headers.put("one", 1); headers.put("two", "two"); headers.put("three", 3); variables.put("payload", "payload"); variables.put("headers", headers); Resource resource = new ClassPathResource("/org/springframework/integration/scripting/jsr223/print_message.rb"); String result = (String) executor.executeScript(new ResourceScriptSource(resource), variables); assertEquals("payload modified", result.substring(0, "payload modified".length())); } @Test public void testJs() { ScriptExecutor executor = ScriptExecutorFactory.getScriptExecutor("js"); Object obj = executor.executeScript(new StaticScriptSource("function js(){ return 'js';} js();")); assertEquals("js", obj.toString()); } @Test public void testPython() { ScriptExecutor executor = ScriptExecutorFactory.getScriptExecutor("python"); Object obj = executor.executeScript(new StaticScriptSource("x=2")); assertEquals(2, obj); obj = executor.executeScript(new StaticScriptSource("def foo(y):\n\tx=y\n\treturn y\nz=foo(2)")); assertEquals(2, obj); } @Test(expected = IllegalArgumentException.class) public void testInvalidLanguageThrowsIllegalArgumentException() { ScriptExecutorFactory.getScriptExecutor("foo"); } }