Configuring Test Suite
Step 1: Install the test suite
Clone the test suite repository locally, and install its dependencies.
Node.js version 14 or above is required (which version am I using?).
You can check that the test suite works in your local environment by running it against the hosted OpenActive Reference Implementation, simply by using the default configuration:
Note that the above command only runs the "core" tests within the test suite, which should take around 60 seconds to complete.
The hosted OpenActive Reference Implementation is running on a basic developer tier Azure instance with a burst quota, so if the application shuts down, simply wait 5 minutes and try again.
The quota is sufficient for the most common use cases: running a small subset of tests or individual tests against the reference implementation.
This quota is insufficient for running all tests in the test suite at once. If you are interested in viewing the results of all tests passing against the reference implementation, the results are published for both random and controlled mode.
Step 2: Create a local configuration file
Copy the file ./config/default.json
to ./config/dev.json
and configure it to point to the local development environment of your own booking system using the steps on the rest of this page.
Set the environment variable NODE_ENV
to dev
to instruct the test suite to use dev.json
file to override each of the values in default.json
:
Adding other ./config/{NODE_ENV}.json
files allows you to override the default configuration. For more information see this documentation.
Step 3: Configure flows
The Open Booking API includes two flows:
Assess whether or not your implementation will include either or both of these flows, and configure the test suite accordingly, as detailed in the reference documentation, for example:
Step 4: Configure features
Before you start your implementation, it is good to configure your config file to match your aspirations. You can then use different test suite commands to run only a subset of the tests during development, and then run npm start
to run all tests.
Ensure that your configuration of implementedFeatures
matches the list of features that you have decided upon in Which Features?. This configuration property is documented in the reference documentation.
The list of Open Booking API features supported by the test suite can be found in the Test Suite Feature Coverage page.
Note that not all Open Booking API features are currently supported by the test suite. For a list of supported features, please see the Test Suite Feature Coverage page.
Step 5: Configure Opportunity Types
Set up the Opportunity Types that your booking system will support, as detailed in the reference documentation. The test suite will only attempt to book opportunity types that are configured here, for example:
Step 6: Configure Controlled vs Random testing mode
Configure Test Suite to use the testing mode that you have chosen from Controlled Mode or Random Mode?. You can always start with one and switch to the other later.
Random mode
For more details, see #random-mode (Key Decisions).
Controlled mode
For more details, see #controlled-mode (Key Decisions).
Step 7: Configure Sellers and Booking Authentication
The test suite will making all bookings under a specific primary
Seller provided in the configuration, using the authentication request headers provided for that Seller.
If your booking system only supports a single seller, only the “primary
” seller is required. If your booking system supports multiple sellers, the “secondary
” seller must also be set to support the “multiple-sellers” tests.
Your configuration should match your decision in Authentication Model? (Key Decisions).
See the reference documentation for more information.
Step 8: Configure Orders Feed Authentication
Configure the broker microservice with the authentication headers required for the Orders Feed.
Your configuration should match your decision in Authentication Model? (Key Decisions).
Note such authentication must not be specific to any particular seller.
Step 9: Configure Dataset Site
The datasetSiteUrl
must be set to the local dataset site URL of your booking system. If you have not yet implemented a dataset site, details for creating it can be found here.
In addition to the standard dataset site, the JSON-LD of the page must include the accessService
property, as specified in the reference documentation. Note that the endpointURL
within the accessService
is most important, and must refer to your local Open Booking API Base URI.
Last updated