Windows和Glassfish 4.1的Arquillian非常慢

时间:2016-11-26 10:45:17

标签: glassfish jboss-arquillian arquillian-drone

我已经使用JSF 2.2.12,Prime Faces 6和Omnifaces创建了一个java Web应用程序。在后端,像Spring,Hibernate和我的应用服务器这样的标准层是Glassfish 4.1.1 我用Arquillian实现了一些测试。奇怪的是,在Linux(Ubuntu 16)上工作,但Windows没有。

这是我的Arquillian.xml文件

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

    <container qualifier="glassfish" default="true">
        <configuration>
            <property name="remoteServerAddress">localhost</property>
            <property name="remoteServerHttpPort">8080</property>
            <property name="remoteServerAdminPort">4848</property>
        </configuration>
    </container>

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

这里是测试类的一个例子

public class IndexFrontendTest extends BaseArquillianTest {

    @Drone
    private WebDriver browser;

    @ArquillianResource
    private URL deploymentUrl;

    @Page
    private IndexPage indexPage;

    private FrontendTestComponent frontendTestComponent;

    @Before
    public void setUp() {
        browser.manage().window().setSize(new Dimension(1920, 1080));
        browser.get(deploymentUrl.toExternalForm());
        frontendTestComponent = new FrontendTestComponent();
    }

    @RunAsClient
    @Test
    public void testCarManufacturersAndModels() {
        indexPage.getCarManufacturersDropdown().selectByVisibleText("Ajax");
        frontendTestComponent.waitForJStoLoad(browser);
        frontendTestComponent.checkSelect(indexPage.getCarModelsDropdown(), 1, true);
    }

    @RunAsClient
    @Test
    public void testContinentsAndCountries() {
        indexPage.getContinentsDropdown().selectByValue("1");
        frontendTestComponent.waitForJStoLoad(browser);
        frontendTestComponent.checkSelect(indexPage.getCountriesDropdown(), 45, true);
    }
}

BaseArquillianTest类只有部署

的静态方法
@RunWith(Arquillian.class)
public abstract class BaseArquillianTest {

    @Deployment(testable = true)
    public static WebArchive createDeployment() throws IOException {
       ...
       ...
    }
}

我的Dev机器有双启动。 在Linux上,我的测试需要60秒。 在Windows上需要20分钟,有时我会看到和错误,例如&#34;错误请求&#34;。

我尝试了2种不同的浏览器(phantomjs和chrome),但情况是一样的

我试图在互联网上搜索,但似乎有人有这个错误。我想我在配置上犯了一些错误。

请你能帮帮我吗?

1 个答案:

答案 0 :(得分:0)

问题是Glassfish内部的一个错误。

我已经切换到Payara,现在很好,即使为了完成4次测试(和2次部署),也需要2分钟。

我不知道这是否是可接受的时间?