From 3f2b2bd82368a8447b93c73c36913a0d6452aa48 Mon Sep 17 00:00:00 2001 From: slaws Date: Mon, 27 Feb 2012 13:13:29 +0000 Subject: Extend exceptions test to include a remote binding. Some inconsistencies here that need thinking about. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1294142 13f79535-47bb-0310-9956-ffa450edef68 --- .../sca/test/exceptions/ExceptionHandler.java | 9 +- .../sca/test/exceptions/ExceptionThrower.java | 6 +- .../test/exceptions/impl/ExceptionHandlerImpl.java | 37 +++++ .../impl/ExceptionRemoteThrowerImpl.java | 5 + .../test/exceptions/impl/ExceptionThrowerImpl.java | 5 + .../impl/RemoteExceptionHandlerImpl.java | 37 +++++ .../impl/RemoteWSExceptionHandlerImpl.java | 176 +++++++++++++++++++++ .../src/main/resources/ExceptionTest.composite | 14 ++ .../sca/test/exceptions/ExceptionsTestCase.java | 24 +++ 9 files changed, 311 insertions(+), 2 deletions(-) create mode 100644 sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/impl/RemoteWSExceptionHandlerImpl.java (limited to 'sca-java-2.x/trunk/testing/itest/exceptions/src') diff --git a/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/ExceptionHandler.java b/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/ExceptionHandler.java index 112aefc747..204c2927f1 100644 --- a/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/ExceptionHandler.java +++ b/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/ExceptionHandler.java @@ -19,6 +19,8 @@ package org.apache.tuscany.sca.test.exceptions; +import org.oasisopen.sca.ServiceRuntimeException; + public interface ExceptionHandler { void testing(); @@ -28,5 +30,10 @@ public interface ExceptionHandler { String getTheGood(); UnChecked getTheUgly(); - + + ServiceRuntimeException getServiceRuntimeException(); + + ServiceRuntimeException getBindingException(); + + ServiceRuntimeException getUncheckedException(); } diff --git a/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/ExceptionThrower.java b/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/ExceptionThrower.java index ace219991b..bdffb5fea6 100644 --- a/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/ExceptionThrower.java +++ b/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/ExceptionThrower.java @@ -19,6 +19,8 @@ package org.apache.tuscany.sca.test.exceptions; +import org.oasisopen.sca.ServiceRuntimeException; + /** * Local exception thrower * @version $Rev$ $Date$ @@ -27,11 +29,13 @@ public interface ExceptionThrower { Checked BAD = new Checked("theBad"); UnChecked UGLY = new UnChecked("theUgly"); String SO_THEY_SAY = "All is good that ends good."; + ServiceRuntimeException SERVICE_RUNTIME_EXCEPTION = new ServiceRuntimeException("A service runtime exception"); String theGood() throws Checked; String theBad() throws Checked; String theUgly() throws Checked; - + + String serviceRuntimeException(); } diff --git a/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/impl/ExceptionHandlerImpl.java b/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/impl/ExceptionHandlerImpl.java index 26b9f0a383..217febdcd6 100644 --- a/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/impl/ExceptionHandlerImpl.java +++ b/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/impl/ExceptionHandlerImpl.java @@ -23,6 +23,7 @@ import org.apache.tuscany.sca.test.exceptions.Checked; import org.apache.tuscany.sca.test.exceptions.ExceptionHandler; import org.apache.tuscany.sca.test.exceptions.ExceptionThrower; import org.apache.tuscany.sca.test.exceptions.UnChecked; +import org.oasisopen.sca.ServiceRuntimeException; import org.oasisopen.sca.annotation.Reference; import org.oasisopen.sca.annotation.Scope; @@ -37,6 +38,8 @@ public class ExceptionHandlerImpl implements ExceptionHandler { private Checked theBad; private UnChecked theUgly; + + private ServiceRuntimeException serviceRuntimeException; public void testing() { @@ -88,6 +91,29 @@ public class ExceptionHandlerImpl implements ExceptionHandler { System.out.println(ExceptionThrower.SO_THEY_SAY + " " + INIT); } + + result = INIT; + try { + result = exceptionThrower.serviceRuntimeException(); + // incredible + assert false : "Expected 'ServiceRuntimeException' Exception"; + + } catch (ServiceRuntimeException e) { + + serviceRuntimeException = e; + + } catch (UnChecked e) { + // This is not so good... + assert false : "Got wrong exception '" + e.getClass().getName(); + assert result == INIT; + + } catch (Throwable t) { + // This is not good. + assert false; + assert result == INIT; + + System.out.println(ExceptionThrower.SO_THEY_SAY + " " + INIT); + } } @@ -111,5 +137,16 @@ public class ExceptionHandlerImpl implements ExceptionHandler { public ExceptionThrower getExceptionThrower() { return exceptionThrower; } + + public ServiceRuntimeException getServiceRuntimeException() { + return serviceRuntimeException; + } + public ServiceRuntimeException getBindingException() { + return null; + } + + public ServiceRuntimeException getUncheckedException() { + return null; + } } diff --git a/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/impl/ExceptionRemoteThrowerImpl.java b/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/impl/ExceptionRemoteThrowerImpl.java index cd62338841..9b26197917 100644 --- a/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/impl/ExceptionRemoteThrowerImpl.java +++ b/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/impl/ExceptionRemoteThrowerImpl.java @@ -21,6 +21,7 @@ package org.apache.tuscany.sca.test.exceptions.impl; import org.apache.tuscany.sca.test.exceptions.Checked; import org.apache.tuscany.sca.test.exceptions.ExceptionRemoteThrower; +import org.oasisopen.sca.ServiceRuntimeException; import org.oasisopen.sca.annotation.Service; /** @@ -40,5 +41,9 @@ public class ExceptionRemoteThrowerImpl implements ExceptionRemoteThrower { public String theUgly() throws Checked { throw UGLY; } + + public String serviceRuntimeException() { + throw new ServiceRuntimeException("A service runtime exception"); + } } diff --git a/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/impl/ExceptionThrowerImpl.java b/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/impl/ExceptionThrowerImpl.java index 56b9fc6f5b..2477bece31 100644 --- a/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/impl/ExceptionThrowerImpl.java +++ b/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/impl/ExceptionThrowerImpl.java @@ -21,6 +21,7 @@ package org.apache.tuscany.sca.test.exceptions.impl; import org.apache.tuscany.sca.test.exceptions.Checked; import org.apache.tuscany.sca.test.exceptions.ExceptionThrower; +import org.oasisopen.sca.ServiceRuntimeException; import org.oasisopen.sca.annotation.Service; /** @@ -41,5 +42,9 @@ public class ExceptionThrowerImpl implements ExceptionThrower { public String theUgly() throws Checked { throw UGLY; } + + public String serviceRuntimeException() { + throw SERVICE_RUNTIME_EXCEPTION; + } } diff --git a/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/impl/RemoteExceptionHandlerImpl.java b/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/impl/RemoteExceptionHandlerImpl.java index a8a065f0e2..c5c2af5b70 100644 --- a/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/impl/RemoteExceptionHandlerImpl.java +++ b/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/impl/RemoteExceptionHandlerImpl.java @@ -24,6 +24,7 @@ import org.apache.tuscany.sca.test.exceptions.ExceptionHandler; import org.apache.tuscany.sca.test.exceptions.ExceptionRemoteThrower; import org.apache.tuscany.sca.test.exceptions.ExceptionThrower; import org.apache.tuscany.sca.test.exceptions.UnChecked; +import org.oasisopen.sca.ServiceRuntimeException; import org.oasisopen.sca.annotation.Reference; import org.oasisopen.sca.annotation.Scope; @@ -38,6 +39,8 @@ public class RemoteExceptionHandlerImpl implements ExceptionHandler { private Checked theBad; private UnChecked theUgly; + + private ServiceRuntimeException serviceRuntimeException; public void testing() { @@ -89,6 +92,29 @@ public class RemoteExceptionHandlerImpl implements ExceptionHandler { System.out.println(ExceptionThrower.SO_THEY_SAY + " " + INIT); } + + result = INIT; + try { + result = exceptionThrower.serviceRuntimeException(); + // incredible + assert false : "Expected 'ServiceRuntimeException' Exception"; + + } catch (ServiceRuntimeException e) { + + serviceRuntimeException = e; + + } catch (UnChecked e) { + // This is not so good... + assert false : "Got wrong exception '" + e.getClass().getName(); + assert result == INIT; + + } catch (Throwable t) { + // This is not good. + assert false; + assert result == INIT; + + System.out.println(ExceptionThrower.SO_THEY_SAY + " " + INIT); + } } @@ -112,5 +138,16 @@ public class RemoteExceptionHandlerImpl implements ExceptionHandler { public ExceptionRemoteThrower getExceptionThrower() { return exceptionThrower; } + + public ServiceRuntimeException getServiceRuntimeException() { + return serviceRuntimeException; + } + public ServiceRuntimeException getBindingException() { + return null; + } + + public ServiceRuntimeException getUncheckedException() { + return null; + } } diff --git a/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/impl/RemoteWSExceptionHandlerImpl.java b/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/impl/RemoteWSExceptionHandlerImpl.java new file mode 100644 index 0000000000..896ff4ab2e --- /dev/null +++ b/sca-java-2.x/trunk/testing/itest/exceptions/src/main/java/org/apache/tuscany/sca/test/exceptions/impl/RemoteWSExceptionHandlerImpl.java @@ -0,0 +1,176 @@ +/* + * 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.sca.test.exceptions.impl; + +import org.apache.tuscany.sca.test.exceptions.Checked; +import org.apache.tuscany.sca.test.exceptions.ExceptionHandler; +import org.apache.tuscany.sca.test.exceptions.ExceptionRemoteThrower; +import org.apache.tuscany.sca.test.exceptions.ExceptionThrower; +import org.apache.tuscany.sca.test.exceptions.UnChecked; +import org.oasisopen.sca.ServiceRuntimeException; +import org.oasisopen.sca.annotation.Reference; +import org.oasisopen.sca.annotation.Scope; + +@Scope("COMPOSITE") +public class RemoteWSExceptionHandlerImpl implements ExceptionHandler { + static final String INIT = "INIT"; + + private ExceptionRemoteThrower exceptionThrower; + + @Reference + private ExceptionRemoteThrower exceptionThrowerDuff; + + private String theGood; + + private Checked theBad; + + private UnChecked theUgly; + + private ServiceRuntimeException uncheckedException; + + private ServiceRuntimeException serviceRuntimeException; + + private ServiceRuntimeException bindingException; + + public void testing() { + + assert exceptionThrower != null : "'exceptionThrower' never wired"; + String result = INIT; + try { + theGood = result = exceptionThrower.theGood(); + assert result.equals(ExceptionThrower.SO_THEY_SAY); + } catch (Throwable e) { + assert result == INIT; + assert false; + e.printStackTrace(); + } + + result = INIT; + try { + result = exceptionThrower.theBad(); + // incredible + assert false : "Expected 'Check' Exception"; + + } catch (Checked e) { + // This is good... + assert result == INIT; + theBad = e; + } catch (Throwable t) { + // This is not so good. + t.printStackTrace(); + assert result == INIT; + assert false : "Got wrong exception '" + t.getClass().getName(); + } + + result = INIT; + try { + result = exceptionThrower.theUgly(); + // incredible + assert false : "Expected 'UnCheck' Exception"; + + } catch (ServiceRuntimeException e) { + + uncheckedException = e; + + } catch (Checked e) { + // This is not so good... + assert false : "Got wrong exception '" + e.getClass().getName(); + assert result == INIT; + } catch (UnChecked e) { + theUgly = e; + + } catch (Throwable t) { + // This is not good. + assert false; + assert result == INIT; + + System.out.println(ExceptionThrower.SO_THEY_SAY + " " + INIT); + } + + result = INIT; + try { + result = exceptionThrower.serviceRuntimeException(); + // incredible + assert false : "Expected 'ServiceRuntimeException' Exception"; + + } catch (ServiceRuntimeException e) { + + serviceRuntimeException = e; + + } catch (UnChecked e) { + // This is not so good... + assert false : "Got wrong exception '" + e.getClass().getName(); + assert result == INIT; + + } catch (Throwable t) { + // This is not good. + assert false; + assert result == INIT; + + System.out.println(ExceptionThrower.SO_THEY_SAY + " " + INIT); + } + + result = INIT; + try { + theGood = result = exceptionThrowerDuff.theGood(); + assert result.equals(ExceptionThrower.SO_THEY_SAY); + } catch (ServiceRuntimeException e) { + bindingException = e; + } catch (Throwable e) { + assert result == INIT; + assert false; + e.printStackTrace(); + } + + } + + @Reference + public void setExceptionThrower(ExceptionRemoteThrower exceptionThrower) { + this.exceptionThrower = exceptionThrower; + } + + public String getTheGood() { + return theGood; + } + + public Checked getTheBad() { + return theBad; + } + + public UnChecked getTheUgly() { + return theUgly; + } + + public ExceptionRemoteThrower getExceptionThrower() { + return exceptionThrower; + } + + public ServiceRuntimeException getServiceRuntimeException() { + return serviceRuntimeException; + } + + public ServiceRuntimeException getBindingException() { + return bindingException; + } + + public ServiceRuntimeException getUncheckedException() { + return uncheckedException; + } +} diff --git a/sca-java-2.x/trunk/testing/itest/exceptions/src/main/resources/ExceptionTest.composite b/sca-java-2.x/trunk/testing/itest/exceptions/src/main/resources/ExceptionTest.composite index b8a8b01e8b..d5ce88d041 100644 --- a/sca-java-2.x/trunk/testing/itest/exceptions/src/main/resources/ExceptionTest.composite +++ b/sca-java-2.x/trunk/testing/itest/exceptions/src/main/resources/ExceptionTest.composite @@ -36,6 +36,20 @@ + + + + + + + + + + + + + + diff --git a/sca-java-2.x/trunk/testing/itest/exceptions/src/test/java/org/apache/tuscany/sca/test/exceptions/ExceptionsTestCase.java b/sca-java-2.x/trunk/testing/itest/exceptions/src/test/java/org/apache/tuscany/sca/test/exceptions/ExceptionsTestCase.java index 7794348476..44585e4c83 100644 --- a/sca-java-2.x/trunk/testing/itest/exceptions/src/test/java/org/apache/tuscany/sca/test/exceptions/ExceptionsTestCase.java +++ b/sca-java-2.x/trunk/testing/itest/exceptions/src/test/java/org/apache/tuscany/sca/test/exceptions/ExceptionsTestCase.java @@ -30,6 +30,7 @@ import org.apache.tuscany.sca.node.NodeFactory; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Test; +import org.oasisopen.sca.ServiceRuntimeException; public class ExceptionsTestCase { @@ -49,6 +50,8 @@ public class ExceptionsTestCase { assertNotNull(exceptionHandler.getTheUgly()); assertEquals(UnChecked.class, exceptionHandler.getTheUgly().getClass()); assertSame(ExceptionThrower.UGLY, exceptionHandler.getTheUgly()); + assertEquals(ServiceRuntimeException.class, exceptionHandler.getServiceRuntimeException().getClass()); + assertEquals(ExceptionThrower.SERVICE_RUNTIME_EXCEPTION.getMessage(), exceptionHandler.getServiceRuntimeException().getMessage()); } /** @@ -64,11 +67,32 @@ public class ExceptionsTestCase { assertNotSame(ExceptionThrower.BAD, exceptionHandler.getTheBad()); assertNotNull(exceptionHandler.getTheUgly()); assertEquals(UnChecked.class, exceptionHandler.getTheUgly().getClass()); + assertEquals(ServiceRuntimeException.class, exceptionHandler.getServiceRuntimeException().getClass()); + assertEquals(ExceptionThrower.SERVICE_RUNTIME_EXCEPTION.getMessage(), exceptionHandler.getServiceRuntimeException().getMessage()); // [rfeng] We're not in a position to copy non business exceptions // assertNotSame(ExceptionThrower.UGLY, exceptionHandler.getTheUgly()); } + + /** + * Test exception handling over a remote binding + */ + @Test + public void testRemoteWS() { + ExceptionHandler exceptionHandler = node.getService(ExceptionHandler.class, "mainRemoteWS"); + exceptionHandler.testing(); + assertEquals(ExceptionThrower.SO_THEY_SAY, exceptionHandler.getTheGood()); + assertNotNull(exceptionHandler.getTheBad()); + assertEquals(Checked.class, exceptionHandler.getTheBad().getClass()); + assertNotSame(ExceptionThrower.BAD, exceptionHandler.getTheBad()); + assertNotNull(exceptionHandler.getUncheckedException()); + assertEquals(ServiceRuntimeException.class, exceptionHandler.getUncheckedException().getClass()); + assertEquals(ServiceRuntimeException.class, exceptionHandler.getServiceRuntimeException().getClass()); + assertEquals("org.apache.tuscany.sca.interfacedef.util.FaultException: " + ExceptionThrower.SERVICE_RUNTIME_EXCEPTION.getMessage(), exceptionHandler.getServiceRuntimeException().getMessage()); + assertEquals(ServiceRuntimeException.class, exceptionHandler.getBindingException().getClass()); + assertEquals("org.apache.tuscany.sca.interfacedef.util.FaultException: " + ExceptionThrower.SERVICE_RUNTIME_EXCEPTION.getMessage(), exceptionHandler.getServiceRuntimeException().getMessage()); + } @BeforeClass public static void setUp() throws Exception { -- cgit v1.2.3