Author: andygumbrecht
Date: Wed Apr 17 12:04:36 2013
New Revision: 1468856
URL: http://svn.apache.org/r1468856
Log:
Test for https://issues.apache.org/jira/browse/OPENEJB-2014
Added:
tomee/tomee/trunk/container/openejb-core/src/test/java/org/apache/openejb/junit/PreDestroyTest.java
Added:
tomee/tomee/trunk/container/openejb-core/src/test/java/org/apache/openejb/junit/PreDestroyTest.java
URL:
http://svn.apache.org/viewvc/tomee/tomee/trunk/container/openejb-core/src/test/java/org/apache/openejb/junit/PreDestroyTest.java?rev=1468856&view=auto
==============================================================================
---
tomee/tomee/trunk/container/openejb-core/src/test/java/org/apache/openejb/junit/PreDestroyTest.java
(added)
+++
tomee/tomee/trunk/container/openejb-core/src/test/java/org/apache/openejb/junit/PreDestroyTest.java
Wed Apr 17 12:04:36 2013
@@ -0,0 +1,82 @@
+/**
+ * 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.openejb.junit;
+
+import org.apache.openejb.jee.SessionBean;
+import org.apache.openejb.jee.SingletonBean;
+import org.junit.AfterClass;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+
+import javax.annotation.PostConstruct;
+import javax.annotation.PreDestroy;
+import javax.ejb.Singleton;
+import javax.inject.Inject;
+import java.util.concurrent.atomic.AtomicBoolean;
+
+import static junit.framework.Assert.assertTrue;
+
+/**
+ * Test for https://issues.apache.org/jira/browse/OPENEJB-2014
+ *
+ * @version $Rev$ $Date$
+ */
+@RunWith(ApplicationComposer.class)
+public class PreDestroyTest {
+
+ private static final AtomicBoolean isConstructed = new
AtomicBoolean(false);
+ private static final AtomicBoolean isDestroyed = new AtomicBoolean(false);
+
+ @Inject
+ private TestMe testMe;
+
+ @AfterClass
+ public static void onAfterClass() {
+ assertTrue("onPostConstruct was not called", isConstructed.get());
+ assertTrue("onPreDestroy was not called", isDestroyed.get());
+ }
+
+ @org.apache.openejb.testing.Module
+ public SessionBean getEjbs() {
+ return new SingletonBean(TestMe.class);
+ }
+
+ @Test
+ public void testLifecycle() {
+ this.testMe.noOp();
+ }
+
+ @Singleton
+ public static class TestMe {
+
+ @PostConstruct
+ public void onPostConstruct() {
+ isConstructed.set(true);
+ }
+
+ @PreDestroy
+ public void onPreDestroy() {
+ isDestroyed.set(true);
+ }
+
+ public void noOp() {
+ //no-op
+ }
+
+ }
+
+}