All checks were successful
## What & why Second sub-slice of **S-12 (#13)** — the **Workflow Client gains behandelaar user-task operations**, and the process model gains the beoordeling step. - **BPMN:** `registratie.bpmn` now parks at a `Beoordelen` **userTask** (candidate group `behandelaar`) after `OpenZaakAanmaken`; `registrationId` rides along as a process variable so the werkbak can correlate each task to its aggregate. - **Workflow Client** (`IUserTaskClient`, the only code that talks to Flowable §8.2): - `GetOpenBeoordelingenAsync()` — the werkbak (open `Beoordelen` tasks + their `registrationId`) - `ClaimAsync(taskId, behandelaar)` - `CompleteBeoordelingAsync(taskId, besluit)` — carries the decision into the process as the `besluit` variable - **Live integration:** `verify-domain` now drives the full user-task lifecycle against a real Flowable — after the worker opens the zaak, it polls for the task, claims it as `merel-behandelaar`, completes it (`goedkeuren`), and asserts the process finishes. This proves the exact REST contract (`service/runtime/tasks/query` + `…/{id}` claim/complete) the client depends on. The walking skeleton is unaffected: the temporary `/approve` path still sets the zaak status directly; wiring the domain decision to *complete this task* (and driving the werkbak from the BFF) lands in **S-12c**. ## Definition of Done - [x] Linked issue: #13 (umbrella; `refs`, does not close) - [x] Tests first; red → green - [x] Unit + acceptance green (`make unit`): domain 76, acceptance 9 (acl/event-subscriber/bff unaffected) - [x] Mutation ≥ break(90): **domain 100%** (killed the new survivors *and* the pre-existing `FlowableWorkflowClient` baseline) - [x] Live Flowable user-task lifecycle asserted in `verify-domain` - [ ] CI green (pending) Part of #13. Reviewed-on: #83
122 lines
6.4 KiB
Bash
Executable File
122 lines
6.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Verify the BIG Domain Service end-to-end (S-05) against an ALREADY-RUNNING full stack:
|
|
# domain → Flowable (start the registratie process + external-task worker) → ACL → OpenZaak.
|
|
# Submits a registration to the domain and asserts the worker opens a zaak in OpenZaak and
|
|
# records its URL on the aggregate (ADR-0009).
|
|
#
|
|
# The seeded zaaktype URL is server-assigned, so it isn't knowable at initial bring-up. This
|
|
# script therefore seeds a published BIG zaaktype and recreates the `acl` service configured to
|
|
# default-fill it — pointing the ACL at the SAME OpenZaak host that owns the URL, so zaak creation
|
|
# is host-consistent (exactly the configuration the ACL integration test proves, ADR-0006). That
|
|
# one recreate aside, the caller owns stack bring-up + teardown.
|
|
#
|
|
# All in-network, reaching services by container IP (a single-label host isn't URL-valid; the
|
|
# runner can't reach published ports — gitea-actions-gotchas.md §5/§6). Plain docker primitives.
|
|
set -euo pipefail
|
|
|
|
here="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
root="$(cd "$here/.." && pwd)"
|
|
compose="$root/infra/docker-compose.yml"
|
|
|
|
ip() { docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' "$1"; }
|
|
|
|
oz="$(docker ps -q --filter 'name=[-_]openzaak[-_]' | head -1)"
|
|
dom="$(docker ps -q --filter 'name=domain' | head -1)"
|
|
[ -n "$oz" ] || { echo "ERROR: no running OpenZaak container — bring the stack up first" >&2; exit 1; }
|
|
[ -n "$dom" ] || { echo "ERROR: no running domain container — bring the stack up first" >&2; exit 1; }
|
|
net="$(docker inspect -f '{{range $k,$_ := .NetworkSettings.Networks}}{{$k}}{{"\n"}}{{end}}' "$oz" | head -1)"
|
|
oz_ip="$(ip "$oz")"; dom_ip="$(ip "$dom")"
|
|
oz_base="http://$oz_ip:8000"
|
|
echo ">> openzaak=$oz_ip domain=$dom_ip network=$net"
|
|
|
|
echo ">> seeding a published BIG zaaktype (idempotent) and capturing its URL"
|
|
sid="$(docker create --network "$net" -e "OZ_BASE=$oz_base" -e OZ_PUBLISH=1 python:3-slim python /seed.py)"
|
|
docker cp "$here/openzaak/seed_catalogus.py" "$sid:/seed.py" >/dev/null
|
|
zt_url="$(docker start -a "$sid" | sed -n 's/^ZAAKTYPE_URL //p' | head -1)"
|
|
docker rm -f "$sid" >/dev/null
|
|
[ -n "$zt_url" ] || { echo "ERROR: seed did not report a ZAAKTYPE_URL" >&2; exit 1; }
|
|
echo ">> zaaktype: $zt_url"
|
|
|
|
echo ">> recreating the acl service pointed at the seeded zaaktype (host-consistent)"
|
|
ACL_ZAAKTYPE_URL="$zt_url" ACL_OPENZAAK_BASEURL="$oz_base/" docker compose -f "$compose" up -d acl
|
|
WAIT_TIMEOUT="${WAIT_TIMEOUT:-120}" bash "$here/wait-healthy.sh" acl
|
|
|
|
echo ">> submitting a registration to the domain"
|
|
loc="$(docker run --rm --network "$net" curlimages/curl:latest \
|
|
-fsS -D - -o /dev/null -X POST "http://$dom_ip:8080/registrations" \
|
|
-H 'Content-Type: application/json' -d '{"bsn":"123456782"}' \
|
|
| sed -n 's/\r$//; s/^[Ll]ocation: //p' | head -1)"
|
|
[ -n "$loc" ] || { echo "ERROR: POST /registrations returned no Location" >&2; exit 1; }
|
|
echo ">> registration accepted at $loc"
|
|
|
|
echo ">> polling the domain until the worker records the opened zaak"
|
|
zaak_ok=""
|
|
for _ in $(seq 1 30); do
|
|
body="$(docker run --rm --network "$net" curlimages/curl:latest \
|
|
-fsS "http://$dom_ip:8080$loc" 2>/dev/null || true)"
|
|
if echo "$body" | grep -q '/zaken/api/v1/zaken/'; then
|
|
echo "OK — the domain opened a zaak and recorded it on the registration:"
|
|
echo "$body" | cut -c1-300
|
|
zaak_ok=1
|
|
break
|
|
fi
|
|
sleep 2
|
|
done
|
|
if [ -z "$zaak_ok" ]; then
|
|
echo "FAIL — the registration never received a zaak URL" >&2
|
|
echo "--- domain log ---" >&2; docker logs "$dom" 2>&1 | tail -15 >&2
|
|
acl="$(docker ps -q --filter 'name=[-_]acl[-_]' | head -1)"
|
|
[ -n "$acl" ] && { echo "--- acl log ---" >&2; docker logs "$acl" 2>&1 | tail -15 >&2; }
|
|
exit 1
|
|
fi
|
|
|
|
# ── S-12b: the process now parks at the Beoordelen user task. Exercise the exact Flowable REST
|
|
# contract the Workflow Client uses (query/claim/complete) against the live engine, reaching
|
|
# flowable-rest by container IP (same in-network constraint as above). ──────────────────────────
|
|
fl="$(docker ps -q --filter 'name=flowable-rest' | head -1)"
|
|
[ -n "$fl" ] || { echo "ERROR: no running flowable-rest container" >&2; exit 1; }
|
|
fl_base="http://$(ip "$fl"):8080/flowable-rest/service"
|
|
reg_id="${loc##*/}"
|
|
|
|
# Extracts the Beoordelen task id for our registration from a Flowable task-query response on stdin.
|
|
# Tolerates an empty/non-JSON body (a transient failure during the poll) by printing nothing.
|
|
task_for_reg() { REG_ID="$reg_id" python3 -c "import os,sys,json
|
|
try:
|
|
d=json.load(sys.stdin)
|
|
except Exception:
|
|
d={}
|
|
rid=os.environ['REG_ID']
|
|
# Flowable's task-query returns the included process variables under 'variables'.
|
|
print(next((t['id'] for t in (d.get('data') or [])
|
|
if any(v.get('name')=='registrationId' and v.get('value')==rid for v in (t.get('variables') or []))), ''))"; }
|
|
|
|
flcurl() { docker run --rm --network "$net" curlimages/curl:latest -fsS -u rest-admin:test "$@"; }
|
|
query='{"processDefinitionKey":"registratie","taskDefinitionKey":"Beoordelen","includeProcessVariables":true}'
|
|
|
|
echo ">> polling Flowable for the Beoordelen user task (werkbak)"
|
|
task_id=""
|
|
for _ in $(seq 1 30); do
|
|
resp="$(flcurl -X POST "$fl_base/query/tasks" -H 'Content-Type: application/json' -d "$query" 2>/dev/null || true)"
|
|
task_id="$(printf '%s' "$resp" | task_for_reg)"
|
|
[ -n "$task_id" ] && break
|
|
sleep 2
|
|
done
|
|
[ -n "$task_id" ] || { echo "FAIL — no Beoordelen task appeared for registration $reg_id" >&2; docker logs "$dom" 2>&1 | tail -15 >&2; exit 1; }
|
|
echo ">> Beoordelen task $task_id is waiting"
|
|
|
|
echo ">> claiming the task as merel-behandelaar"
|
|
flcurl -X POST "$fl_base/runtime/tasks/$task_id" -H 'Content-Type: application/json' \
|
|
-d '{"action":"claim","assignee":"merel-behandelaar"}' >/dev/null
|
|
|
|
echo ">> completing the beoordeling (goedkeuren)"
|
|
flcurl -X POST "$fl_base/runtime/tasks/$task_id" -H 'Content-Type: application/json' \
|
|
-d '{"action":"complete","variables":[{"name":"besluit","type":"string","value":"goedkeuren"}]}' >/dev/null
|
|
|
|
echo ">> asserting the process finished (no Beoordelen task remains for the registration)"
|
|
resp="$(flcurl -X POST "$fl_base/query/tasks" -H 'Content-Type: application/json' -d "$query")"
|
|
still="$(printf '%s' "$resp" | task_for_reg)"
|
|
[ -z "$still" ] || { echo "FAIL — Beoordelen task $still still active after completion" >&2; exit 1; }
|
|
echo "OK — behandelaar claimed and completed the Beoordelen task; the registratie process finished"
|
|
exit 0
|