Arquillian bean和dao @Injection不起作用

时间:2016-04-14 06:26:37

标签: java-ee dependency-injection wildfly jboss-arquillian

我正在编写wildfly Java EE应用程序,但我在测试用例中注入了bean问题。它不适用于独立测试,也适用于部署的ShrinkWrap。

import org.jboss.arquillian.junit.Arquillian;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import javax.inject.Inject;
...


@RunWith(Arquillian.class)
public class InjectionTestCase {
    @org.jboss.arquillian.core.api.annotation.Inject 
    private ProjectStatusDao proStatusDao;

    @Inject
    private ClientsCtrl clients;

    @Test
    public void groupSetter() {
        ManageUser user = new ManageUser();

        String g = "group";
        user.setGroup(g);

        Assert.assertEquals(g, user.getGroup());
    }
}

简单测试,但两个注入的对象都为空。我尝试从org.jboss.arquillian.core.api.annotation.Inject包中注入但效果相同。

你能帮帮我吗?我不知道该怎么做。

的src /测试/资源/ arquillian.xml

<?xml version="1.0" encoding="UTF-8"?>
<arquillian xmlns="http://www.jboss.org/arquillian-1.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
      http://www.jboss.org/arquillian-1.0
      http://www.jboss.org/schema/arquillian/arquillian-1.0.xsd">

    <defaultProtocol type="Servlet 3.0" />

    <extension qualifier="webdriver">
        <property name="browser">chrome</property>
    </extension>

    <container qualifier="widlfly-remote" default="true">
        <configuration>
            <property name="managementAddress">host</property>
            <property name="managementPort">9990</property>
            <property name="username">user</property>
            <property name="password">password</property>
        </configuration>
    </container>
</arquillian>

执行日志

kwi 14, 2016 8:25:02 AM org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusedSessionPermanentFileStorage readStore
INFO: Reused session store is not available at C:\Users\......\.drone-webdriver-session-store, a new one will be created.
kwi 14, 2016 8:25:02 AM org.jboss.arquillian.container.test.impl.RunModeUtils isRunAsClient
WARNING: The test method "InjectionTestCase groupSetter" will run on the client side - there is no running deployment yet. Please use the annotation @RunAsClient
kwi 14, 2016 8:25:02 AM org.jboss.arquillian.container.test.impl.RunModeUtils isRunAsClient
WARNING: The test method "InjectionTestCase groupSetter" will run on the client side - there is no running deployment yet. Please use the annotation @RunAsClient
kwi 14, 2016 8:25:02 AM org.jboss.arquillian.container.test.impl.RunModeUtils isRunAsClient
WARNING: The test method "InjectionTestCase groupSetter" will run on the client side - there is no running deployment yet. Please use the annotation @RunAsClient
kwi 14, 2016 8:25:02 AM org.jboss.arquillian.container.test.impl.RunModeUtils isRunAsClient
WARNING: The test method "InjectionTestCase groupSetter" will run on the client side - there is no running deployment yet. Please use the annotation @RunAsClient
kwi 14, 2016 8:25:02 AM org.jboss.arquillian.container.test.impl.RunModeUtils isRunAsClient
WARNING: The test method "InjectionTestCase groupSetter" will run on the client side - there is no running deployment yet. Please use the annotation @RunAsClient
kwi 14, 2016 8:25:02 AM org.jboss.arquillian.container.test.impl.RunModeUtils isRunAsClient
WARNING: The test method "InjectionTestCase groupSetter" will run on the client side - there is no running deployment yet. Please use the annotation @RunAsClient



新日志。使用ShrinkWrap:

public static WebArchive createDeployment() {
        File[] files = Maven.resolver().loadPomFromFile("pom.xml")
                .importRuntimeDependencies().resolve().withTransitivity().asFile();


        WebArchive war = ShrinkWrap.create(WebArchive.class, "test.war")
                // add classes
                .addPackages(true, "my.package")
                // add configuration
                .addAsResource("META-INF/persistence.xml", "META-INF/persistence.xml")
                .addAsWebInfResource(EmptyAsset.INSTANCE, "beans.xml")
                .addAsWebInfResource(new File("src/test/webapp/WEB-INF/jboss-web.xml"))
                // add pages
                .addAsWebResource(new File("src/main/webapp/403.xhtml"))
                .addAsWebResource(new File("src/main/webapp/404.xhtml"))
                .addAsWebResource(new File("src/main/webapp/error.xhtml"))
                .addAsWebResource(new File("src/main/webapp/login.xhtml"))
                /** OTHER PAGES ADDED **/

                // add libraries
                .addAsLibraries(files)

                .setWebXML(new File("src/test/webapp/WEB-INF/web.xml"));                

        System.err.println(war.toString(true));

        return war;
}

@Deployment
    public static Archive<?> createDeployment() {
        return createDeployment();
    }

我发现了一个问题。测试试图连接0.0.0.0而不是我的extrnal wildfly服务器“host”

Caused by: java.lang.IllegalStateException: Error launching request at http://0.0.0.0:8080/test/ArquillianServletRunner?outputMode=serializedObject&className=my.package.InjectionTestCase&methodName=groupSetter. No result returned

在服务器上,我看到该应用程序已成功部署

2016-04-15 11:20:55,986 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-14) JBAS015876: Starting deployment of "test.war" (runtime-name: "test.war")
......
2016-04-15 11:21:00,884 INFO  [org.jboss.as.server] (management-handler-thread - 1) JBAS018559: Deployed "test.war" (runtime-name : "test.war")

2 个答案:

答案 0 :(得分:1)

你必须Arquillian告诉你,你想在服务器上部署你的Testcase:

简单示例(没有addPackages()等)

@Deployment
public static Archive<?> createDeployment() {
  JavaArchive archive = ShrinkWrap.create(JavaArchive.class).addAsManifestResource(EmptyAsset.INSTANCE,
            "beans.xml");
   return archive;
}

根据您的项目,您可能会包含一些额外的部署操作:

    EnterpriseArchive ear = ShrinkWrap.create(EnterpriseArchive.class, "TestProject.ear")
            .addAsModule(archive);
    archive.addAsResource("resources/MANIFEST.MF", "META-INF/MANIFEST.MF");
    archive.addAsResource("resources/beans.xml", "META-INF/beans.xml");
    archive.addAsResource("resources/persistence.xml", "META-INF/persistence.xml");

然后在服务器上整个依赖注入应该起作用,或者至少测试部署应该失败并带有适当的消息

编辑:

关于

  Error launching request at.....

错误:

根据这个:

https://docs.jboss.org/author/display/ARQ/Container+configuration

尝试添加

        <property name="host">yourhost</property>
        <property name="port">8181</property>

到arquillian.xml中的配置

答案 1 :(得分:0)

确保导入正确的注释:

org.jboss.arquillian.container.test.api.Deployment

而不是这一个:

org.jboss.arquillian.api.Deployment;

第二个不会被选中并给出相同的错误

there is no running deployment yet. Please use the annotation @RunAsClient