Testing¶
The Remote Protocol has unit- and functional tests located under different folders:
CDP:
remote/cdp/
Marionette:
remote/marionette/
.Shared Modules:
remote/shared/
WebDriver BiDi:
remote/webdriver-bidi/
You may want to run all the tests under a particular subfolder locally like this:
% ./mach test remote
Unit tests¶
Because tests are run in parallel and xpcshell itself is quite chatty, it can sometimes be useful to run the tests in sequence:
% ./mach xpcshell-test --sequential remote/cdp/test/unit/test_DomainCache.js
The unit tests will appear as part of the X
(for xpcshell) jobs
on Treeherder.
Browser Chrome Mochitests¶
We also have a set of functional browser-chrome mochitests located under several components, ie. remote/shared/messagehandler/test/browser:
% ./mach mochitest remote/shared/messagehandler/test/browser/browser_*
The functional tests will appear under the M
(for mochitest)
category in the remote
jobs on Treeherder.
As the functional tests will sporadically pop up new Firefox application windows, a helpful tip is to run them in headless mode:
% ./mach mochitest --headless remote/shared/messagehandler/test/browser
The --headless
flag is equivalent to setting the MOZ_HEADLESS
environment variable. You can additionally use MOZ_HEADLESS_WIDTH
and MOZ_HEADLESS_HEIGHT
to control the dimensions of the virtual
display.
The add_task()
function used for writing asynchronous tests is
replaced to provide some additional test setup and teardown useful
for writing tests against the Remote Agent and the targets.
There are also specific browser-chrome tests for CDP.
Before such a task is run, the nsIRemoteAgent
listener is started
and a CDP client is connected. You will use this CDP client for
interacting with the agent just as any other CDP client would.
Also target discovery is getting enabled, which means that targetCreated, targetDestroyed, and targetInfoChanged events will be received by the client.
The task function you provide in your test will be called with the
three arguments client
, CDP
, and tab
:
client
is the connection to thensIRemoteAgent
listener, and it provides the a client CDP APICDP
is the CDP client classtab
is a fresh tab opened for each new test, and is automatically removed after the test has run
This is what it looks like all put together:
add_task(async function testName({client, CDP, tab}) {
// test tab is implicitly created for us
info("Current URL: " + tab.linkedBrowser.currentURI.spec);
// manually connect to a specific target
const { mainProcessTarget } = RemoteAgent.cdp.targetList;
const target = mainProcessTarget.wsDebuggerURL;
const client = await CDP({ target });
// retrieve the Browser domain, and call getVersion() on it
const { Browser } = client;
const version = await Browser.getVersion();
await client.close();
// tab is implicitly removed
});
You can control the tab creation behavior with the createTab
option to add_task(taskFunction, options)
:
add_task(async function testName({client}) {
// tab is not implicitly created
}, { createTab: false });
If you want to write an asynchronous test without this implicit
setup you may instead use add_plain_task()
, which works exactly like the
original add_task()
.
Puppeteer tests¶
In addition to our own Firefox-specific tests, we run the upstream Puppeteer test suite against our implementation to track progress towards achieving full Puppeteer support in Firefox. The tests are written in the behavior-driven testing framework Mocha.
Puppeteer tests are vendored under remote/test/puppeteer/ and are run locally like this:
% ./mach puppeteer-test
You can also run them against Chrome as:
% ./mach puppeteer-test --product=chrome
By default, Puppeteer will be configured to use the WebDriver BiDi protocol. You
can also force Puppeteer to use the CDP protocol with the --cdp
option:
% ./mach puppeteer-test --cdp
By default the mach command will automatically install Puppeteer but that’s
only needed for the very first time, or when a new Puppeteer release has been
vendored in. To skip the install step use the --no-install
option.
To run only some specific tests from the whole test suite the appropriate
test files have to be updated first. To select specific tests or test
groups within a file define exclusive tests by adding the .only
suffix
like it.only()
or describe.only()
.
It is also possible, similar to how it works in CI, to run tests in chunks:
% ./mach puppeteer-test --this-chunk=1 --total-chunks=2
More customizations for Mocha can be found in its own documentation.
Test expectation metadata is collected in remote/test/puppeteer-expected.json via log parsing and a custom Mocha reporter under remote/test/puppeteer/json-mocha-reporter.js
Check the upstream Puppeteer test suite documentation for instructions on how to skip tests, run only one test or a subsuite of tests.
Testing on Try¶
To schedule all the Remote Protocol tests on try, you can use the
remote-protocol
try preset:
% ./mach try --preset remote-protocol
But you can also schedule tests by selecting relevant jobs yourself:
% ./mach try fuzzy