An external (subprocess) test runner for Polylith.
Avoids classloader, daemon thread, and memory usage issues by running tests in a (Java) subprocess with only Clojure itself as a dependency.
Ensure you are using a recent version Polylith that supports external test runners (v0.2.17-alpha or later).
Add the following dependency to your :poly
alias to
make this test-runner available:
io.github.seancorfield/polylith-external-test-runner
{:git/tag "v0.5.0" :git/sha "d93a147"
:deps/root "projects/runner"}
In your workspace.edn
file, either add this global configuration
to run all of your projects' tests in subprocesses:
:test
{:create-test-runner
[org.corfield.external-test-runner.interface/create]}
Alternatively, to run just specific projects in subprocesses,
add that :create-test-runner
entry to those specific projects.
See also Test Configuration below for new functionality available with Polylith 0.2.20.
The test runner checks the JAVA_CMD
environment variable and will use
that value if set, else it checks the JAVA_HOME
environment variable
and will use the value ${JAVA_HOME}/bin/java
is that is set, else it
assumes java
is on your classpath and can be used as-is.
Since the tests are executed in a java
subprocess, you may need to
provide JVM options to control how it runs. You can specify the JVM
options for the subprocess in two ways:
- via the
POLY_TEST_JVM_OPTS
environment variable, - via the
poly.test.jvm.opts
JVM property.
The former can be set in your shell process, for the poly test
command.
The latter can be set in the :poly
alias via:
:jvm-opts ["-Dpoly.test.jvm.opts=..."]
The value of the environment variables or the JVM property should either be:
- a space-separated list of all the JVM options you need,
- a Clojure keyword that will be looked up as an alias in your workspace-level
deps.edn
file.
The latter allows multiple options to be specified more easily, and also
allows for other aliases to be used in those vectors of options, which are
looked up recursively (a similar ability has been proposed for tools.deps.alpha
).
See this project's deps.edn
file
for an example (which is used in the tests for this project).
Note: this functionality is new in v0.5.0 and is primarily intended for use with Polylith 0.2.20 or later.
By default, this test runner only looks for tests in the test
directories
of bricks and projects. You can configure it to also looks for tests in the
src
directories as well, using the :include-src-dir true
option (the
default is false
).
In addition, like the Cognitect's test runner,
you can specify that only certain tests should be run, either by specifying
a collection of fully-qualified test names (:var
), or by specifying
keywords to include or exclude tests via metadata (:include
and :exclude
).
These can be provided in a :focus
option as a hash map, and may be combined.
If you are using the current 0.2.20-SNAPSHOT version of Polylith, you can
provide these options in workspace.edn
under the :test-configs
key, and
this test runner looks for the :org.corfield/external-test-runner
key within
those configurations.
;; in your deps.edn file:
polylith/clj-poly {:mvn/version "0.2.20-SNAPSHOT"}
;; in your workspace.edn file:
:test {:create-test-runner [org.corfield.external-test-runner.interface/create]}
:test-configs {:source {:org.corfield/external-test-runner
{:include-src-dir true}}
:slow {:org.corfield/external-test-runner
{:focus {:include [:slow]}}}}
Now you can use poly test with:source
to run tests in both test
and src
directories, or poly test with:slow
to run only tests defined with ^:slow
or
^{:slow true}
metadata. You can combine these options as well: poly test with:source:slow
.
See Test configuration in the Polylith 0.2.20-SNAPSHOT documentation for more details.
Note: whether you use a single value or a vector for
:create-test-runner
matters in Polylith 0.2.20 when you use the newwith
syntax for test configurations.
If you are using an earlier version of Polylith, you can provide these options
via the ORG_CORFIELD_EXTERNAL_TEST_RUNNER
environment variable, as a string
that is read as an EDN hash map:
ORG_CORFIELD_EXTERNAL_TEST_RUNNER="{:include-src-dir true}" poly test
Note: you can also use the environment variable with Polylith 0.2.20 to override
:include-src-dir
or:focus
from the:test-configs
setting, via a simple merge.
External test runner copyright (c) 2022-2024, Sean Corfield, Apache Source License 2.0.
Colorizer and string util code copyright (c) 2020-2021, Joakim Tengstrand and others, Eclipse Public License 1.0.