Split docker-compose.test.yml: one container per microservice #15
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The current test compose runs everything monolithically. Rework docker-compose.test.yml so each microservice runs in its own container (auth, catalogue, streaming, ingest, thumbnailer, metadata) with the same inter-service networking as production. Tests should hit the real HTTP endpoints through nginx or direct service ports. This validates that service-to-service JWT auth, NATS event flow, and S3 access all work end-to-end, not just in-process. Mark these as e2e tests (already have pytest marker). Add a make target: 'make test-e2e'.