File size: 6,419 Bytes
2795186 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
[[test-engines]]
=== Test Engines
A `TestEngine` facilitates _discovery_ and _execution_ of tests for a particular
programming model.
For example, JUnit provides a `TestEngine` that discovers and executes tests written using
the JUnit Jupiter programming model (see <<writing-tests>> and <<extensions>>).
[[test-engines-junit]]
==== JUnit Test Engines
JUnit provides three `TestEngine` implementations.
* `{junit-jupiter-engine}`: The core of JUnit Jupiter.
* `{junit-vintage-engine}`: A thin layer on top of JUnit 4 to allow running _vintage_
tests (based on JUnit 3.8 and JUnit 4) with the JUnit Platform launcher infrastructure.
* `{junit-platform-suite-engine}`: Executes declarative suites of tests with the JUnit
Platform launcher infrastructure.
[[test-engines-custom]]
==== Custom Test Engines
You can contribute your own custom `{TestEngine}` by implementing the interfaces in the
{junit-platform-engine} module and _registering_ your engine.
Every `TestEngine` must provide its own _unique ID_, _discover_ tests from an
`EngineDiscoveryRequest`, and _execute_ those tests according to an `ExecutionRequest`.
[WARNING]
.The `junit-` unique ID prefix is reserved for TestEngines from the JUnit Team
====
The JUnit Platform `Launcher` enforces that only `TestEngine` implementations published
by the JUnit Team may use the `junit-` prefix for their `TestEngine` IDs.
* If any third-party `TestEngine` claims to be `junit-jupiter` or `junit-vintage`, an
exception will be thrown, immediately halting execution of the JUnit Platform.
* If any third-party `TestEngine` uses the `junit-` prefix for its ID, a warning message
will be logged. Later releases of the JUnit Platform will throw an exception for such
violations.
====
In order to facilitate test discovery within IDEs and tools prior to launching the JUnit
Platform, `TestEngine` implementations are encouraged to make use of the `@Testable`
annotation. For example, the `@Test` and `@TestFactory` annotations in JUnit Jupiter are
meta-annotated with `@Testable`. Consult the Javadoc for `{Testable}` for further details.
If your custom `TestEngine` needs to be configured, consider allowing users to supply
configuration via <<running-tests-config-params,configuration parameters>>. Please note,
however, that you are strongly encouraged to use a unique prefix for all configuration
parameters supported by your test engine. Doing so will ensure that there are no conflicts
between the names of your configuration parameters and those from other test engines. In
addition, since configuration parameters may be supplied as JVM system properties, it is
wise to avoid conflicts with the names of other system properties. For example, JUnit
Jupiter uses `junit.jupiter.` as a prefix of all of its supported configuration
parameters. Furthermore, as with the warning above regarding the `junit-` prefix for
`TestEngine` IDs, you should not use `junit.` as a prefix for the names of your own
configuration parameters.
Although there is currently no official guide on how to implement a custom `TestEngine`,
you can consult the implementation of <<test-engines-junit>> or the implementation of
third-party test engines listed in the
https://github.com/junit-team/junit5/wiki/Third-party-Extensions#junit-platform-test-engines[JUnit 5 wiki].
You will also find various tutorials and blogs on the Internet that demonstrate how to
write a custom `TestEngine`.
NOTE: `{HierarchicalTestEngine}` is a convenient abstract base implementation of the
`TestEngine` SPI (used by the `{junit-jupiter-engine}`) that only requires implementors to
provide the logic for test discovery. It implements execution of `TestDescriptors` that
implement the `Node` interface, including support for parallel execution.
[[test-engines-registration]]
==== Registering a TestEngine
`TestEngine` registration is supported via Java's `{ServiceLoader}` mechanism.
For example, the `junit-jupiter-engine` module registers its
`org.junit.jupiter.engine.JupiterTestEngine` in a file named
`org.junit.platform.engine.TestEngine` within the `/META-INF/services` folder in the
`junit-jupiter-engine` JAR.
[[test-engines-requirements]]
==== Requirements
NOTE: The words "must", "must not", "required", "shall", "shall not", "should", "should
not", "recommended", "may", and "optional" in this section are to be interpreted as
described in https://www.ietf.org/rfc/rfc2119.txt[RFC 2119.]
[[test-engines-requirements-mandatory]]
===== Mandatory requirements
For interoperability with build tools and IDEs, `TestEngine` implementations must adhere
to the following requirements:
* The `TestDescriptor` returned from `TestEngine.discover()` _must_ be the root of a tree
of `TestDescriptor` instances. This implies that there _must not_ be any cycles between
a node and its descendants.
* A `TestEngine` _must_ be able to discover `UniqueIdSelectors` for any unique ID that it
previously generated and returned from `TestEngine.discover()`. This enables selecting a
subset of tests to execute or rerun.
* The `executionSkipped`, `executionStarted`, and `executionFinished` methods of the
`EngineExecutionListener` passed to `TestEngine.execute()` _must_ be called for every
`TestDescriptor` node in the tree returned from `TestEngine.discover()` at most
once. Parent nodes _must_ be reported as started before their children and as finished
after their children. If a node is reported as skipped, there _must not_ be any events
reported for its descendants.
[[test-engines-requirements-enhanced-compatibility]]
===== Enhanced compatibility
Adhering to the following requirements is optional but recommended for enhanced
compatibility with build tools and IDEs:
* Unless to indicate an empty discovery result, the `TestDescriptor` returned from
`TestEngine.discover()` _should_ have children rather than being completely dynamic.
This allows tools to display the structure of the tests and to select a subset of tests
to execute.
* When resolving `UniqueIdSelectors`, a `TestEngine` _should_ only return `TestDescriptor`
instances with matching unique IDs including their ancestors but _may_ return additional
siblings or other nodes that are required for the execution of the selected tests.
* `TestEngines` _should_ support <<running-tests-tags, tagging>> tests and containers so
that tag filters can be applied when discovering tests.
|