1d198acc97
The from-scratch dev login was broken: open the banner's http://localhost:3000, sign in as the seeded admin, and you landed on http://127.0.0.1:3000/error "Page not found". Root cause: the banner/APP_URL said localhost but kratos.yml hard-coded 127.0.0.1, and a host-scoped Kratos CSRF cookie can't cross localhost<->127.0.0.1, so the cross-host login POST lost it; Kratos redirected to its error sink, which the app had no route for (404). Make APP_URL the single source of truth for the public host: - Canonical-host redirect (app.ts): when APP_URL is set, an off-host GET/HEAD visitor is 308'd to it (path+query kept) before a flow starts, so the browser, the themed forms and the cross-origin Kratos POST share one cookie host. After /public/ so static/health checks stay host-agnostic; GET/HEAD only so a 308 never replays a cross-host POST. - Opt-in (no NODE_ENV / no magic default): unset => no redirect, so a prod deploy that forgets APP_URL can't bounce real users to a stale default. The dev stack sets it. - kratos.yml browser URLs default to localhost (match APP_URL's dev value) and derive from ${APP_URL} via compose.override.yml; SERVE_PUBLIC_BASE_URL keeps the dev Ory port. - Real /error page (views/error.ejs) replaces the catch-all 404 for genuine flow errors. Tests-first: config (opt-in/validated), app (308 on mismatch, no-redirect on match, static host-agnostic, POST untouched, /error page), updated kratos.test host pins. New devstack regression (e2e/devstack-login.spec + compose.e2e-devstack.yml) drives the plain docker-compose-up topology on the host network: login from localhost works and 127.0.0.1 is canonicalised; wired into scripts/ci.sh. typecheck + 360 units + full ci.sh (visual 10 · auth 1 · oauth 2 · full 7 · devstack 2) green.
52 lines
2.2 KiB
YAML
52 lines
2.2 KiB
YAML
# Full-stack auth E2E — token timeout + silent re-mint ("stay signed in", §4). The Ory-free
|
|
# visual suite (compose.e2e.yml) covers the design system; this is its full-stack counterpart:
|
|
# real Postgres + Kratos + Keto + bootstrap + web, with a SHORT tokenizer TTL (ory/kratos/e2e.yml)
|
|
# and zero clock skew, so the JWT lapses and re-mints within seconds instead of ~10m.
|
|
# docker compose -f compose.yml -f compose.e2e-auth.yml run --build --rm e2e
|
|
# docker compose -f compose.yml -f compose.e2e-auth.yml down -v # tear down after
|
|
services:
|
|
web:
|
|
# This suite exercises only the Kratos session → JWT re-mint; it needs Kratos + Keto + bootstrap,
|
|
# not Hydra. Drop the base web→hydra dep so the leaner stack doesn't boot Hydra (which the e2e
|
|
# overlays don't run with --dev, so it would refuse its http issuer and never become healthy).
|
|
depends_on: !override
|
|
bootstrap:
|
|
condition: service_completed_successfully
|
|
kratos:
|
|
condition: service_healthy
|
|
keto:
|
|
condition: service_healthy
|
|
# Dev throwaways are fine for the test stack; the runner hits web over http; treat the JWT as
|
|
# expired the instant its TTL lapses (no 60s leeway) so the re-mint fires promptly.
|
|
environment:
|
|
APP_URL: http://web:3000 # the runner calls web on this host → canonical-host redirect stays inert
|
|
CACHE_TEMPLATES: "true"
|
|
JWT_CLOCK_SKEW_SEC: "0"
|
|
REQUIRE_SECURE_SECRETS: "false"
|
|
SECURE_COOKIES: "false"
|
|
healthcheck:
|
|
test: ["CMD", "wget", "-q", "-O", "-", "http://localhost:3000/public/css/styles.css"]
|
|
interval: 2s
|
|
timeout: 4s
|
|
retries: 30
|
|
|
|
# Shorten the session→JWT TTL and expose a network-resolvable base_url (ory/kratos/e2e.yml),
|
|
# merged after the base config.
|
|
kratos:
|
|
command: serve -c /etc/config/kratos/kratos.yml -c /etc/config/kratos/e2e.yml --watch-courier
|
|
|
|
e2e:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.e2e
|
|
depends_on:
|
|
web:
|
|
condition: service_healthy
|
|
environment:
|
|
BASE_URL: http://web:3000
|
|
KRATOS_ADMIN_URL: http://kratos:4434
|
|
KRATOS_PUBLIC_URL: http://kratos:4433
|
|
command: ["npx", "playwright", "test", "auth-refresh.spec.ts"]
|
|
volumes:
|
|
- ./e2e/artifacts:/e2e/artifacts
|