Custom UI testing is an optional feature that enables you to create and automatically run UI tests for your applications.
AEM provides an integrated suite of Cloud Manager quality gates to ensure smooth updates to custom applications. In particular, IT test gates already support the creation and automation of custom tests using AEM APIs.
UI tests are packaged in a Docker image to allow a wide choice in language and frameworks (such as Cypress, Selenium, Java and Maven, and JavaScript). Additionally, a UI tests project can easily be generated by using the AEM Project Archetype.
Adobe encourages the usage of Cypress, as it offers real-time reloading and automatic waiting, which helps save time and improves productivity during testing. Cypress also provides a simple and intuitive syntax, making it easy to learn and use, even for those who are new to testing.
UI tests are executed as part of a specific quality gate for each Cloud Manager pipeline with a Custom UI Testing step in production pipelines or optionally non-production pipelines. Any UI tests including regression and new functionalities enable errors to be detected and reported.
Unlike custom functional tests, which are HTTP tests written in Java, UI tests can be a Docker image with tests written in any language, as long as they follow the conventions defined in the section Building UI Tests.
Adobe recommends using Cypress for UI testing, following the code provided in the AEM Test Samples repository.
Adobe also provides UI test module examples based on JavaScript with WebdriverIO (see AEM Project Archetype) and Java with WebDriver (see AEM Test Samples repository).
This section describes the steps required to set up UI tests for execution in Cloud Manager.
Decide on the programming language that you want to use.
For Cypress, use the sample code from the AEM Test Samples repository.
For JavaScript and WDIO, use the sample code which is automatically generated in the ui.tests
folder of your Cloud Manager repository.
If your repository was created before Cloud Manager automatically created ui.tests
folders, you may also generate the latest version using the AEM Project Archetype.
For Java and WebDriver, use the sample code from the AEM Test Samples repository.
For other programming languages, see the section Building UI Tests in this document to set up the test project.
Ensure that UI testing is activated as per the section Customer Opt-In in this document.
Develop your test cases and run the tests locally.
Commit your code into the Cloud Manager repository and execute a Cloud Manager pipeline.
A Maven project generates a Docker build context. This Docker build context describes how to create a Docker image containing the UI tests, which Cloud Manager uses to generate a Docker image containing the actual UI tests.
This section describes the steps needed to add a UI tests project to your repository.
The AEM Project Archetype can generate a UI Tests project for you, which is compliant to the following description, if you do not have special requirements for the programming language.
To generate a Docker build context, you need a Maven module that:
Dockerfile
and every other file necessary to build the Docker image with your tests.ui-test-docker-context
classifier.The simplest way to do this is to configure the Maven Assembly Plugin to create the Docker build context archive and assign the right classifier to it.
You can build UI tests with different technologies and frameworks, but this section assumes that your project is laid out in a way similar to the following.
├── Dockerfile
├── assembly-ui-test-docker-context.xml
├── pom.xml
├── test-module
│ ├── package.json
│ ├── index.js
│ └── wdio.conf.js
└── wait-for-grid.sh
The pom.xml
file takes care of the Maven build. Add an execution to the Maven Assembly Plugin similar to the following.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>${project.basedir}/assembly-ui-test-docker-context.xml</descriptor>
</descriptors>
<tarLongFileMode>gnu</tarLongFileMode>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
This execution instructs the Maven Assembly Plugin to create an archive based on the instructions contained in assembly-ui-test-docker-context.xml
, called an assembly descriptor in the plugin’s jargon. The assembly descriptor lists all the files that must be part of the archive.
<assembly>
<id>ui-test-docker-context</id>
<includeBaseDirectory>false</includeBaseDirectory>
<formats>
<format>tar.gz</format>
</formats>
<fileSets>
<fileSet>
<directory>${basedir}</directory>
<includes>
<include>Dockerfile</include>
<include>wait-for-grid.sh</include>
</includes>
</fileSet>
<fileSet>
<directory>${basedir}/test-module</directory>
<excludes>
<exclude>node/**</exclude>
<exclude>node_modules/**</exclude>
<exclude>reports/**</exclude>
</excludes>
</fileSet>
</fileSets>
</assembly>
The assembly descriptor instructs the plugin to create an archive of type .tar.gz
and assigns the ui-test-docker-context
classifier to it. Moreover, it lists the files that must be included in the archive including the following.
Dockerfile
, mandatory for building the Docker imagewait-for-grid.sh
script, whose purposes are described belowtest-module
folderThe assembly descriptor also excludes some files that might be generated while running the UI tests locally. This guarantees a smaller archive and faster builds.
The archive containing the Docker build context is automatically picked up by Cloud Manager, which will build the Docker image containing your tests during its deployment pipelines. Eventually, Cloud Manager will run the Docker image to execute the UI tests against your application.
The build should produce either zero or one archive. If it produces zero archives, the test step passes by default. If the build produces more than one archive, which archive is selected is non-deterministic.
For Cloud Manager to build and execute your UI tests, you must opt into this feature by adding a file to your repository.
testing.properties
.ui-tests.version=1
.pom.xml
file of the UI tests submodule.tar.gz
file.The UI tests build and executions are skipped if this file is not present.
To include a testing.properties
file in the build artifact, add an include
statement in the assembly-ui-test-docker-context.xml
file.
[...]
<includes>
<include>Dockerfile</include>
<include>wait-for-grid.sh</include>
<include>testing.properties</include> <!-- opt-in test module in Cloud Manager -->
</includes>
[...]
If your project does not include this line, you will need to edit the file to opt into UI testing.
The file may contain a line advising not to edit it. This is due to it being introduced into your project before opt-in UI testing was introduced and clients were not intended to edit the file. This can be safely ignored.
If you are using the samples provided by Adobe:
For the JavaScript-based ui.tests
folder generated based from the AEM Project Archetype, you can execute below command to add the required configuration.
echo "ui-tests.version=1" > testing.properties
if ! grep -q "testing.properties" "assembly-ui-test-docker-context.xml"; then
awk -v line=' <include>testing.properties</include>' '/<include>wait-for-grid.sh<\/include>/ { printf "%s\n%s\n", $0, line; next }; 1' assembly-ui-test-docker-context.xml > assembly-ui-test-docker-context.xml.new && mv assembly-ui-test-docker-context.xml.new assembly-ui-test-docker-context.xml
fi
The Cypress and Java Selenium test samples provided by Adobe already do have the opt-in flag set.
This section describes the conventions that the Docker image containing your UI tests must follow. The Docker image is built out of the Docker build context described in the previous section.
The following environment variables are passed to your Docker image at run time, depending on your framework.
Variable | Examples | Description | Testing Framework |
---|---|---|---|
SELENIUM_BASE_URL |
http://my-ip:4444 |
The URL of the Selenium server | Selenium only |
SELENIUM_BROWSER |
chrome |
The browser implementation used by the Selenium Server | Selenium only |
AEM_AUTHOR_URL |
http://my-ip:4502/context-path |
The URL of the AEM author instance | All |
AEM_AUTHOR_USERNAME |
admin |
The user name to log in to the AEM author instance | All |
AEM_AUTHOR_PASSWORD |
admin |
The password to log in to the AEM author instance | All |
AEM_PUBLISH_URL |
http://my-ip:4503/context-path |
The URL of the AEM publish instance | All |
AEM_PUBLISH_USERNAME |
admin |
The user name to log in to the AEM publish instance | All |
AEM_PUBLISH_PASSWORD |
admin |
The password to log in to the AEM publish instance | All |
REPORTS_PATH |
/usr/src/app/reports |
The path where the XML report of the test results must be saved | All |
UPLOAD_URL |
http://upload-host:9090/upload |
The URL where to which the file must be uploaded to make them accessible to the testing framework | All |
The Adobe test samples provide helper functions to access the configuration parameters:
Cypress.env('VARIABLE_NAME')
The Docker image must generate test reports in the JUnit XML format and save them in the path specified by the environment variable REPORTS_PATH
. The JUnit XML format is a widely used format for reporting the results of tests. If the Docker image uses Java and Maven, standard test modules such as Maven Surefire Plugin and Maven Failsafe Plugin can generate such reports out of the box.
If the Docker image is implemented with other programming languages or test runners, check the documentation for the chosen tools for how to generate JUnit XML reports.
The result of the UI testing step is evaluated only based on the test reports. Ensure that you generate the report accordingly for your test execution.
Use assertions instead of just logging an error to STDERR or returning a non-zero exit code otherwise your deployment pipeline may proceed normally.
For running the functional tests from your local machine, create a user with admin-like permissions to achieve the same behavior.
Type | Value | Description |
---|---|---|
CPU | 2.0 | Amount of CPU-time reserved per test execution |
Memory | 1Gi | Amount of memory allocated to the test, value in gibibytes |
Timeout | 30m | The duration after which the test is ended. |
Recommended Duration | 15m | Adobe recommends writing the tests to not take longer than this time. |
Should you need more resources, create a Customer Care case and describe your use-case; Adobe will review your request and provide appropriate assistance.
This section only applies when Selenium is the chosen test infrastructure.
Before the tests start, it’s the responsibility of the Docker image to ensure that the Selenium server is up and running. Waiting for the Selenium service is a two-steps process.
SELENIUM_BASE_URL
environment variable.Once the Selenium’s status endpoint answers with a positive response, the tests can start.
The Adobe UI test samples handle this with the script wait-for-grid.sh
, which is executed upon Docker startup and starts the actual test execution only once the grid is ready.
The Docker image may generate additional test output (for example, screenshots or videos) and save them in the path specified by the environment variable REPORTS_PATH
. Any file found below the REPORTS_PATH
are included in the test result archive.
The test samples provided by Adobe by default create screenshots for any failed test.
You can use the helper functions to create screenshots through your tests.
If a test result archive is created during a UI test execution, you can download it from Cloud Manager using the Download Details
button under the Custom UI Testing step.
Tests sometimes must upload files to the application being tested. To keep the deployment of Selenium flexible relative to your tests, it is not possible to directly upload an asset directly to Selenium. Instead, uploading a file requires the following steps.
UPLOAD_URL
environment variable.
curl -X POST ${UPLOAD_URL} -F "data=@file.txt"
.200 OK
response of type text/plain
.
<input>
element to test file uploads in your application.Before activating UI tests in a Cloud Manager pipeline, it’s recommended to run the UI tests locally against the AEM as a Cloud Service SDK or against an actual AEM as a Cloud Service instance.
Open a shell and navigate to the ui.tests/test-module
folder in your repository
Install Cypress and other prerequisites
npm install
Set the environment variables required for test execution
export AEM_AUTHOR_URL=https://author-<program-id>-<environment-id>.adobeaemcloud.com
export AEM_AUTHOR_USERNAME=<user>
export AEM_AUTHOR_PASSWORD=<password>
export AEM_PUBLISH_URL=https://publish-<program-id>-<environment-id>.adobeaemcloud.com
export AEM_PUBLISH_USERNAME=<user>
export AEM_PUBLISH_PASSWORD=<password>
export REPORTS_PATH=target/
Run tests with one of the following commands
npm test # Using default Cypress browser
npm run test-chrome # Using Google Chrome browser
npm run test-firefox # Using Firefox browser
The log files are stored in the target/
folder of your repository.
For details, see AEM Test Samples repository.
Open a shell and navigate to the ui.tests
folder in your repository
Execute the below command to start the tests using Maven
mvn verify -Pui-tests-local-execution \
-DAEM_AUTHOR_URL=https://author-<program-id>-<environment-id>.adobeaemcloud.com \
-DAEM_AUTHOR_USERNAME=<user> \
-DAEM_AUTHOR_PASSWORD=<password> \
-DAEM_PUBLISH_URL=https://publish-<program-id>-<environment-id>.adobeaemcloud.com \
-DAEM_PUBLISH_USERNAME=<user> \
-DAEM_PUBLISH_PASSWORD=<password>
target/reports
folder of your repositoryFor details, see AEM Project Archetype repository.
Open a shell and navigate to the ui.tests/test-module
folder in your repository
Execute the below commands to start the tests using Maven
# Start selenium docker image (for x64 CPUs)
docker run --platform linux/amd64 -d -p 4444:4444 selenium/standalone-chrome-debug:latest
# Start selenium docker image (for ARM CPUs)
docker run -d -p 4444:4444 seleniarm/standalone-chromium
# Run the tests using the previously started Selenium instance
mvn verify -Pui-tests-local-execution -DSELENIUM_BASE_URL=http://<server>:4444
The log files are stored in the target/reports
folder of your repository.
For details, see AEM Test Samples repository.