-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #18 - References from EJB-Singletons are now supported
- Loading branch information
1 parent
36f8463
commit b030656
Showing
5 changed files
with
156 additions
and
14 deletions.
There are no files selected for viewing
42 changes: 42 additions & 0 deletions
42
src/main/java/info/novatec/beantest/extension/AnnotationInstances.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
* Bean Testing. | ||
* | ||
* 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 info.novatec.beantest.extension; | ||
|
||
import info.novatec.beantest.transactions.Transactional; | ||
import javax.ejb.Singleton; | ||
import javax.enterprise.context.ApplicationScoped; | ||
import javax.enterprise.context.RequestScoped; | ||
import javax.inject.Inject; | ||
import org.apache.deltaspike.core.util.metadata.AnnotationInstanceProvider; | ||
|
||
/** | ||
* Class that contains constants of annotation instances. | ||
* | ||
* @author Carlos Barragan (carlos.barragan@novatec-gmbh.de) | ||
*/ | ||
public final class AnnotationInstances { | ||
|
||
private AnnotationInstances() { | ||
|
||
} | ||
|
||
public static final Transactional TRANSACTIONAL = AnnotationInstanceProvider.of(Transactional.class); | ||
public static final RequestScoped REQUEST_SCOPED = AnnotationInstanceProvider.of(RequestScoped.class); | ||
public static final Inject INJECT = AnnotationInstanceProvider.of(Inject.class); | ||
public static final Singleton SINGLETON = AnnotationInstanceProvider.of(Singleton.class); | ||
public static final ApplicationScoped APPLICATION_SCOPED = AnnotationInstanceProvider.of(ApplicationScoped.class); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
src/test/java/info/novatec/beantest/demo/ejb/MyEjbSingleton.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
* Bean Testing. | ||
* | ||
* 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 info.novatec.beantest.demo.ejb; | ||
|
||
import javax.ejb.EJB; | ||
import javax.ejb.Singleton; | ||
|
||
/** | ||
* Demo EJB Singleton. | ||
* @author Carlos Barragan (carlos.barragan@novatec-gmbh.de) | ||
*/ | ||
@Singleton | ||
public class MyEjbSingleton { | ||
|
||
@EJB | ||
MyOtherEJBService ejbService; | ||
|
||
private boolean wasEjbCalled=false; | ||
|
||
public void callAnEjb() { | ||
ejbService.doSomething(); | ||
wasEjbCalled = true; | ||
} | ||
|
||
public boolean wasEjbCalled() { | ||
return this.wasEjbCalled; | ||
} | ||
|
||
} |
39 changes: 39 additions & 0 deletions
39
src/test/java/info/novatec/beantest/demo/ejb/TestSingletonInjection.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Bean Testing. | ||
* | ||
* 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 info.novatec.beantest.demo.ejb; | ||
|
||
import info.novatec.beantest.api.BaseBeanTest; | ||
import static org.hamcrest.Matchers.is; | ||
import static org.junit.Assert.assertThat; | ||
import org.junit.Test; | ||
|
||
/** | ||
* This test verifies that an EJB Singleton is instantiated just once and is able to call other EJBs. | ||
* | ||
* @author Carlos Barragan (carlos.barragan@novatec-gmbh.de) | ||
*/ | ||
public class TestSingletonInjection extends BaseBeanTest { | ||
|
||
@Test | ||
public void shouldBeInstantiatedOnce() { | ||
MyEjbSingleton singleton= getBean(MyEjbSingleton.class); | ||
assertThat(singleton.wasEjbCalled(), is(false)); | ||
singleton.callAnEjb(); | ||
assertThat(singleton.wasEjbCalled(), is(true)); | ||
} | ||
|
||
|
||
} |