📄 texttotransitioncriteriatests.java
字号:
/*
* Copyright 2002-2004 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.webflow;
import junit.framework.TestCase;
import org.springframework.binding.convert.ConversionException;
import org.springframework.webflow.Event;
import org.springframework.webflow.RequestContext;
import org.springframework.webflow.TextToTransitionCriteria;
import org.springframework.webflow.TransitionCriteria;
import org.springframework.webflow.convert.FlowConversionService;
import org.springframework.webflow.test.MockRequestContext;
/**
* Test case for OgnlTransitionCriteriaCreator.
*
* @author Rob Harrop
*/
public class TextToTransitionCriteriaTests extends TestCase {
private TextToTransitionCriteria converter = new TextToTransitionCriteria(new FlowConversionService());
public void testAny() {
String expression = "*";
TransitionCriteria criterion = (TransitionCriteria)converter.convert(expression);
RequestContext ctx = getRequestContext();
assertTrue("Criterion should evaluate to true", criterion.test(ctx));
}
public void testStaticEventId() {
String expression = "sample";
TransitionCriteria criterion = (TransitionCriteria)converter.convert(expression);
RequestContext ctx = getRequestContext();
assertTrue("Criterion should evaluate to true", criterion.test(ctx));
}
public void testTrueEvaluation() throws Exception {
String expression = "${flowScope.foo == 'bar'}";
TransitionCriteria criterion = (TransitionCriteria)converter.convert(expression);
RequestContext ctx = getRequestContext();
assertTrue("Criterion should evaluate to true", criterion.test(ctx));
}
public void testFalseEvaluation() throws Exception {
String expression = "${flowScope.foo != 'bar'}";
TransitionCriteria criterion = (TransitionCriteria)converter.convert(expression);
RequestContext ctx = getRequestContext();
assertFalse("Criterion should evaluate to false", criterion.test(ctx));
}
public void testNonBooleanEvaluation() throws Exception {
String expression = "${flowScope.foo}";
TransitionCriteria criterion = (TransitionCriteria)converter.convert(expression);
RequestContext ctx = getRequestContext();
try {
criterion.test(ctx);
fail("Non-boolean evaluations are not allowed");
}
catch (IllegalArgumentException e) {
// success
}
}
public void testInvalidSyntax() throws Exception {
try {
String expression = "${&foo<<m}";
converter.convert(expression);
fail("Syntax error should throw ExpressionSyntaxException");
}
catch (ConversionException ex) {
// success
}
}
public void testEventId() throws Exception {
String expression = "${lastEvent.id == 'sample'}";
TransitionCriteria criterion = (TransitionCriteria)converter.convert(expression);
RequestContext ctx = getRequestContext();
assertTrue("Criterion should evaluate to true", criterion.test(ctx));
expression = "${#result == 'sample'}";
criterion = (TransitionCriteria)converter.convert(expression);
assertTrue("Criterion should evaluate to true", criterion.test(ctx));
}
private RequestContext getRequestContext() {
MockRequestContext ctx = new MockRequestContext();
ctx.getFlowScope().setAttribute("foo", "bar");
ctx.setLastEvent(new Event(this, "sample"));
return ctx;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -