Files
Admin Bot 1dc688aec2
CI / Vet, test, build (push) Canceled after 1m47s
CI / Build and push image (push) Canceled after 0s
test: real integration tests for X-Service adapter routing
Tests that verify actual service operations:
- SQS send-message routing
- S3 list-objects with JWT pass-through
- Memory query routing
- IAM with JWT
- Authorization header pass-through to services

Tests gracefully skip if services unreachable (expected behavior).
Tests get real JWT from Authentik if credentials provided.

Run: GATEWAY_URL=http://localhost:8080 ./scripts/test-integration.sh
Or:  GATEWAY_URL=https://api.riotpiao.com \
     AUTHENTIK_CLIENT_ID=xxx AUTHENTIK_CLIENT_SECRET=yyy \
     ./scripts/test-integration.sh
2026-08-27 11:31:17 -07:00

16 lines
537 B
Bash
Executable File

#!/bin/bash
# Real integration tests - call actual services
# Usage: GATEWAY_URL=https://api.riotpiao.com \
# AUTHENTIK_CLIENT_ID=xxx AUTHENTIK_CLIENT_SECRET=yyy \
# ./scripts/test-integration.sh
set -e
GATEWAY_URL=${GATEWAY_URL:-http://localhost:8080}
AUTHENTIK_URL=${AUTHENTIK_URL:-https://authentik.riotpiao.com}
TEST_TIMEOUT=${TEST_TIMEOUT:-30}
export GATEWAY_URL AUTHENTIK_URL AUTHENTIK_CLIENT_ID AUTHENTIK_CLIENT_SECRET TEST_TIMEOUT
go test -tags integration -v ./internal/serviceadapter -run TestRealIntegration