Apereo CAS started to incorporate browser-based integration and functional tests, starting with the 6.3.x
release. In this effort, the project presents a set of functional/browser scenarios that are backed by the Puppeteer framework. Such test scenarios are used to verify protocol compatibility, validate authentication flows, and ensure the correctness of other types of integration tests using a headless Chromium browser across various CAS releases.
In this blog post, we will take a quick look at how Puppeteer is used by CAS to design and automate browser-based integration and/or functional tests. Our starting position is as follows:
7.0.x
21
Automated browser testing is done via the Puppeteer framework. Puppeteer is a Node library that provides a high-level API to control Chrome or Chromium over the DevTools Protocol and runs headless by default. The test scenarios that are designed are executed by the CAS continuous integration system and will be improved over time to account for advanced use cases such as ensuring protocol compatibility and other variations of the authentication webflow.
Functional tests start by generating a plain CAS overlay as a baseline that can run under HTTPS using a pre-generated keystore. This CAS overlay is supplied with the test scenario configuration that explains the required modules, properties, bootstrapping techniques, etc to use when CAS is deployed inside an embedded Apache Tomcat container. Once running, the Puppeteer script is executed by Node for the given test scenario to verify specific functionality such as successful logins, generation of tickets, etc.
Once you clone the CAS git repository, the test scenarios may all be found at ci/tests/puppeteer/scenarios
. Each folder represents a complete test scenario with the folder name acting the scenario name. As of this writing, there are 134
test scenarios available, and the collection of scenarios will continue to grow over time.
Each Puppeteer test scenario may contain the following configuration files:
script.js
is the main test scenario that drives the execution of the Puppeteer test. This script is responsible to interact with the Puppeteer APIs to launch a Chromium-based browser and begin executing the test sequence, validating and verifying assertions and page elements along the way.
As an example, here is a typical script.js
file:
const puppeteer = require('puppeteer');
const assert = require('assert');
const cas = require('../../cas.js');
(async () => {
const browser = await puppeteer.launch(cas.browserOptions());
const page = await cas.newPage(browser);
await page.goto("https://localhost:8443/cas/login");
await cas.loginWith(page, "casuser", "Mellon");
await cas.assertTicketGrantingCookie(page);
const header = await cas.innerText(page, '#content div h2');
assert(header === "Log In Successful")
await browser.close();
})();
The above scenario does handle the following sequence:
casuser
and Mellon
as the username and password respectively.Each test scenario may require a special configuration to bootstrap a tailored version of CAS with custom extensions, modules, and settings. The scenario configuration file is controlled via a script.json
file:
{
"dependencies": "gauth",
"properties": [
"--cas.authn.mfa.gauth.json.location=file:${PWD}/ci/tests/puppeteer/scenarios/${SCENARIO}/accounts.json",
"--cas.authn.mfa.gauth.core.multiple-device-registration-enabled=true"
]
}
The above configuration instructs the test execution runtime to include the cas-server-support-gauth
module into the final CAS overlay and activates a few additional settings required for the test correctness. Note that variables such as PWD
and SCENARIO
as pointers to the working directory and scenario name are automatically handled and resolved by the execution script.
Puppeteer test scenarios are executed using a dedicated /path/to/cas/ci/tests/puppeteer/run.sh
script. To make test execution easier, the following bash function may prove useful to invoke the execution script with a small degree of automation:
function pupcas() {
scenario=$1
shift 1
/path/to/cas/ci/tests/puppeteer/run.sh --scenario ./ci/tests/puppeteer/scenarios/"$scenario" $@
}
This allows you to invoke a test scenario as such:
pupcas generate-service-ticket --hbo
…or, if you’d rather not rebuild the CAS overlay used for test execution:
pupcas generate-service-ticket --ho
Each test execution launches an embedded Apache Tomcat container that is listening for remote debugger requests on port 5000
.
Using Puppeteer as a browser automation tool and framework has several advantages:
All relevant patches or pull requests that affect the CAS user interface or have an effect on an external client-facing representation of a component should be tested and submitted with a test scenario based on Puppeteer. This makes it much easier for the project maintainers to verify the correctness of the original claim, review and ascertain the state of the patch, and ensure regressions are prevented as future CAS releases are published.
If you have questions about the contents and the topic of this blog post, or if you need additional guidance and support, feel free to send us a note and ask about consulting and support services.
I hope this review was of some help to you and I am sure that both this post as well as the functionality it attempts to explain can be improved in any number of ways. Please feel free to engage and contribute as best as you can.
Happy Coding,
Monday-Friday
9am-6pm, Central European Time
7am-1pm, U.S. Eastern Time
Monday-Friday
9am-6pm, Central European Time