VariableAndFunctionTests.java 3.4 KB
Newer Older
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
/*
 * Copyright 2004-2008 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.expression.spel;

import org.springframework.expression.spel.standard.StandardEvaluationContext;

/**
 * Tests the evaluation of expressions that access variables and functions (lambda/java).
 * 
 * @author Andy Clement
 */
public class VariableAndFunctionTests extends ExpressionTestCase {

	public void testVariableAccess() {
		evaluate("#answer", "42", Integer.class, SHOULD_BE_WRITABLE);
		evaluate("#answer / 2", 21, Integer.class, SHOULD_NOT_BE_WRITABLE);
	}

	public void testFunctionAccess01() {
		evaluate("#reverseInt(1,2,3)", "int[3]{3,2,1}", int[].class);
		evaluate("#reverseInt('1',2,3)", "int[3]{3,2,1}", int[].class); // requires type conversion of '1' to 1
35
		evaluateAndCheckError("#reverseInt(1)", SpelMessages.INCORRECT_NUMBER_OF_ARGUMENTS_TO_FUNCTION, 1, 1, 3);
36 37 38 39 40 41
	}

	public void testFunctionAccess02() {
		evaluate("#reverseString('hello')", "olleh", String.class);
		evaluate("#reverseString(37)", "73", String.class); // requires type conversion of 37 to '37'
	}
42

43
	public void testCallVarargsFunction() {
44 45 46 47 48 49 50 51 52 53
		evaluate("#varargsFunctionReverseStringsAndMerge('a','b','c')", "cba", String.class);
		evaluate("#varargsFunctionReverseStringsAndMerge('a')", "a", String.class);
		evaluate("#varargsFunctionReverseStringsAndMerge()", "", String.class);
		evaluate("#varargsFunctionReverseStringsAndMerge('b',25)", "25b", String.class);
		evaluate("#varargsFunctionReverseStringsAndMerge(25)", "25", String.class);
		evaluate("#varargsFunctionReverseStringsAndMerge2(1,'a','b','c')", "1cba", String.class);
		evaluate("#varargsFunctionReverseStringsAndMerge2(2,'a')", "2a", String.class);
		evaluate("#varargsFunctionReverseStringsAndMerge2(3)", "3", String.class);
		evaluate("#varargsFunctionReverseStringsAndMerge2(4,'b',25)", "425b", String.class);
		evaluate("#varargsFunctionReverseStringsAndMerge2(5,25)", "525", String.class);
54
	}
55

56
	public void testCallingFunctionsIncorrectly() {
57 58
		evaluateAndCheckError("#varargsFunctionReverseStringsAndMerge(new StringBuilder())",
				SpelMessages.TYPE_CONVERSION_ERROR);
59
	}
60

61 62 63
	public void testCallingIllegalFunctions() throws Exception {
		SpelExpressionParser parser = new SpelExpressionParser();
		StandardEvaluationContext ctx = new StandardEvaluationContext();
64
		ctx.setVariable("notStatic", this.getClass().getMethod("nonStatic"));
65 66 67 68 69
		try {
			@SuppressWarnings("unused")
			Object v = parser.parseExpression("#notStatic()").getValue(ctx);
			fail("Should have failed with exception - cannot call non static method that way");
		} catch (SpelException se) {
70
			if (se.getMessageUnformatted() != SpelMessages.FUNCTION_MUST_BE_STATIC) {
71
				se.printStackTrace();
72 73
				fail("Should have failed a message about the function needing to be static, not: "
						+ se.getMessageUnformatted());
74 75 76
			}
		}
	}
77 78 79 80

	public void nonStatic() {
	}

81
}