20 KiB
Conductor Manual Testing
This document is the durable manual-testing checklist for Conductor. Automated
test results belong in BASELINE.md; this file covers behavior that needs a
person to verify in the running application.
Do not mark a workflow accepted from automated coverage alone. Record the date, tester, environment, and any observations in the result block for that workflow.
Status Summary
| Workflow | Status |
|---|---|
| Slice 1 components and editor synchronization | Accepted 2026-07-18 |
| Anonymous REST action authoring and referenced deletion | Accepted 2026-07-19 |
Visual Button onClick assignment |
Accepted 2026-07-19 |
| Guided request-input query insertion | Accepted 2026-07-20 |
| Complete request-input execution | Accepted 2026-07-28 |
| Response bindings and variable authoring | Accepted 2026-07-29 |
| Page-load actions | Accepted 2026-07-29 |
| Final Slice 2 end-to-end acceptance | Pending |
Test Environment Setup
1. Start Docker Desktop
-
Start Docker Desktop on the host computer.
-
If using WSL, open Docker Desktop settings.
-
Select Resources, then WSL Integration.
-
Enable integration for the WSL distribution containing this repository.
-
Apply the changes and restart Docker Desktop if prompted.
-
From the repository root, verify that Docker is available:
docker info
Expected result: the command displays client and server information without a connection or WSL-integration error.
2. Start Conductor
From the repository root, run:
docker compose up --build
Leave this terminal running. In another terminal, run:
docker compose ps
curl http://localhost:4000/api/health
Expected results:
- The
frontendandbackendservices are running. - The health request returns JSON containing
"status":"ok". http://localhost:3000opens the Conductor application.
If startup fails, capture docker compose ps and:
docker compose logs backend frontend
Do not continue until both services and the health endpoint work.
Canonical JSON and Runtime State
Several workflows ask you to inspect canonical JSON:
- Select JSON Editor in the application navigation.
- Locate the relevant section under
project, such asactions,bindings, orvariables. - Do not add runtime-only fields merely to test them.
Runtime values are expected to exist only while Preview is running. Canonical JSON must not gain fields containing:
- current input or selection values;
- loading flags;
- action responses;
- action or component errors;
- updated runtime variable values.
Configured component defaults and declared variable defaults are canonical and are expected to remain in JSON.
Test 1: Request-Input Authoring and Execution
Purpose: verify that a current component or variable value can be inserted into
an executed REST request template without using compatibility-only inputMap.
Partial status: adding the item query row and guided component insertion was
confirmed on 2026-07-20. The remaining steps still need acceptance.
A. Create the test project
-
Open
http://localhost:3000. -
Create a new project, or open a disposable test project.
-
In Visual Editor, add a Text Input.
-
Select the Text Input and give it a unique component name such as
itemInput. -
Add a Button and name it
lookupButton. -
Optionally add a JSON Viewer named
requestResult; it will be useful in the response-binding test. -
Open Actions & Bindings.
-
Select Add REST action.
-
Configure:
- Name:
Look up item - Method:
GET - URL:
https://httpbin.org/anything - Authentication: confirm it remains Anonymous
- Name:
-
Finish the action edit, then return to Visual Editor.
-
Select
lookupButtonand assignLook up itemas itsonClickaction.
Expected result: JSON contains a Button event referencing the action ID, but no
inputMap is created.
B. Add the guided query reference
- Return to Actions & Bindings.
- Edit
Look up item. - Find Query parameters and select Add row.
- Enter
itemin the key field. The value may initially remain blank. - Find Request value reference in the same action editor.
- Select
itemInput (TextInput)as the source. - Select
Query: itemas the destination. - Select Insert reference.
- Return to the Query parameters section.
Expected result: the value of item is:
{{components.itemInput.value}}
- Open JSON Editor and find the action's
queryParameters.
Expected canonical fragment:
"queryParameters": {
"item": "{{components.itemInput.value}}"
}
- Search the document for
inputMap.
Expected result: no ComponentEvent.inputMap was added.
- Return to the action editor and inspect the Request value reference destination choices.
Expected result: URL, header, query, and body destinations may be offered. Path parameters are not offered.
C. Execute the component reference
-
Open Preview.
-
Enter a recognizable value in the Text Input, for example:
manual-test-742 -
Select the Button once.
-
Wait for the request to complete.
-
Inspect the response or the browser Network panel. For the httpbin endpoint, the response body should echo the request URL or query arguments.
Expected result: the outgoing URL contains an encoded query parameter equivalent to:
?item=manual-test-742
- While still in the same project, open JSON Editor again.
Expected results:
- The template remains
{{components.itemInput.value}}; it was not replaced bymanual-test-742. - No loading, response, error, or current component value was added to JSON.
D. Verify raw template editing still works
- Edit
Look up itemagain. - Add a raw URL suffix, header value, or second query parameter containing literal text or a supported template.
- Add a body template temporarily if desired. A GET body need not be executed; this step checks that the raw editor remains usable.
- Confirm the raw value synchronizes to JSON.
- Confirm the previously inserted
itemquery reference is unchanged.
Expected result: guided insertion does not disable or overwrite subsequent raw URL, header, query, or body editing.
E. Verify a variable request reference
-
In Actions & Bindings, create a variable:
- Name:
testRegion - Type:
string - Default value:
east
- Name:
-
Edit
Look up item. -
Add a query parameter named
region. -
In Request value reference, choose variable
testRegion. -
Choose
Query: region, then select Insert reference. -
Confirm JSON contains:
{{variables.testRegion}} -
Execute the Button in Preview.
Expected result: the outgoing query includes region=east, while canonical JSON
retains the variable declaration and default rather than a runtime copy.
Request-input result
- Docker services and health endpoint passed.
- Guided
itemquery-reference insertion looked correct (2026-07-20). - Canonical component template and absence of
inputMapconfirmed. - Path parameters confirmed absent from guided destinations.
- Runtime component value appeared in the outgoing request.
- Runtime state remained absent from canonical JSON.
- Raw template editing regression passed.
- Variable reference resolved in an executed request.
Tester/date: User, 2026-07-28
Notes or defects: All request-input checks passed. The tester initially looked below the query-parameter editor for Request value reference; the control is at the top of the expanded Request parameters section. No product defect found.
Test 2: Response Bindings and Variables
Purpose: verify visual CRUD for canonical project.bindings and
project.variables, response delivery in Preview, legacy compatibility, and
runtime-state separation.
A. Test typed variable declarations
-
Open the test project in Actions & Bindings.
-
In Variables, select Add variable.
-
Create
statusText:- Type:
string - Default:
Not run - Description:
Latest manual test status
- Type:
-
Create
retryCountwith typenumberand default2. -
Create
enabledwith typebooleanand defaulttrue. -
Create
metadatawith typeobjectand default:{"source":"manual"} -
Create
itemswith typearrayand default:[] -
Inspect JSON Editor.
Expected result: project.variables contains typed declarations. Number and
boolean defaults are JSON numbers and booleans, not quoted strings; object and
array defaults have the correct JSON shapes.
- Edit
metadata, replace its default with malformed JSON, and try to save.
Expected result: an actionable validation message appears and the invalid draft does not replace the canonical variable value.
- Correct the JSON and save it.
Expected result: the corrected default updates canonical JSON.
B. Create and execute a component response binding
- Ensure the project contains
Look up itemand a JSON Viewer namedrequestResult. - Ensure
lookupButtonrunsLook up itemon click. - In Actions & Bindings, select Add response binding.
- Select
Look up itemas the REST action response source. - Set Response path to
bodyto map the upstream body, or leave it blank to map the complete normalized response envelope. - Select
requestResult (JsonViewer.value)as the target. - Inspect JSON Editor.
Expected results:
- The new record is in top-level
project.bindings. - Its source begins
actions.<actionId>.response. - Its target is
components.requestResult.value. - Its trigger is exactly
onSuccess. - No
action.responseMappingwas added.
- Open Preview, enter a value in
itemInput, and select the Button.
Expected result: after a successful request, the JSON Viewer displays the mapped response value.
C. Create and execute a variable response binding
- Return to Actions & Bindings.
- Add another response binding.
- Select
Look up itemas the source action. - Use a response path appropriate to the httpbin response, such as
body.url. - Select
statusText (variable)as the target. - Confirm the new binding uses
onSuccess. - Execute the Button successfully in Preview.
- Execute any request that consumes
{{variables.statusText}}, or otherwise observe its downstream behavior.
Expected results:
- The runtime variable receives the mapped response value.
project.variables.statusText.defaultValueremainsNot runin canonical JSON.- No runtime variable value is saved into canonical JSON.
D. Edit and delete bindings
- Edit the component response binding.
- Change its response path, save/finish the edit, and confirm JSON updates.
- Change its supported target and confirm JSON updates.
- Delete that binding and accept the confirmation.
Expected results:
- Edits update only the selected top-level binding.
- Deletion removes only that binding.
- Add response binding remains enabled afterward.
E. Verify target restrictions
- Add or select an unsupported input component such as Text Input.
- Start adding or editing a response binding and inspect Target choices.
Expected result: unsupported targets such as TextInput.value are not offered.
- If two components have the same name, inspect the Target choices again.
Expected result: the ambiguous duplicate component name is not offered as a new target, and existing ambiguous bindings receive a diagnostic.
F. Verify variable reference warnings
- Ensure
statusTextis referenced by a response binding or request template. - Select Delete for
statusText.
Expected result: the confirmation identifies the binding or action references that would become unresolved.
- Cancel and confirm the variable remains.
- Repeat deletion and accept it only in a disposable project.
Expected result: diagnostics identify the now-unresolved references; unrelated variables and bindings remain unchanged.
G. Verify legacy onClick compatibility
This test needs a pre-existing legacy action-response binding authored through JSON. Do not use the visual editor to create a new legacy binding.
- In a disposable project, use JSON Editor to add an action-response binding
with
"trigger": "onClick"and apply the valid JSON. - Open Actions & Bindings and inspect the binding.
Expected result: it is displayed with an informational legacy diagnostic and can still execute for a supported component target.
- Edit the legacy binding.
Expected result: onClick is shown only because this record is already legacy.
- Change the trigger to On success.
Expected results:
- Canonical JSON changes to
"trigger": "onSuccess". - The editor no longer offers
onClickfor that migrated record. - A newly added response binding never offers
onClick.
H. Verify failure and ephemeral state
- Temporarily change the action URL to a URL that will fail or return an error.
- Execute the Button in Preview.
Expected results:
- The UI exposes a usable loading state followed by an error state.
onSuccessresponse bindings do not apply a failed response.- Loading flags, errors, and responses do not appear in canonical JSON.
- Restore the valid action URL.
I. Verify save and reload
- Save the project.
- Reload it from the project picker.
- Reopen Actions & Bindings.
- Confirm actions, Button events, request templates, response bindings, and variable declarations/defaults are preserved.
- Open Preview and execute the successful workflow again.
Expected result: configured behavior survives persistence, while previous runtime responses, errors, loading state, input values, and modified runtime variables do not.
Response-binding and variable result
- Typed variable declarations/defaults passed.
- Invalid variable draft remained outside canonical JSON.
- Component response binding executed with
onSuccess. - Variable response binding executed without changing its canonical default.
- Binding edit and delete passed.
- Unsupported and ambiguous targets were excluded.
- Referenced-variable deletion warning passed.
- Legacy
onClickcompatibility and one-way migration passed. - Failure and ephemeral-state checks passed.
- Save/reload persistence passed.
Tester/date: User, 2026-07-29
Notes or defects: Typed declarations, invalid-draft isolation, component onSuccess mapping, and variable onSuccess mapping passed. The two-request variable check proved runtime statusText changed while its canonical Not run default remained intact. Boolean true authoring initially failed and was fixed with an explicit selector. The original httpbin.org endpoint intermittently returned 503; onSuccess correctly withheld those failures. The verified httpbingo.org endpoint produced successful binding results. Binding edit and selected deletion also passed, with the other binding preserved and Add response binding re-enabled. The tester requested a later Actions and Bindings UI revisit because records read as a continuous text stream rather than distinct scannable items. Unsupported TextInput targets and ambiguous duplicate component-name targets were also excluded as expected. Referenced-variable warning, cancellation, accepted deletion, and unresolved-reference diagnostics also passed without changing unrelated records. Legacy onClick execution, informational diagnostics, and one-way migration to onSuccess also passed; new records did not offer onClick. Failure and ephemeral-state checks passed after fixing the clipped Button error: the complete 503 message is readable, onSuccess withheld the failed response, canonical state remained clean, and a later success cleared the stale error. Save/reload preserved canonical configuration, reset all prior runtime state, and the successful workflow executed after reload. Complete response-binding and variable manual acceptance passed.
Test 3: Page-Load Actions
Status: accepted by the user on 2026-07-29 after the rebuilt Docker Compose workflow passed.
Execute this workflow against the rebuilt Docker Compose application before declaring the page-load increment or Slice 2 accepted:
- Create an anonymous REST action that returns Dropdown options or Table rows.
- Assign the existing action to the page's visual
onLoadconfiguration. - Add an
onSuccessresponse binding to the Dropdown or Table. - Inspect JSON and confirm only canonical page event, action, and binding configuration was added.
- Enter Preview and verify the action executes once when Preview initializes.
- Verify loading, successful population, empty results, and failure behavior.
- Leave and re-enter Preview and verify initialization is predictable and does not write runtime values into canonical JSON.
- Save and reload the project and repeat the test.
- Delete the referenced action after accepting its reference warning, or use JSON Editor to create a dangling reference, and verify the Visual Editor shows an actionable missing-action diagnostic.
- Repeat with an empty successful response and confirm the target presents a usable empty state rather than stale prior data.
Page-load result
- Visual
onLoadassignment passed. - Initial successful population passed.
- Loading, empty, and failure states passed.
- Runtime state remained ephemeral.
- Save/reload passed.
- Missing-reference diagnostics passed.
Tester/date: User, 2026-07-29
Notes or defects: Test 3 passed. The populated Table exposed a non-blocking Preview layout limitation: the white page/canvas background retains its configured or minimum size instead of growing with runtime-rendered Table output. TASKS.md now tracks content-aware Preview sizing. It also tracks Table pagination as a separate design item that requires discussion of client-side versus server-side pagination before implementation.
Automated checkpoint: 4 focused suites / 9 tests, 18 full frontend suites / 486 tests, frontend production build, and the 13 / 2 / 2 schema matrix passed under Node 20/npm 10 on 2026-07-29. Docker Compose rebuilt, both services started, backend health passed, and the frontend responded on port 3000. Automation and smoke checks do not mark this workflow accepted.
Final Slice 2 Acceptance
Run this only after Tests 1–3 pass and component-deletion diagnostics are complete.
Workflow launcher
- Build a small form with at least one input, a Button, and a response display.
- Configure an anonymous action, request reference, Button event, and response binding entirely through visual controls.
- Execute it successfully in Preview.
- Trigger a failure and confirm usable error behavior.
- Save, reload, and execute it again.
Dependent data
- Populate a Dropdown through a page-load action and response binding.
- Select a Dropdown value.
- Use that selection in a second Button-triggered request.
- Map the second response to another component or variable.
- Confirm loading, empty, successful, and failed behavior.
Read-only dashboard
- Populate a Table through a page-load action.
- Select a row.
- Display details in a supported response target where the current Slice 2 model allows it.
- Confirm refresh and failure behavior.
Canonical and persistence regression
- Inspect JSON after all configuration is complete.
- Confirm there is no new
inputMapand noaction.responseMappingbehavior. - Confirm no credentials or secrets were introduced.
- Confirm runtime values, loading, responses, and errors are absent.
- Save and reload the project.
- Confirm Visual Editor, JSON Editor, Actions & Bindings, and Preview agree.
Final result
- Request-input workflow accepted.
- Response-binding and variable workflow accepted.
- Page-load workflow accepted.
- Workflow launcher passed without routine JSON editing.
- Dependent-data workflow passed.
- Read-only dashboard workflow passed.
- Failure handling passed.
- Canonical synchronization and save/reload passed.
Tester/date:
Notes or defects:
Recording Results
After a manual workflow is completed:
-
Update its checkboxes in this document.
-
Record the tester, date, environment, and any deviations.
-
Record manual acceptance separately from automated coverage in:
CODEX.mdSLICE2.mdBASELINE.md
-
Do not mark a broader workflow accepted when only one checkpoint passed.
-
File unresolved defects in
TASKS.mdwith enough detail to reproduce them.