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

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

Thorsten Meinl created TOMEE-2176:
-------------------------------------

             Summary: Arquillian test cannot be run in parallel
                 Key: TOMEE-2176
                 URL: https://issues.apache.org/jira/browse/TOMEE-2176
             Project: TomEE
          Issue Type: Bug
          Components: TomEE Arquillian Adapters
    Affects Versions: 7.0.3
            Reporter: Thorsten Meinl


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)