Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion harness/tests/e2e/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ scenario through one global `allow: ["*"]` policy:
accuracy, remediation, and clarity.
- `reactive_automation`: orchestrates three parallel database writers,
trigger-spawned aggregate reactors, and a single finalizer. The CI stack uses
SQLite, so the scenario proves bounded `database::row-change` discovery and
SQLite, so the scenario proves bounded `database::row-changed` discovery and
the namespaced `state`-trigger fallback. The evaluator queries the resulting
tables, verifies trigger provenance from session metadata, and checks that all
run-owned triggers were removed.
Expand Down
2 changes: 1 addition & 1 deletion harness/tests/e2e/run-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ start_process database \
--url "$iii_url" \
--config "$database_config"
wait_for_function database::query
wait_for_trigger_type database::row-change
wait_for_trigger_type database::row-changed

start_process state \
"$repo_root/state/target/release/state" \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Namespace every other resource and session with `{run_label}`.
Required execution:

1. Before spawning writers, list the available trigger types and probe
`database::row-change` against `{orders}`. Allow at most 30 seconds for the probe, remove its
`database::row-changed` against `{orders}`. Allow at most 30 seconds for the probe, remove its
test row afterward, and record the result.

2. Before spawning writers, register a namespaced `state` trigger targeting `harness::react`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pub(super) async fn collect(
row_change_probe: calls.iter().position(|call| {
call.function_id == "engine::register_trigger"
&& call.arguments.get("trigger_type").and_then(Value::as_str)
== Some("database::row-change")
== Some("database::row-changed")
}),
state_reaction: calls.iter().position(|call| {
call.function_id == "engine::register_trigger"
Expand Down
Loading