summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src
diff options
context:
space:
mode:
Diffstat (limited to 'sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src')
-rw-r--r--sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/ConstructorException.java49
-rw-r--r--sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/DestroyCompositeScopeException.java58
-rw-r--r--sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/InitCompositeScopeException.java57
-rw-r--r--sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/InitStatelessScopeException.java57
-rw-r--r--sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/OkImpl.java52
-rw-r--r--sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/Service.java26
-rw-r--r--sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/resources/test.composite49
-rw-r--r--sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/test/java/itest/InitTestCase.java161
8 files changed, 0 insertions, 509 deletions
diff --git a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/ConstructorException.java b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/ConstructorException.java
deleted file mode 100644
index bae0bdcd0f..0000000000
--- a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/ConstructorException.java
+++ /dev/null
@@ -1,49 +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 itest;
-
-import org.oasisopen.sca.annotation.Destroy;
-import org.oasisopen.sca.annotation.Init;
-
-public class ConstructorException implements Service {
-
- public static boolean initRun;
- public static boolean destroyRun;
- public static boolean doitRun;
-
- public ConstructorException() {
- throw new RuntimeException();
- }
-
- public void doit() {
- doitRun = true;
- }
-
- @Init
- public void init() {
- initRun = true;
- }
-
- @Destroy
- public void destroy() {
- destroyRun = true;
- }
-
-}
diff --git a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/DestroyCompositeScopeException.java b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/DestroyCompositeScopeException.java
deleted file mode 100644
index b5d463a1aa..0000000000
--- a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/DestroyCompositeScopeException.java
+++ /dev/null
@@ -1,58 +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 itest;
-
-import org.oasisopen.sca.annotation.Destroy;
-import org.oasisopen.sca.annotation.Init;
-import org.oasisopen.sca.annotation.Scope;
-
-@Scope("COMPOSITE")
-public class DestroyCompositeScopeException implements Service {
-
- public static boolean initRun;
- public static boolean destroyRun;
- public static boolean doitRun;
- public static int count = 0;
-
- public void doit() {
- doitRun = true;
- if (!initRun) {
- throw new RuntimeException("initRun false");
- }
- if (destroyRun) {
- throw new RuntimeException("destroyRun true");
- }
- }
-
- @Init
- public void init() {
- initRun = true;
- }
-
- @Destroy
- public void destroy() {
- destroyRun = true;
- if (count++ < 1) {
- throw new NullPointerException();
- // throw new RuntimeException("bang");
- }
- }
-
-}
diff --git a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/InitCompositeScopeException.java b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/InitCompositeScopeException.java
deleted file mode 100644
index 58aeb96c3c..0000000000
--- a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/InitCompositeScopeException.java
+++ /dev/null
@@ -1,57 +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 itest;
-
-import org.oasisopen.sca.annotation.Destroy;
-import org.oasisopen.sca.annotation.Init;
-import org.oasisopen.sca.annotation.Scope;
-
-@Scope("COMPOSITE")
-public class InitCompositeScopeException implements Service {
-
- public static boolean initRun;
- public static boolean destroyRun;
- public static boolean doitRun;
- public static int count = 0;
-
- public void doit() {
- doitRun = true;
- if (!initRun) {
- throw new RuntimeException("initRun false");
- }
- if (destroyRun) {
- throw new RuntimeException("destroyRun true");
- }
- }
-
- @Init
- public void init() {
- initRun = true;
- if (count++ < 1) {
- throw new RuntimeException("bang");
- }
- }
-
- @Destroy
- public void destroy() {
- destroyRun = true;
- }
-
-}
diff --git a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/InitStatelessScopeException.java b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/InitStatelessScopeException.java
deleted file mode 100644
index a976f805a0..0000000000
--- a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/InitStatelessScopeException.java
+++ /dev/null
@@ -1,57 +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 itest;
-
-import org.oasisopen.sca.annotation.Destroy;
-import org.oasisopen.sca.annotation.Init;
-import org.oasisopen.sca.annotation.Scope;
-
-@Scope("STATELESS")
-public class InitStatelessScopeException implements Service {
-
- public static boolean initRun;
- public static boolean destroyRun;
- public static boolean doitRun;
- public static int count = 0;
-
- public void doit() {
- doitRun = true;
- if (!initRun) {
- throw new RuntimeException("initRun false");
- }
- if (destroyRun) {
- throw new RuntimeException("destroyRun true");
- }
- }
-
- @Init
- public void init() {
- initRun = true;
- if (count++ < 1) {
- throw new RuntimeException("bang");
- }
- }
-
- @Destroy
- public void destroy() {
- destroyRun = true;
- }
-
-}
diff --git a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/OkImpl.java b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/OkImpl.java
deleted file mode 100644
index 823b771923..0000000000
--- a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/OkImpl.java
+++ /dev/null
@@ -1,52 +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 itest;
-
-import org.oasisopen.sca.annotation.Destroy;
-import org.oasisopen.sca.annotation.Init;
-
-public class OkImpl implements Service {
-
- public static boolean initRun;
- public static boolean destroyRun;
-
- public OkImpl() {
- }
-
- public void doit() {
- if (!initRun) {
- throw new RuntimeException("initRun false");
- }
- if (destroyRun) {
- throw new RuntimeException("destroyRun true");
- }
- }
-
- @Init
- public void init() {
- initRun = true;
- }
-
- @Destroy
- public void destroy() {
- destroyRun = true;
- }
-
-}
diff --git a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/Service.java b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/Service.java
deleted file mode 100644
index f6f292c4c8..0000000000
--- a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/java/itest/Service.java
+++ /dev/null
@@ -1,26 +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 itest;
-
-public interface Service {
-
- void doit();
-
-}
diff --git a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/resources/test.composite b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/resources/test.composite
deleted file mode 100644
index fa93989fa0..0000000000
--- a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/main/resources/test.composite
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- * 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.
- -->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200912"
- targetNamespace="http://itest"
- xmlns:itest="http://itest"
- name="Test">
-
- <component name="OkService">
- <implementation.java class="itest.OkImpl"/>
- </component>
-
- <component name="ConstructorException">
- <implementation.java class="itest.ConstructorException"/>
- </component>
-
- <component name="InitCompositeScopeException">
- <implementation.java class="itest.InitCompositeScopeException"/>
- </component>
-
- <component name="InitStatelessScopeException">
- <implementation.java class="itest.InitStatelessScopeException"/>
- </component>
-
- <component name="DestroyCompositeScopeException">
- <implementation.java class="itest.DestroyCompositeScopeException"/>
- </component>
-
- <component name="DestroyCompositeScopeException2">
- <implementation.java class="itest.DestroyCompositeScopeException"/>
- </component>
-
-</composite>
diff --git a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/test/java/itest/InitTestCase.java b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/test/java/itest/InitTestCase.java
deleted file mode 100644
index afb6b5fad8..0000000000
--- a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/java-lifecycle-exceptions/src/test/java/itest/InitTestCase.java
+++ /dev/null
@@ -1,161 +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 itest;
-
-import static org.junit.Assert.assertFalse;
-import static org.junit.Assert.assertTrue;
-import static org.junit.Assert.fail;
-import junit.framework.Assert;
-
-import org.apache.tuscany.sca.node.Contribution;
-import org.apache.tuscany.sca.node.Node;
-import org.apache.tuscany.sca.node.NodeFactory;
-import org.junit.After;
-import org.junit.Before;
-import org.junit.Test;
-
-/**
- */
-public class InitTestCase {
-
- private Node node;
-
- @Before
- public void init() {
- node = NodeFactory.newInstance().createNode("test.composite", new Contribution("test", "target/classes"));
- node.start();
- }
-
- @Test
- public void testOk() throws Exception {
- Service client1 = node.getService(Service.class, "OkService");
- client1.doit();
- assertTrue(OkImpl.initRun);
- assertTrue(OkImpl.destroyRun); // its stateless so destory is called after every service invocations
- }
-
- @Test
- public void testConstructorException() throws Exception {
- Service client1 = node.getService(Service.class, "ConstructorException");
- try {
- client1.doit();
- fail();
- } catch (RuntimeException e) {
- // expected
- }
- assertFalse(ConstructorException.initRun);
- assertFalse(ConstructorException.doitRun);
- assertFalse(ConstructorException.destroyRun);
- }
-
- @Test
- public void testInitCompositeScopeException() throws Exception {
- Service client1 = node.getService(Service.class, "InitCompositeScopeException");
- try {
- client1.doit();
- fail();
- } catch (RuntimeException e) {
- // expected
- }
- assertTrue(InitCompositeScopeException.initRun);
- assertFalse(InitCompositeScopeException.doitRun);
- assertTrue(InitCompositeScopeException.destroyRun);
-
- // reset and try again to verify init init still gets run again
- InitCompositeScopeException.initRun = false;
- InitCompositeScopeException.doitRun = false;
- InitCompositeScopeException.destroyRun = false;
-
- client1.doit();
-
- assertTrue(InitCompositeScopeException.initRun);
- assertTrue(InitCompositeScopeException.doitRun);
- node.stop();
- node = null;
- assertTrue(InitCompositeScopeException.destroyRun);
- }
-
- @Test
- public void testInitStatelessScopeException() throws Exception {
- Service client1 = node.getService(Service.class, "InitStatelessScopeException");
- try {
- client1.doit();
- fail();
- } catch (RuntimeException e) {
- // expected
- }
- assertTrue(InitStatelessScopeException.initRun);
- assertFalse(InitStatelessScopeException.doitRun);
- assertTrue(InitStatelessScopeException.destroyRun);
-
- // reset and try again to verify init init still gets run again
- InitStatelessScopeException.initRun = false;
- InitStatelessScopeException.doitRun = false;
- InitStatelessScopeException.destroyRun = false;
-
- client1.doit();
-
- assertTrue(InitStatelessScopeException.initRun);
- assertTrue(InitStatelessScopeException.doitRun);
- node.stop();
- node = null;
- assertTrue(InitStatelessScopeException.destroyRun);
- }
-
- @Test
- public void testDestroyCompositeScopeException() throws Exception {
- Service client1 = node.getService(Service.class, "DestroyCompositeScopeException");
- try {
- client1.doit();
- } catch (RuntimeException e) {
- fail();
- }
- assertTrue(DestroyCompositeScopeException.initRun);
- assertTrue(DestroyCompositeScopeException.doitRun);
- assertFalse(DestroyCompositeScopeException.destroyRun);
-
- Service client2 = node.getService(Service.class, "DestroyCompositeScopeException2");
- try {
- client2.doit();
- } catch (RuntimeException e) {
- fail();
- }
-
- // close the domain to case @Destroy to run
- try {
- node.stop();
- } catch (RuntimeException e) {
- e.printStackTrace();
- fail();
- }
- node = null;
-
- // check that it has run twice
- // The first run having caused an exception
- assertTrue(DestroyCompositeScopeException.destroyRun);
- Assert.assertEquals(2, DestroyCompositeScopeException.count);
- }
-
- @After
- public void end() {
- if (node != null) {
- node.stop();
- }
- }
-}