Functional Tests Structure
Custom functional tests must be packaged as a separate JAR file produced by the same Maven build as the artifacts to be deployed to AEM. Generally, this build would be a separate Maven module. The resulting JAR file must contain all required dependencies and would generally be created using the maven-assembly-plugin
using the jar-with-dependencies
descriptor.
In addition, the JAR must have the Cloud-Manager-TestType
manifest header set to integration-test
.
The following is an example configuration for the maven-assembly-plugin
.
<build>
<plugins>
<!-- Create self-contained jar with dependencies -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifestEntries>
<Cloud-Manager-TestType>integration-test</Cloud-Manager-TestType>
</manifestEntries>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
Within this JAR file, the class names of the actual tests to be executed must end in IT
.
For example, a class named com.myco.tests.aem.it.ExampleIT
would be executed, but a class named com.myco.tests.aem.it.ExampleTest
would not.
Furthermore, to exclude test code from the coverage check of the code scanning, the test code must be below a package named it
(the coverage exclusion filter is **/it/**/*.java
).
The test classes must be normal JUnit tests. The test infrastructure is designed and configured to be compatible with the conventions used by the aem-testing-clients
test library. Developers are encouraged to use this library and follow its best practices.
See aem-testing-clients
GitHub repo for more details.