提交 31f5961d 编写于 作者: C Chris Beams

moving remoting.*, scheduling.* unit tests from .testsuite -> .context, .web

上级 f5b1cae7
......@@ -16,46 +16,40 @@
package org.springframework.scheduling.timer;
import junit.framework.TestCase;
import org.springframework.test.AssertThrows;
import static org.junit.Assert.*;
import java.util.Timer;
import org.junit.Test;
/**
* Unit tests for the {@link TimerTaskExecutor} class.
*
* @author Rick Evans
* @author Chris Beams
*/
public final class TimerTaskExecutorTests extends TestCase {
public final class TimerTaskExecutorTests {
@Test(expected=IllegalArgumentException.class)
public void testExecuteChokesWithNullTimer() throws Exception {
new AssertThrows(IllegalArgumentException.class) {
public void test() throws Exception {
TimerTaskExecutor executor = new TimerTaskExecutor();
executor.execute(new NoOpRunnable());
}
}.runTest();
TimerTaskExecutor executor = new TimerTaskExecutor();
executor.execute(new NoOpRunnable());
}
@Test(expected=IllegalArgumentException.class)
public void testExecuteChokesWithNullTask() throws Exception {
new AssertThrows(IllegalArgumentException.class) {
public void test() throws Exception {
TimerTaskExecutor executor = new TimerTaskExecutor(new Timer());
executor.execute(null);
}
}.runTest();
TimerTaskExecutor executor = new TimerTaskExecutor(new Timer());
executor.execute(null);
}
@Test(expected=IllegalArgumentException.class)
public void testExecuteChokesWithNegativeDelay() throws Exception {
new AssertThrows(IllegalArgumentException.class) {
public void test() throws Exception {
TimerTaskExecutor executor = new TimerTaskExecutor(new Timer());
executor.setDelay(-10);
executor.execute(new NoOpRunnable());
}
}.runTest();
TimerTaskExecutor executor = new TimerTaskExecutor(new Timer());
executor.setDelay(-10);
executor.execute(new NoOpRunnable());
}
@Test
public void testExecuteReallyDoesScheduleTheSuppliedTask() throws Exception {
final Object monitor = new Object();
......@@ -71,14 +65,12 @@ public final class TimerTaskExecutorTests extends TestCase {
assertTrue("Supplied task (a Runnable) is not being invoked.", task.isRunWasCalled());
}
@Test(expected=IllegalArgumentException.class)
public void testCtorWithNullTimer() throws Exception {
new AssertThrows(IllegalArgumentException.class) {
public void test() throws Exception {
new TimerTaskExecutor(null);
}
}.runTest();
new TimerTaskExecutor(null);
}
@Test
public void testCreateTimerMethodIsCalledIfNoTimerIsExplicitlySupplied() throws Exception {
CreationAwareTimerTaskExecutor executor = new CreationAwareTimerTaskExecutor();
executor.afterPropertiesSet();
......@@ -87,6 +79,7 @@ public final class TimerTaskExecutorTests extends TestCase {
executor.isCreateTimerWasCalled());
}
@Test
public void testCreateTimerMethodIsNotCalledIfTimerIsExplicitlySupplied() throws Exception {
CreationAwareTimerTaskExecutor executor = new CreationAwareTimerTaskExecutor();
executor.setTimer(new Timer());
......@@ -96,6 +89,7 @@ public final class TimerTaskExecutorTests extends TestCase {
executor.isCreateTimerWasCalled());
}
@Test
public void testThatTheDestroyCallbackCancelsTheTimerIfNoTimerIsExplicitlySupplied() throws Exception {
final CancelAwareTimer timer = new CancelAwareTimer();
......@@ -113,6 +107,7 @@ public final class TimerTaskExecutorTests extends TestCase {
timer.isCancelWasCalled());
}
@Test
public void testThatTheDestroyCallbackDoesNotCancelTheTimerIfTheTimerWasSuppliedExplictly() throws Exception {
TimerTaskExecutor executor = new TimerTaskExecutor();
CancelAwareTimer timer = new CancelAwareTimer();
......
/*
* 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.scheduling;
/**
* @author Juergen Hoeller
* @since 09.10.2004
*/
public class TestMethodInvokingTask {
public int counter = 0;
private Object lock = new Object();
public void doSomething() {
this.counter++;
}
public void doWait() {
this.counter++;
// wait until stop is called
synchronized (this.lock) {
try {
this.lock.wait();
}
catch (InterruptedException e) {
// fall through
}
}
}
public void stop() {
synchronized(this.lock) {
this.lock.notify();
}
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册