Wildfly端口抵消不与Arquillain一起使用

时间:2014-06-17 08:55:57

标签: jboss7.x testng jboss-arquillian wildfly-8

到目前为止,我一直在使用通过Arquillian Testing框架管理的JBOSS AS 7运行我的集成测试。我一直设置偏移量100这已经工作正常但现在我想将我的集成测试转移到Wildfly AS托管,但相同的测试失败,出现以下错误:

  

arquillianBeforeSuite(com.aeroflex.teravm.selfinstall.core.ejb.SampleServiceIT)已用时间:130.749秒<<<失败!   org.jboss.arquillian.container.spi.client.container.LifecycleException:无法启动容器

这是我的Arquillian.xml

   <arquillian xmlns="http://jboss.org/schema/arquillian" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://jboss.org/schema/arquillian http://jboss.org/schema/arquillian/arquillian_1_0.xsd">
<!-- <defaultProtocol type="Servlet 3.1"/> -->
<container qualifier="wildfly-managed" default="true">
<configuration>
<property name="jbossHome">target/wildfly-8.0.0.Final</property>
<property name="serverConfig">standalone.xml</property>
<property name="outputToConsole">true</property>

<property name="javaVmArguments">-Djboss.socket.binding.port-offset=100</property>
</configuration>
</container>
</arquillian>

以及其中一个集成测试的示例:

public class SampleServiceIT extends BaseServiceIT
{
    @Inject
    private SampleService sampleService;

    @Parameters(ARQUILLIAN_DATA_PROVIDER)
    @Test(groups = {"integration"})
    public void testGetNotExisting() throws ServiceException
    {
        Long id = new Long(5);
        SampleBean result = sampleService.getSampleObjectById(id);
        Assert.assertNull(result);
    }
}

如果我没有更改端口偏移,只保留默认设置就可以了。

感谢您提前提供任何帮助。

2 个答案:

答案 0 :(得分:7)

我弄明白了这个问题。我错过了需要设置的managementPort属性。

<property name="managementPort">10090</property>

完整的arquillian.xml文件:

<arquillian xmlns="http://jboss.org/schema/arquillian" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://jboss.org/schema/arquillian http://jboss.org/schema/arquillian/arquillian_1_0.xsd">
    <!-- <defaultProtocol type="Servlet 3.1"/> -->
    <container qualifier="wildfly-managed" default="true">
        <configuration>
            <property name="jbossHome">target/wildfly-8.0.0.Final</property>
            <property name="serverConfig">standalone.xml</property>
            <property name="outputToConsole">true</property>

            <property name="javaVmArguments">-Djboss.socket.binding.port-offset=100</property>
            <property name="managementPort">10090</property>
        </configuration>
    </container>
</arquillian>

答案 1 :(得分:1)

如果你们中的一些人通过maven运行这样的Arquillian测试并且你使用的是嵌入式容器,那么arquillian.xml中的javaVmArguments将被忽略。

您需要在pom.xml中设置JVM参数:

<plugin>
  <artifactId>maven-failsafe-plugin</artifactId>
    <configuration>
      <argLine>-Djboss.socket.binding.port-offset=300</argLine>
         <systemPropertyVariables>
            <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
         </systemPropertyVariables>

        <redirectTestOutputToFile>false</redirectTestOutputToFile>
  </configuration>
</plugin>

注意:这是maven-failsafe-plugin的配置(即,如果您的测试是* IT.java)。如果您的Arquillian测试是* Test.java,那么您将要配置maven-surefireplugin。