Browse Source

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

pull/23217/head
Chris Beams 17 years ago
parent
commit
31f5961dce
  1. 0
      org.springframework.context/src/test/java/org/springframework/remoting/rmi/RmiSupportTests.java
  2. 0
      org.springframework.context/src/test/java/org/springframework/remoting/support/RemoteInvocationUtilsTests.java
  3. 0
      org.springframework.context/src/test/java/org/springframework/scheduling/backportconcurrent/ScheduledExecutorFactoryBeanTests.java
  4. 0
      org.springframework.context/src/test/java/org/springframework/scheduling/concurrent/ConcurrentTaskExecutorTests.java
  5. 0
      org.springframework.context/src/test/java/org/springframework/scheduling/concurrent/ScheduledExecutorFactoryBeanTests.java
  6. 49
      org.springframework.context/src/test/java/org/springframework/scheduling/timer/TimerTaskExecutorTests.java
  7. 52
      org.springframework.testsuite/src/test/java/org/springframework/scheduling/TestMethodInvokingTask.java
  8. 0
      org.springframework.web/src/test/java/org/springframework/remoting/caucho/CauchoRemotingTests.java
  9. 0
      org.springframework.web/src/test/java/org/springframework/remoting/httpinvoker/HttpInvokerTests.java
  10. 0
      org.springframework.web/src/test/java/org/springframework/remoting/jaxrpc/JaxRpcSupportTests.java
  11. 0
      org.springframework.web/src/test/java/org/springframework/remoting/jaxws/JaxWsSupportTests.java
  12. 0
      org.springframework.web/src/test/java/org/springframework/remoting/jaxws/OrderNotFoundException.java
  13. 0
      org.springframework.web/src/test/java/org/springframework/remoting/jaxws/OrderService.java
  14. 0
      org.springframework.web/src/test/java/org/springframework/remoting/jaxws/OrderServiceImpl.java

0
org.springframework.testsuite/src/test/java/org/springframework/remoting/rmi/RmiSupportTests.java → org.springframework.context/src/test/java/org/springframework/remoting/rmi/RmiSupportTests.java

0
org.springframework.testsuite/src/test/java/org/springframework/remoting/support/RemoteInvocationUtilsTests.java → org.springframework.context/src/test/java/org/springframework/remoting/support/RemoteInvocationUtilsTests.java

0
org.springframework.testsuite/src/test/java/org/springframework/scheduling/backportconcurrent/ScheduledExecutorFactoryBeanTests.java → org.springframework.context/src/test/java/org/springframework/scheduling/backportconcurrent/ScheduledExecutorFactoryBeanTests.java

0
org.springframework.testsuite/src/test/java/org/springframework/scheduling/concurrent/ConcurrentTaskExecutorTests.java → org.springframework.context/src/test/java/org/springframework/scheduling/concurrent/ConcurrentTaskExecutorTests.java

0
org.springframework.testsuite/src/test/java/org/springframework/scheduling/concurrent/ScheduledExecutorFactoryBeanTests.java → org.springframework.context/src/test/java/org/springframework/scheduling/concurrent/ScheduledExecutorFactoryBeanTests.java

49
org.springframework.testsuite/src/test/java/org/springframework/scheduling/timer/TimerTaskExecutorTests.java → org.springframework.context/src/test/java/org/springframework/scheduling/timer/TimerTaskExecutorTests.java

@ -16,46 +16,40 @@ @@ -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 { @@ -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 { @@ -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 { @@ -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 { @@ -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();

52
org.springframework.testsuite/src/test/java/org/springframework/scheduling/TestMethodInvokingTask.java

@ -1,52 +0,0 @@ @@ -1,52 +0,0 @@
/*
* 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();
}
}
}

0
org.springframework.testsuite/src/test/java/org/springframework/remoting/caucho/CauchoRemotingTests.java → org.springframework.web/src/test/java/org/springframework/remoting/caucho/CauchoRemotingTests.java

0
org.springframework.testsuite/src/test/java/org/springframework/remoting/httpinvoker/HttpInvokerTests.java → org.springframework.web/src/test/java/org/springframework/remoting/httpinvoker/HttpInvokerTests.java

0
org.springframework.testsuite/src/test/java/org/springframework/remoting/jaxrpc/JaxRpcSupportTests.java → org.springframework.web/src/test/java/org/springframework/remoting/jaxrpc/JaxRpcSupportTests.java

0
org.springframework.testsuite/src/test/java/org/springframework/remoting/jaxws/JaxWsSupportTests.java → org.springframework.web/src/test/java/org/springframework/remoting/jaxws/JaxWsSupportTests.java

0
org.springframework.testsuite/src/test/java/org/springframework/remoting/jaxws/OrderNotFoundException.java → org.springframework.web/src/test/java/org/springframework/remoting/jaxws/OrderNotFoundException.java

0
org.springframework.testsuite/src/test/java/org/springframework/remoting/jaxws/OrderService.java → org.springframework.web/src/test/java/org/springframework/remoting/jaxws/OrderService.java

0
org.springframework.testsuite/src/test/java/org/springframework/remoting/jaxws/OrderServiceImpl.java → org.springframework.web/src/test/java/org/springframework/remoting/jaxws/OrderServiceImpl.java

Loading…
Cancel
Save