The booking system is multi-tenanted and provides services to multiple sellers.
It is not possible for Opportunities from different Sellers to be combined in the same Order.
https://openactive.io/open-booking-api/EditorsDraft/#booking-pre-conditions
Coverage Status: complete
Opportunities that match the following criteria must exist in the booking system (for each configured bookableOpportunityTypesInScope) for the configured primary Seller in order to use useRandomOpportunities: true. Alternatively the following testOpportunityCriteria values must be supported by the test interface of the booking system for useRandomOpportunities: false.
npm start -- --runInBand test/features/core/multiple-sellers/Update default.json within packages/openactive-integration-tests/config/ as follows to enable 'Implemented' testing for this feature:
"implementedFeatures": {
...
"multiple-sellers": true,
...
}| Identifier | Name | Description | Prerequisites per Opportunity Type | Required Test Interface Actions |
|---|---|---|---|---|
| conflicting-seller | SellerMismatchError for inconsistent Sellers of OrderItems | Runs C1, C2 and B where Sellers of OrderItems do not match and check SellerMismatchError is returned in all cases. | TestOpportunityBookable x2 | |
| seller-access-restricted-by-auth | Credentials for Seller (a) must not provide access to make bookings for Seller (b) | Using primary seller auth, make a call to C1, C2, and P/B for the secondary seller, expecting all calls to fail with InvalidAuthorizationDetailsError | TestOpportunityBookable x4 |
Update default.json within packages/openactive-integration-tests/config/ as follows to enable 'Not Implemented' testing for this feature:
"implementedFeatures": {
...
"multiple-sellers": false,
...
}| Identifier | Name | Description | Prerequisites per Opportunity Type | Required Test Interface Actions |
|---|---|---|---|---|
| single-seller-implemented | Single Seller feature must be implemented if Multiple Sellers is not implemented | Either one, and only one, of the Multiple Sellers feature and the Single Seller feature must be implemented |