[arquillian-issues] [JBoss JIRA] (ARQ-1255) Multiple deployments is not working in Weld SE container

Antonin Stefanutti (JIRA) issues at jboss.org
Fri Oct 23 11:38:01 EDT 2015


    [ https://issues.jboss.org/browse/ARQ-1255?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13121614#comment-13121614 ] 

Antonin Stefanutti commented on ARQ-1255:
-----------------------------------------

Test case is available here: https://github.com/astefanutti/arquillian-container-weld/blob/ARQ-1255/weld-se-embedded-2.1/src/test/java/org/jboss/arquillian/container/weld/se/embedded_1_1/WeldEmbeddedMultipleDeploymentTest.java

It's available starting Weld version {{2.1.0.Final}} so that I created a new module {{weld-se-embedded-2.1}}.

> Multiple deployments is not working in Weld SE container
> --------------------------------------------------------
>
>                 Key: ARQ-1255
>                 URL: https://issues.jboss.org/browse/ARQ-1255
>             Project: Arquillian
>          Issue Type: Bug
>          Components: Weld Containers
>    Affects Versions: 1.0.0.CR5
>            Reporter: Antonin Stefanutti
>         Attachments: Bean1.java, Bean2.java, MultipleDeploymentArquilianCdiTest.java, OperateOnDeploymentArquilianCdiTest.java, pom.xml, test_case_1_stacktrace.txt, test_case_2_stacktrace.txt
>
>
> As described in [Multiple Deployments|https://docs.jboss.org/author/display/ARQ/Multiple+Deployments], multiple {{@Deployment}} annotated methods can be declared in a test class. In addition, the {{@OperateOnDeployment}} annotation enables the selection of a particular _deployment_ per test method.
> However, when using Arquillian with a Weld SE container, the CDI container isn't deployed with the expected archives which ends up having {{DeploymentException}} thrown, as illustrated in the test cases below:
> *Test case 1:*
> {code}
> @RunWith(Arquillian.class)
> public class MultipleDeploymentArquilianCdiTest {
>     @Inject
>     private Bean1 bean1;
>     @Inject
>     private Bean2 bean2;
>     @Deployment(name = "bean1-jar")
>     public static Archive<?> createBean1Jar() {
>         return ShrinkWrap.create(JavaArchive.class).addClass(Bean1.class).addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml");
>     }
>     @Deployment(name = "bean2-jar")
>     public static Archive<?> createBean2Jar() {
>         return ShrinkWrap.create(JavaArchive.class).addClass(Bean2.class).addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml");
>     }
>     @Test
>     public void multiDeploymentTest() {
>         assertNotNull(bean1);
>         assertNotNull(bean2);
>     }
> }
> {code}
> *Test case 2:*
> {code}
> @RunWith(Arquillian.class)
> public class OperateOnDeploymentArquilianCdiTest {
>     @Inject
>     private Bean1 bean1;
>     @Inject
>     private Bean2 bean2;
>     @Deployment(name = "beans-jar")
>     public static Archive<?> createBeansJar() {
>         return ShrinkWrap.create(JavaArchive.class).addClass(Bean1.class).addClass(Bean2.class).addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml");
>     }
>     @Deployment(name = "bean1-jar")
>     public static Archive<?> createBean1Jar() {
>         return ShrinkWrap.create(JavaArchive.class).addClass(Bean1.class).addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml");
>     }
>     @Deployment(name = "bean2-jar")
>     public static Archive<?> createBean2Jar() {
>         return ShrinkWrap.create(JavaArchive.class).addClass(Bean2.class).addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml");
>     }
>     @Test
>     @OperateOnDeployment("beans-jar")
>     public void singleDeploymentTest() {
>         assertNotNull(bean1);
>         assertNotNull(bean2);
>     }
> }
> {code}
> In both cases, the following exception is thrown:
> {code}
> org.jboss.weld.exceptions.DeploymentException: WELD-001408 Unsatisfied dependencies for type [Bean2] with qualifiers [@Default] at injection point [[field] @Inject private arquillian.test.OperateOnDeploymentArquilianCdiTest.bean2]
> {code}
> Note that test case 2 is working when only {{@Deployment(name = "beans-jar")}} is declared.
> Test classes and the {{pom.xml}} are attached.



--
This message was sent by Atlassian JIRA
(v6.4.11#64026)


More information about the arquillian-issues mailing list