You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by "Roberto Cortez (JIRA)" <ji...@apache.org> on 2018/12/10 22:52:00 UTC

[jira] [Assigned] (TOMEE-2176) Arquillian test cannot be run in parallel

     [ https://issues.apache.org/jira/browse/TOMEE-2176?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Roberto Cortez reassigned TOMEE-2176:
-------------------------------------

    Assignee: Bruno Baptista

> Arquillian test cannot be run in parallel
> -----------------------------------------
>
>                 Key: TOMEE-2176
>                 URL: https://issues.apache.org/jira/browse/TOMEE-2176
>             Project: TomEE
>          Issue Type: Improvement
>          Components: TomEE Arquillian Adapters
>    Affects Versions: 7.0.3
>            Reporter: Thorsten Meinl
>            Assignee: Bruno Baptista
>            Priority: Major
>
> In order to speed up tests, I wanted to run them in parallel using Maven Surefire's parallel execution capabilities. But even when running every test class in its own forked VM tests were failing randomly, mostly due to missing files in the temporary container directory. The reason is that all temporary containers will use the same directory, which is
> {{dir = System.getProperty("java.io.tmpdir") + "/arquillian-apache-tomee"}} and/or
> {{appWorkingDir = System.getProperty("java.io.tmpdir") + "/arquillian-tomee-app-working-dir}}
> (see {{org.apache.openejb.arquillian.common.TomEEConfiguration}}).
> This means different processes running TomEE via Arquillian will interfere with each other, even completely independent process and even from different users.
> As a solution the above-mention directories must be created such that they are unique for the process, e.g. by using {{java.nio.Files.createTempDirectory}}.
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)