📄 rollbackruletests.java
字号:
/*
* Copyright 2002-2005 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.transaction.interceptor;
import javax.servlet.ServletException;
import junit.framework.TestCase;
import org.springframework.aop.framework.AopConfigException;
import org.springframework.beans.FatalBeanException;
import org.springframework.mail.MailSendException;
/**
*
* @author Rod Johnson
* @since 09.04.2003
*/
public class RollbackRuleTests extends TestCase {
public void testFoundImmediatelyWithString() {
RollbackRuleAttribute rr = new RollbackRuleAttribute("java.lang.Exception");
assertTrue(rr.getDepth(new Exception()) == 0);
}
public void testFoundImmediatelyWithClass() {
RollbackRuleAttribute rr = new RollbackRuleAttribute(Exception.class);
assertTrue(rr.getDepth(new Exception()) == 0);
}
public void testNotFound() {
RollbackRuleAttribute rr = new RollbackRuleAttribute("javax.servlet.ServletException");
assertTrue(rr.getDepth(new MailSendException("")) == -1);
}
public void testAncestry() {
RollbackRuleAttribute rr = new RollbackRuleAttribute("java.lang.Exception");
// Exception -> Runtime -> NestedRuntime -> MailException -> MailSendException
assertTrue(rr.getDepth(new MailSendException("")) == 4);
}
public void testAlwaysTrue() {
RollbackRuleAttribute rr = new RollbackRuleAttribute("java.lang.Throwable");
assertTrue(rr.getDepth(new MailSendException("")) > 0);
assertTrue(rr.getDepth(new ServletException()) > 0);
assertTrue(rr.getDepth(new FatalBeanException(null,null)) > 0);
assertTrue(rr.getDepth(new RuntimeException()) > 0);
}
public void testConstructorArgMustBeAThrowableClass() {
try {
new RollbackRuleAttribute(StringBuffer.class);
fail("Can't construct a RollbackRuleAttribute without a throwable");
}
catch (AopConfigException ex) {
// OK
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -