SAP Fiori OPA5 Development Skill
A guide for writing, fixing, and extending OPA5 integration tests for SAP Fiori Elements applications.
Covers both OData V4 (
) and OData V2 (
).
Not applicable to freestyle UI5 applications - for those, suggest the
skill from the
UI5 Plugins for Coding Agents .
Prerequisites
This skill requires an existing SAP Fiori Elements application generated by SAP Fiori tools.
The
folder must be present (e.g. at
). If it is missing, ask the user to regenerate it first using the
Application Info command in SAP Fiori tools.
Step 1: Locate the Project Root
When the user provides a project name or ID (e.g.
) instead of a file path:
- Search for files under common project roots (e.g. ).
- Match the field in to the given name, or look for a folder whose name contains the given ID.
- Once found, treat the folder containing as the project root for all subsequent steps.
Step 2: Detect OData Version
Before writing any test code, determine whether the app is OData V4 or V2. The two test libraries are completely different and must never be mixed.
Primary check:
| What you find | Version | Test library |
|---|
key inside sap.ui5.dependencies.libs
| V4 | |
| as a root key | V2 | |
Fallback check:
If
is inconclusive, check the
root element in the service metadata file (typically at
webapp/localService/mainService/metadata.xml
, or wherever
points in
):
| Attribute value | Version |
|---|
xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx"
or | V4 |
xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx"
or | V2 |
These attributes appear on line 1 or 2 of the file.
If neither signal is present, ask the user to confirm the OData version before proceeding.
Step 3: Follow the Matching Guide
Once the version is confirmed:
- Read the shared sections further below ("Test Endpoint and Running Tests", "Mock Server") - they apply to both V4 and V2.
- Then read the version-specific guide for all test library decisions:
- OData V4 - read
references/v4-instructions.md
- OData V2 - read
references/v2-instructions.md
Adding a New Journey
When the user asks to add an additional journey (not just a new
inside an existing journey):
- Find the test root - search for files matching , , , or in the project. The folder containing those files is the integration test root. These files typically live in a folder named within the test directory, e.g. .
- Understand the wiring - read the existing journey files and any entry point files to understand how journeys are registered. Three setups are possible:
- Virtual endpoint (V4) - no registration needed; the middleware picks up any file matching the configured pattern (default: ends in or )
- Physical entry point (V4) - add the new journey's module path to the array in
- Custom wiring (e.g. S/4 apps with or ) - follow the existing pattern
- Create the journey file following the same naming pattern as existing journeys.
- Confirm to the user which file was created and how it is registered (or that registration is automatic).
General Anti-Patterns (V4 and V2)
These apply regardless of OData version or test library.
Never invent method names. Only use methods that are confirmed to exist in the test library.
If a method is not shown in the quick-reference patterns, do NOT guess or construct a name - look it up first:
- V4: check
references/v4-standard-patterns.md
for common patterns. If the method is not there, check references/v4-custom-selectors.md
for custom selector patterns. If still not found, read references/v4-sap-fe-test-api-guide.md
and consult the official API documentation it points to. A method that "sounds right" is not sufficient — it must be confirmed to exist.
- V2: check
references/fiori-elements-v2-test-library.md
which contains the full API reference for all V2 page objects.
Invented methods fail silently with a "not a function" runtime error that is hard to diagnose.
Every must have at least one assertion. A test with only
/
steps reports 0 assertions and fails silently.
javascript
// ❌ No Then = no assertions, test fails
opaTest("Click button", function(Given, When, Then) {
When.onThePage.iClickButton();
});
// ✅ Always end with at least one Then
opaTest("Click button", function(Given, When, Then) {
When.onThePage.iClickButton();
Then.onThePage.iSeeThisPage();
});
OData property names are case-sensitive - always match the exact casing from
. Wrong casing causes a timeout, not an error message.
OPA5 state carries over between blocks within a journey. Tests run sequentially and share the same browser session - do not assume the app is in a clean state at the start of each
. Always navigate and assert explicitly rather than relying on state left by the previous test block.
The map key in JourneyRunner (V4) must exactly match the accessor name used in journeys. A mismatch causes a silent runtime error - the page object is simply undefined when the journey tries to call it. (V2 registers page objects globally via module loading and has no
map.)
javascript
// ❌ Wrong - key is "onTheList" but journey calls "onTheListReport"
pages: { onTheList: ListReportPage }
// journey: When.onTheListReport.onTable()... → undefined
// ✅ Fixed - key matches accessor name exactly
pages: { onTheListReport: ListReportPage }
Keep journeys focused - split at around 10 blocks. Large journey files are slow to debug and hard to maintain. One journey file per feature or user flow is a good rule of thumb. Do not add tests for standard Fiori Elements behavior already covered by the test library itself.
Teardown method name differs by version. Always call teardown on
, never on a page object:
- V4: (capital D - overridden in
sap.fe.test.BaseArrangements
)
- V2: (lowercase d - base method)
QUnit requires assertions to validate tests. Teardown is not an assertion - always assert something before tearing down.
❌ Incorrect - teardown with no prior assertion:
javascript
// V4
opaTest("Should clean up", function(Given, When, Then) {
Given.iTearDownMyApp();
});
// V2
opaTest("Should clean up", function(Given, When, Then) {
Given.iTeardownMyApp();
});
❌ Incorrect - teardown chained on a page object instead of
:
javascript
// V4
opaTest("Should assert state and clean up", function(Given, When, Then) {
Then.onTheListPage.iSeeThisPage()
.and.onTheListPage.iTearDownMyApp();
});
✅ Correct:
javascript
// V4
opaTest("Should assert state and clean up", function(Given, When, Then) {
Then.onTheListPage.iSeeThisPage(); // assertion first
Given.iTearDownMyApp(); // teardown on Given, separate step
});
// V2
opaTest("Should assert state and clean up", function(Given, When, Then) {
Then.onTheGenericListReport.theResultListIsVisible(); // assertion first
Given.iTeardownMyApp(); // teardown on Given, separate step
});
Test Endpoint and Running Tests
These apply to both V4 and V2 projects.
Virtual Test Endpoint (fiori-tools-preview or preview-middleware)
When
or
@sap-ux/preview-middleware
is configured with a
block in
or
, the HTML and JS entry point files are
generated on the fly - no physical
or
are needed on disk.
yaml
server:
customMiddleware:
- name: fiori-tools-preview
configuration:
test:
- framework: OPA5
path: /test/opaTests.qunit.html # default, omit if unchanged
init: /test/opaTests.qunit.js # default, omit if unchanged
pattern: /test/**/*Journey{,.gen}.{js,ts} # default, omit if unchanged
If a physical file already exists at the configured path, the middleware serves that instead (with a warning). When working in a virtual-endpoint project, do not create
or
manually - new journey files are picked up automatically as long as their filename matches the configured pattern.
Physical Files (classic setup)
Without the virtual endpoint, the full structure is present on disk:
webapp/test/integration/
├── opaTests.qunit.html <- test suite entry point (opened in browser)
├── OpaTests.qunit.js <- imports journeys and calls QUnit.start()
├── FirstJourney.js
└── pages/
└── ...
Registering a new journey requires adding its module path to the
array in
.
Running Tests
Via npm script:
Check
for the exact script name. This runs
fiori run --config ./ui5-mock.yaml --open 'test/integration/opaTests.qunit.html'
.
Manually (CAP-based apps):
bash
npm start # or: cds watch
Then open in a browser:
http://localhost:<port>/<app-name>/webapp/test/integration/opaTests.qunit.html
Mock Server
These apply to both V4 and V2 projects.
@sap-ux/ui5-middleware-fe-mockserver
(recommended)
Runs in the UI5 tooling layer - no backend process needed - making it the recommended choice for OPA5 tests. Supports both V4 and V2 apps.
Set it up with:
bash
npx --yes @sap-ux/create@latest add mockserver-config
Two data modes - choose based on what your tests assert:
| Mode | Config | Use when |
|---|
| Static mock data | | Tests assert specific values (exact counts, field contents, IDs). JSON files in (default: ./webapp/localService/mainService/data/
). Deterministic across runs. |
| Dynamic mock data | | Tests only assert structure (a field is visible, a table has rows). No JSON files to maintain, but you cannot assert exact values. |
If a journey deletes a record (e.g., via
), restart the server before re-running to restore the data.
sap.ui.core.util.MockServer
(older V2 apps)
Older V2 apps generated by earlier tooling may use the UI5 framework's built-in mock server instead. It is configured via
localService/mockserver.js
and runs in the browser rather than the tooling layer. See the UI5 docs:
https://ui5.sap.com/#/topic/3a9728ec31f94ca18a7d543ce419d85d
CAP backend
For CAP-based projects,
/
can serve as the data backend. Reserve this for dedicated integration or end-to-end suites that need to test CAP logic - prefer the mockserver for OPA5 tests.
Debugging Failing Tests
These apply to both V4 and V2 projects.
When a test fails, enable pause-on-failure so the app stays live in the browser at the point of failure for direct inspection. Add this line to your test entry point before the runner or any
call:
javascript
sap.ui.test.qunitPause.pauseRule = "assert,timeout";
When the test pauses, inspect the live app in the browser to see what the UI actually shows vs. what the test expected. Remove this line once all journeys pass.
For UI5 version 1.147 and above, the
TestRecorder tool (
library) can be added to the app temporarily to inspect the live control tree and generate reliable OPA5 snippets for non-trivial selectors. Remove the library again once done.
Flaky tests on CI - the default OPA5 timeout (15s) is often too low for CI environments. Increase it to 60 in your runner config (
for V4,
Opa5.extendConfig({ timeout: 60 })
for V2).
Reference Files
| File | When to read |
|---|
references/v4-instructions.md
| V4 app: test structure, JourneyRunner, page objects, anti-patterns, debugging, patterns and fixes by UI area |
references/v4-journeyrunner.md
| V4: full JourneyRunner config reference, tile name lookup, portable journey pattern |
references/v4-sap-fe-test-api-guide.md
| V4: how to navigate the sap.fe.test API docs, naming conventions, identifier patterns |
references/v4-standard-patterns.md
| V4: quick-reference example catalogue by UI area (App Startup, FilterBar, Table, Header, Form, Footer, Dialog, Section, Value Help, Chart, Shell) |
references/v4-custom-selectors.md
| V4: custom selectors (last resort), OpaBuilder, CustomFilterField IDs, ComboBox, suffix pitfalls |
references/v2-instructions.md
| V2 app: setup, page objects, V2 gotchas |
references/fiori-elements-v2-test-library.md
| V2: full API reference for List Report, Object Page, ALP, and FCL page objects — method signatures, common pitfalls, complete example |