summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-integration/sca/kernel/spi/src/test/java/org/apache/tuscany/spi/extension/TargetInvokerExtensionTestCase.java
diff options
context:
space:
mode:
Diffstat (limited to 'branches/sca-java-integration/sca/kernel/spi/src/test/java/org/apache/tuscany/spi/extension/TargetInvokerExtensionTestCase.java')
-rw-r--r--branches/sca-java-integration/sca/kernel/spi/src/test/java/org/apache/tuscany/spi/extension/TargetInvokerExtensionTestCase.java82
1 files changed, 0 insertions, 82 deletions
diff --git a/branches/sca-java-integration/sca/kernel/spi/src/test/java/org/apache/tuscany/spi/extension/TargetInvokerExtensionTestCase.java b/branches/sca-java-integration/sca/kernel/spi/src/test/java/org/apache/tuscany/spi/extension/TargetInvokerExtensionTestCase.java
deleted file mode 100644
index 56d069005d..0000000000
--- a/branches/sca-java-integration/sca/kernel/spi/src/test/java/org/apache/tuscany/spi/extension/TargetInvokerExtensionTestCase.java
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you 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.apache.tuscany.spi.extension;
-
-import java.lang.reflect.InvocationTargetException;
-import java.util.LinkedList;
-
-import org.apache.tuscany.spi.component.WorkContext;
-import org.apache.tuscany.spi.wire.InboundWire;
-import org.apache.tuscany.spi.wire.Message;
-import org.apache.tuscany.spi.wire.MessageImpl;
-
-import junit.framework.TestCase;
-import org.easymock.EasyMock;
-
-/**
- * @version $Rev$ $Date$
- */
-public class TargetInvokerExtensionTestCase extends TestCase {
-
- @SuppressWarnings("unchecked")
- public void testNonBlockingDispatch() {
- Object from = new Object();
- InboundWire wire = EasyMock.createMock(InboundWire.class);
- EasyMock.replay(wire);
- WorkContext context;
- context = EasyMock.createMock(WorkContext.class);
- context.setCurrentCallbackRoutingChain(EasyMock.isA(LinkedList.class));
- EasyMock.replay(context);
- ExecutionMonitor monitor = EasyMock.createNiceMock(ExecutionMonitor.class);
- Target target = EasyMock.createMock(Target.class);
- target.invoke("test");
- EasyMock.replay(target);
- Invoker invoker = new Invoker(wire, context, monitor, target);
- Message msg = new MessageImpl();
- msg.pushFromAddress(from);
- msg.setBody("test");
- invoker.invoke(msg);
- EasyMock.verify(wire);
- EasyMock.verify(context);
- EasyMock.verify(target);
- }
-
- protected void setUp() throws Exception {
- super.setUp();
-
- }
-
- private class Invoker extends TargetInvokerExtension {
- private Target target;
-
- public Invoker(InboundWire wire, WorkContext workContext, ExecutionMonitor monitor, Target target) {
- super(wire, workContext, monitor);
- this.target = target;
- }
-
- public Object invokeTarget(final Object payload, final short sequence) throws InvocationTargetException {
- target.invoke((String) payload);
- return null;
- }
- }
-
- private interface Target {
- void invoke(String msg);
- }
-}