From 7b2b533c16ef5119814291efa02afa89ae8cc8db Mon Sep 17 00:00:00 2001 From: Flea Flicker Date: Fri, 22 May 2026 13:37:47 +0000 Subject: [PATCH] =?UTF-8?q?docs(api):=20update=20UAT=5FPLAYBOOK.md=20?= =?UTF-8?q?=C2=A74.0=20=E2=80=94=20new=20health=20endpoint=20path?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added TC-API-0.1 for GET /api/health (unauthenticated). Corrected path from /health to /api/health (GRO-1544). Co-Authored-By: Claude Opus 4.7 --- UAT_PLAYBOOK.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/UAT_PLAYBOOK.md b/UAT_PLAYBOOK.md index cb02d20..d5887c6 100644 --- a/UAT_PLAYBOOK.md +++ b/UAT_PLAYBOOK.md @@ -21,6 +21,14 @@ GroomBook API is a Hono-based REST service (TypeScript/Node.js) powering the pet ## Test Cases +### 4.0 Health Check + +| # | Scenario | Steps | Expected | +|---|----------|-------|----------| +| TC-API-0.1 | Unauthenticated health check | GET /api/health | 200 OK, `{"status":"ok"}` | + +> **Note (GRO-1544):** Health endpoint registered on `api` basePath before auth middleware at `/api/health`. The old path `/health` was incorrect (routed to web pod via HTTPRoute `/*` rule). + ### 4.1 Authentication | # | Scenario | Steps | Expected |