Compare commits
62 Commits
7cf0c49b74
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 07714d2b04 | |||
| 5c1bc7d803 | |||
| 89e4d31328 | |||
| 5fbd781b7f | |||
| cde5833837 | |||
| da537fddf6 | |||
| bcb28d45f6 | |||
| ac84b99142 | |||
| 70e5374ae1 | |||
| 888cf2d763 | |||
| 9c0e4ff1ce | |||
| 8d544d7527 | |||
| b7844247d5 | |||
| ebc5d7fe4e | |||
| 457fb220a0 | |||
| b83793700d | |||
| 263cbe3b5d | |||
| e7839487b5 | |||
| 54a81b68b8 | |||
| aec3c64a4c | |||
| bfd64325c0 | |||
| ea7bd4dcf2 | |||
| 68db9ec7e7 | |||
| 5bb695f0a0 | |||
| 4fd24b50f3 | |||
| b0da12b1e0 | |||
| d691543e6c | |||
| 7504bc6f08 | |||
| 184a04d755 | |||
| 5ed912383b | |||
| e06bebc59b | |||
| 78163a10dd | |||
| 764df8b5f2 | |||
| 8f571c4884 | |||
| 8b40cd53c5 | |||
| ffcde621d3 | |||
| 275d94e3ec | |||
| 2a566bf1db | |||
| 3040024480 | |||
| c609933190 | |||
| a6c6da38ff | |||
| 2d30d53846 | |||
| 3752161f46 | |||
| 30ff47bf72 | |||
| 31b1a85a2d | |||
| 33d497b674 | |||
| b88490d187 | |||
| 8f1219e27f | |||
| af6e89274d | |||
| ef6cf2999b | |||
| 1c9be2d57d | |||
| 01c5229f26 | |||
| 50aa276c37 | |||
| f5dc53dc96 | |||
| d415f0d82f | |||
| 5920529de7 | |||
| c2ef3a3160 | |||
| f60d9bb66c | |||
| de03b9625c | |||
| 44d0093069 | |||
| fc2e0cb44e | |||
| 7121747d35 |
@@ -12,6 +12,7 @@ env:
|
||||
REMOTE_DEPLOY_PATH: /var/app/traefik/test
|
||||
REMOTE_PROD_PATH: /var/app/traefik/prod
|
||||
REMOTE_STAGING_PATH: /var/app/traefik/staging
|
||||
REMOTE_PREPROD_PATH: /var/app/traefik/preprod
|
||||
|
||||
# --- SECRETS ---
|
||||
SSH_HOST: ${{ secrets.SSH_HOST }}
|
||||
@@ -49,7 +50,7 @@ jobs:
|
||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
||||
|
||||
- name: Deploy via Rsync & Docker
|
||||
uses: easingthemes/ssh-deploy@922253577e23ce0edbfdbf819f0e1ceaecabc61a # v5.1.2
|
||||
uses: easingthemes/ssh-deploy@2cc5b27bf3029d0455dd5e09fe02633904031447 # v6.0.3
|
||||
env:
|
||||
SSH_PRIVATE_KEY: ${{ env.SSH_PRIVATE_KEY }}
|
||||
REMOTE_HOST: ${{ env.SSH_HOST }}
|
||||
@@ -65,7 +66,7 @@ jobs:
|
||||
SCRIPT_AFTER: |
|
||||
set -e
|
||||
cd ${{ needs.prepare_context.outputs.pr_path }}
|
||||
docker compose --env-file dev.env -f docker-compose.yaml up -d --build --remove-orphans --wait
|
||||
docker compose --env-file dev.env -f docker-compose.yaml -f docker-compose.dev.yaml up -d --build --remove-orphans --wait
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# STAGE 3: DEPLOY STAGING
|
||||
@@ -78,7 +79,7 @@ jobs:
|
||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
||||
|
||||
- name: Deploy via Rsync & Docker
|
||||
uses: easingthemes/ssh-deploy@922253577e23ce0edbfdbf819f0e1ceaecabc61a # v5.1.2
|
||||
uses: easingthemes/ssh-deploy@2cc5b27bf3029d0455dd5e09fe02633904031447 # v6.0.3
|
||||
env:
|
||||
SSH_PRIVATE_KEY: ${{ env.SSH_PRIVATE_KEY }}
|
||||
REMOTE_HOST: ${{ env.SSH_HOST }}
|
||||
@@ -91,13 +92,13 @@ jobs:
|
||||
SCRIPT_AFTER: |
|
||||
set -e
|
||||
cd ${{ env.REMOTE_STAGING_PATH }}
|
||||
docker compose --env-file staging.env -f docker-compose.yaml up -d --build --remove-orphans --wait
|
||||
docker compose --env-file staging.env -f docker-compose.yaml -f docker-compose.client.yaml up -d --build --remove-orphans --wait
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# STAGE 4: DEPLOY PRODUCTION
|
||||
# STAGE 3.5: DEPLOY PRE-PROD
|
||||
# ------------------------------------------------------------------
|
||||
deploy_prod:
|
||||
name: Deploy (Production)
|
||||
deploy_preprod:
|
||||
name: Deploy (Pre-Prod)
|
||||
runs-on: ubuntu-latest
|
||||
needs: [deploy_staging]
|
||||
if: github.ref == 'refs/heads/main'
|
||||
@@ -105,7 +106,69 @@ jobs:
|
||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
||||
|
||||
- name: Deploy via Rsync & Docker
|
||||
uses: easingthemes/ssh-deploy@922253577e23ce0edbfdbf819f0e1ceaecabc61a # v5.1.2
|
||||
uses: easingthemes/ssh-deploy@2cc5b27bf3029d0455dd5e09fe02633904031447 # v6.0.3
|
||||
env:
|
||||
SSH_PRIVATE_KEY: ${{ env.SSH_PRIVATE_KEY }}
|
||||
REMOTE_HOST: ${{ env.SSH_HOST }}
|
||||
REMOTE_USER: ${{ env.SSH_USER }}
|
||||
REMOTE_PORT: ${{ env.SSH_PORT }}
|
||||
TARGET: ${{ env.REMOTE_PREPROD_PATH }}
|
||||
EXCLUDE: ".git/, .github/"
|
||||
SCRIPT_BEFORE: |
|
||||
mkdir -p ${{ env.REMOTE_PREPROD_PATH }}
|
||||
SCRIPT_AFTER: |
|
||||
set -e
|
||||
cd ${{ env.REMOTE_PREPROD_PATH }}
|
||||
docker compose --env-file preprod.env -f docker-compose.yaml -f docker-compose.prod.yaml -f docker-compose.preprod.yaml up -d --build --remove-orphans --wait
|
||||
|
||||
- name: Run E2E Tests
|
||||
uses: appleboy/ssh-action@0ff4204d59e8e51228ff73bce53f80d53301dee2 # v1.2.5
|
||||
with:
|
||||
host: ${{ env.SSH_HOST }}
|
||||
username: ${{ env.SSH_USER }}
|
||||
key: ${{ env.SSH_PRIVATE_KEY }}
|
||||
port: ${{ env.SSH_PORT }}
|
||||
script: |
|
||||
set -e
|
||||
cd ${{ env.REMOTE_PREPROD_PATH }}
|
||||
|
||||
echo "Running E2E tests..."
|
||||
python3 -m venv .venv
|
||||
. .venv/bin/activate
|
||||
|
||||
# Export env vars
|
||||
set -a
|
||||
. preprod.env
|
||||
set +a
|
||||
|
||||
pip install -r tests/e2e/requirements.txt
|
||||
|
||||
# Run tests
|
||||
if pytest tests/e2e/; then
|
||||
echo "Tests passed!"
|
||||
# Cleanup on success
|
||||
docker compose --env-file preprod.env -f docker-compose.yaml -f docker-compose.prod.yaml down --remove-orphans
|
||||
else
|
||||
echo "Tests failed!"
|
||||
# Optional: Cleanup on failure? Or keep for debugging?
|
||||
# User's previous script had it after, implying it runs if pytest succeeds (due to set -e).
|
||||
# I will fail the step.
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# STAGE 4: DEPLOY PRODUCTION
|
||||
# ------------------------------------------------------------------
|
||||
deploy_prod:
|
||||
name: Deploy (Production)
|
||||
runs-on: ubuntu-latest
|
||||
needs: [deploy_preprod]
|
||||
if: github.ref == 'refs/heads/main'
|
||||
steps:
|
||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
||||
|
||||
- name: Deploy via Rsync & Docker
|
||||
uses: easingthemes/ssh-deploy@2cc5b27bf3029d0455dd5e09fe02633904031447 # v6.0.3
|
||||
env:
|
||||
SSH_PRIVATE_KEY: ${{ env.SSH_PRIVATE_KEY }}
|
||||
REMOTE_HOST: ${{ env.SSH_HOST }}
|
||||
@@ -126,6 +189,10 @@ jobs:
|
||||
# Create venv to avoid polluting system python
|
||||
python3 -m venv .venv
|
||||
. .venv/bin/activate
|
||||
# Export env vars so pytest can see them
|
||||
set -a
|
||||
. prod.env
|
||||
set +a
|
||||
pip install -r tests/e2e/requirements.txt
|
||||
pytest tests/e2e/
|
||||
|
||||
|
||||
9
docker-compose.client.yaml
Normal file
9
docker-compose.client.yaml
Normal file
@@ -0,0 +1,9 @@
|
||||
services:
|
||||
traefik:
|
||||
networks:
|
||||
- proxy
|
||||
- shared_network
|
||||
networks:
|
||||
shared_network:
|
||||
name: prod_shared-network
|
||||
external: true
|
||||
16
docker-compose.dev.yaml
Normal file
16
docker-compose.dev.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
services:
|
||||
traefik:
|
||||
networks:
|
||||
- proxy
|
||||
- staging-network
|
||||
- shared_network
|
||||
networks:
|
||||
legacy-nginx:
|
||||
name: proxy
|
||||
external: true
|
||||
staging-network:
|
||||
name: staging_proxy
|
||||
external: true
|
||||
shared_network:
|
||||
name: prod_shared-network
|
||||
external: true
|
||||
13
docker-compose.preprod.yaml
Normal file
13
docker-compose.preprod.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
services:
|
||||
traefik:
|
||||
networks:
|
||||
- proxy
|
||||
- legacy-nginx
|
||||
- shared-network
|
||||
networks:
|
||||
legacy-nginx:
|
||||
name: proxy
|
||||
external: true
|
||||
shared-network:
|
||||
name: prod_shared-network
|
||||
external: true
|
||||
@@ -3,7 +3,10 @@ services:
|
||||
networks:
|
||||
- proxy
|
||||
- legacy-nginx
|
||||
- shared-network
|
||||
networks:
|
||||
legacy-nginx:
|
||||
name: proxy
|
||||
external: true
|
||||
shared-network:
|
||||
external: false
|
||||
@@ -1,6 +1,6 @@
|
||||
services:
|
||||
traefik:
|
||||
image: "traefik:v3.6@sha256:5d1de6bc6984699e4447787a0e7904437aaea542fecf0fccb79c8c743c7248c8"
|
||||
image: "traefik:v3.7@sha256:eb328e2c806c53aafbbace6c451fa54d268961261a85452fcf0fb752a30c17be"
|
||||
restart: unless-stopped
|
||||
security_opt:
|
||||
- no-new-privileges:true
|
||||
|
||||
9
preprod.env
Normal file
9
preprod.env
Normal file
@@ -0,0 +1,9 @@
|
||||
PORT=8081
|
||||
HTTPS_PORT=447
|
||||
ENV=preprod
|
||||
NETWORK_NAME=proxy
|
||||
CERTBOT_CA_RESOLVER=https://acme-staging-v02.api.letsencrypt.org/directory
|
||||
DOMAIN=preprod.kovagoadi.hu
|
||||
ACME_BYPASS=false
|
||||
TRAEFIK_LEGACY_OPT="--providers.file.directory=/etc/traefik"
|
||||
CI=true
|
||||
47
preprod/forward-to-legacy-nginx.yaml
Normal file
47
preprod/forward-to-legacy-nginx.yaml
Normal file
@@ -0,0 +1,47 @@
|
||||
# ./traefik/forward-to-legacy-nginx.yaml
|
||||
|
||||
tcp:
|
||||
routers:
|
||||
# Router for HTTPS (Passthrough)
|
||||
nginx-legacy-router-secure:
|
||||
rule: "HostSNI(`*`)"
|
||||
service: nginx-legacy-service-secure
|
||||
# Passthrough must be true for SSL to reach Nginx encrypted
|
||||
tls:
|
||||
passthrough: true
|
||||
priority: 10
|
||||
entryPoints:
|
||||
- "https"
|
||||
|
||||
services:
|
||||
# Service defining the external IP
|
||||
nginx-legacy-service-secure:
|
||||
loadBalancer:
|
||||
servers:
|
||||
# This is the actual external IP and Port of your Nginx
|
||||
- address: "webserver:443"
|
||||
|
||||
http:
|
||||
routers:
|
||||
# 1. TRAEFIK-MANAGED ACME HANDLER (Removed manual router)
|
||||
traefik-acme-handler:
|
||||
rule: "Host(`test-whoami.kovagoadi.hu`) && PathPrefix(`/.well-known/acme-challenge/`)"
|
||||
entryPoints:
|
||||
- "web"
|
||||
service: "acme-http@internal" # This is the internal service name
|
||||
priority: 1000 # High priority to ensure it wins
|
||||
|
||||
# 2. THE HTTP CATCH-ALL (Sends other ACME and HTTP to Nginx)
|
||||
nginx-legacy-router:
|
||||
rule: "HostRegexp(`^.+$`)"
|
||||
service: nginx-legacy-service
|
||||
# Low priority ensures specific containers are handled first, but before the default acme-handler
|
||||
priority: 90
|
||||
entryPoints:
|
||||
- "web"
|
||||
|
||||
services:
|
||||
nginx-legacy-service:
|
||||
loadBalancer:
|
||||
servers:
|
||||
- url: "http://webserver:80"
|
||||
33
preprod/route-to-staging-dev.yaml
Normal file
33
preprod/route-to-staging-dev.yaml
Normal file
@@ -0,0 +1,33 @@
|
||||
http:
|
||||
routers:
|
||||
# Router for HTTP (Port 80)
|
||||
staging:
|
||||
rule: "HostRegexp(`^.+\\.staging\\.kovagoadi\\.hu$`) || HostRegexp(`^.+\\.dev\\.kovagoadi\\.hu$`)"
|
||||
entryPoints:
|
||||
- "web"
|
||||
service: "dev-staging"
|
||||
priority: 1000
|
||||
services:
|
||||
dev-staging:
|
||||
loadBalancer:
|
||||
servers:
|
||||
- url: "http://staging-traefik-1:80"
|
||||
|
||||
tcp:
|
||||
routers:
|
||||
# Router for HTTPS (Passthrough)
|
||||
dev-staging-secure:
|
||||
rule: "HostSNIRegexp(`^.+\\.staging\\.kovagoadi\\.hu$`) || HostSNIRegexp(`^.+\\.dev\\.kovagoadi\\.hu$`)"
|
||||
service: "dev-staging-secure"
|
||||
# Passthrough must be true for SSL to reach Nginx encrypted
|
||||
tls:
|
||||
passthrough: true
|
||||
priority: 1000
|
||||
entryPoints:
|
||||
- "https"
|
||||
services:
|
||||
dev-staging-secure:
|
||||
loadBalancer:
|
||||
servers:
|
||||
# Note: Ensure Traefik trusts the cert at .85 or set insecureSkipVerify
|
||||
- address: "staging-traefik-1:443"
|
||||
@@ -11,7 +11,7 @@ http:
|
||||
dev-staging:
|
||||
loadBalancer:
|
||||
servers:
|
||||
- url: "http://staging:8080"
|
||||
- url: "http://staging-traefik-1:80"
|
||||
|
||||
tcp:
|
||||
routers:
|
||||
@@ -30,4 +30,4 @@ tcp:
|
||||
loadBalancer:
|
||||
servers:
|
||||
# Note: Ensure Traefik trusts the cert at .85 or set insecureSkipVerify
|
||||
- address: "staging:445"
|
||||
- address: "staging-traefik-1:443"
|
||||
@@ -3,108 +3,108 @@ import requests
|
||||
import os
|
||||
|
||||
# Configuration
|
||||
DOMAIN = os.getenv("DOMAIN", "dev.kovagoadi.hu")
|
||||
PORT = os.getenv("PORT", "898")
|
||||
HTTPS_PORT = os.getenv("HTTPS_PORT", "446")
|
||||
DOMAIN = os.getenv("DOMAIN", "asdasd.kovagoadi.hu")
|
||||
PORT = os.getenv("PORT", "10000")
|
||||
HTTPS_PORT = os.getenv("HTTPS_PORT", "10001")
|
||||
|
||||
BASE_URL = f"http://127.0.0.1:{PORT}"
|
||||
HTTPS_BASE_URL = f"https://127.0.0.1:{HTTPS_PORT}"
|
||||
BASE_URL = f"http://192.168.1.85:{PORT}"
|
||||
HTTPS_BASE_URL = f"https://192.168.1.85:{HTTPS_PORT}"
|
||||
HOST_HEADER = f"test-whoami.{DOMAIN}"
|
||||
|
||||
@pytest.fixture(scope="session", autouse=True)
|
||||
def mock_webserver():
|
||||
"""Start ephemeral mock webserver containers and configure Traefik."""
|
||||
import time
|
||||
|
||||
# Skip ephemeral mocks in CI environment; test against real services
|
||||
if os.getenv("CI"):
|
||||
print("CI environment detected. Skipping ephemeral mock setup; testing against real services.")
|
||||
yield
|
||||
return
|
||||
|
||||
# In CI (Docker-in-Docker), we need to use the HOST path for volumes, not the container path.
|
||||
# The workflow mounts the project root to /app, but the Docker daemon is on the host.
|
||||
# We pass PROJECT_ROOT env var to the test container to tell it where the files are on the HOST.
|
||||
cwd = os.getenv("PROJECT_ROOT", os.getcwd())
|
||||
certs_dir = os.path.join(cwd, "tests/mock_nginx/certs")
|
||||
image = "nginx:alpine"
|
||||
|
||||
# Define mocks
|
||||
mocks = [
|
||||
{
|
||||
"name": "mock-legacy-ephemeral",
|
||||
"alias": "webserver",
|
||||
"conf": os.path.join(cwd, "tests/mock_nginx/legacy.conf"),
|
||||
"ports": ["80", "443"]
|
||||
},
|
||||
{
|
||||
"name": "mock-staging-ephemeral",
|
||||
"alias": "mock",
|
||||
"conf": os.path.join(cwd, "tests/mock_nginx/staging.conf"),
|
||||
"ports": ["8080", "445"]
|
||||
}
|
||||
]
|
||||
|
||||
# Cleanup and Start Mocks
|
||||
mock_ips = {}
|
||||
for mock in mocks:
|
||||
subprocess.run(["docker", "rm", "-f", mock["name"]], capture_output=True)
|
||||
cmd = [
|
||||
"docker", "run", "-d", "--rm",
|
||||
"--name", mock["name"],
|
||||
"--network", "proxy",
|
||||
"--network-alias", mock["alias"],
|
||||
"-v", f"{mock['conf']}:/etc/nginx/nginx.conf:ro",
|
||||
"-v", f"{certs_dir}:/etc/nginx/certs:ro",
|
||||
image
|
||||
]
|
||||
|
||||
print(f"Starting {mock['name']}...")
|
||||
result = subprocess.run(cmd, capture_output=True, text=True)
|
||||
if result.returncode != 0:
|
||||
print(f"STDOUT: {result.stdout}")
|
||||
print(f"STDERR: {result.stderr}")
|
||||
pytest.fail(f"Failed to start {mock['name']}: {result.stderr}")
|
||||
|
||||
# Inspect container to get IP
|
||||
inspect_cmd = ["docker", "inspect", "-f", "{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}", mock["name"]]
|
||||
inspect_res = subprocess.run(inspect_cmd, capture_output=True, text=True)
|
||||
if inspect_res.returncode != 0:
|
||||
pytest.fail(f"Failed to inspect {mock['name']}: {inspect_res.stderr}")
|
||||
mock_ips[mock["alias"]] = inspect_res.stdout.strip()
|
||||
print(f"{mock['name']} IP: {mock_ips[mock['alias']]}")
|
||||
|
||||
# Restart Traefik with IP env vars for extra_hosts
|
||||
print(f"Restarting Traefik with STAGING_IP={mock_ips['mock']} and LEGACY_IP={mock_ips['webserver']}...")
|
||||
env = os.environ.copy()
|
||||
env["STAGING_IP"] = mock_ips["mock"]
|
||||
env["LEGACY_IP"] = mock_ips["webserver"]
|
||||
|
||||
# In CI (Docker-in-Docker), we need to tell docker-compose that the project root
|
||||
# is the HOST path (PROJECT_ROOT), not the container path (/app).
|
||||
# This ensures volume mounts use the correct host paths.
|
||||
if "PROJECT_ROOT" in os.environ:
|
||||
env["COMPOSE_PROJECT_DIR"] = os.environ["PROJECT_ROOT"]
|
||||
|
||||
# We need to recreate the container to pick up extra_hosts changes
|
||||
try:
|
||||
subprocess.run(["docker-compose", "--env-file", "dev.env", "up", "-d", "--force-recreate", "--no-deps", "traefik"], env=env, check=True, capture_output=True, text=True)
|
||||
except subprocess.CalledProcessError as e:
|
||||
print(f"Docker Compose STDOUT: {e.stdout}")
|
||||
print(f"Docker Compose STDERR: {e.stderr}")
|
||||
raise e
|
||||
|
||||
# Wait for everything to settle
|
||||
time.sleep(5)
|
||||
|
||||
yield
|
||||
|
||||
print("Stopping mocks and restoring Traefik...")
|
||||
for mock in mocks:
|
||||
subprocess.run(["docker", "stop", mock["name"]], capture_output=True)
|
||||
|
||||
# Restore Traefik to default (optional)
|
||||
subprocess.run(["docker-compose", "--env-file", "dev.env", "up", "-d", "--force-recreate", "--no-deps", "traefik"], check=True)
|
||||
# @pytest.fixture(scope="session", autouse=True)
|
||||
# def mock_webserver():
|
||||
# """Start ephemeral mock webserver containers and configure Traefik."""
|
||||
# import time
|
||||
#
|
||||
# # Skip ephemeral mocks in CI environment; test against real services
|
||||
# if os.getenv("CI"):
|
||||
# print("CI environment detected. Skipping ephemeral mock setup; testing against real services.")
|
||||
# yield
|
||||
# return
|
||||
#
|
||||
# # In CI (Docker-in-Docker), we need to use the HOST path for volumes, not the container path.
|
||||
# # The workflow mounts the project root to /app, but the Docker daemon is on the host.
|
||||
# # We pass PROJECT_ROOT env var to the test container to tell it where the files are on the HOST.
|
||||
# cwd = os.getenv("PROJECT_ROOT", os.getcwd())
|
||||
# certs_dir = os.path.join(cwd, "tests/mock_nginx/certs")
|
||||
# image = "nginx:alpine"
|
||||
#
|
||||
# # Define mocks
|
||||
# mocks = [
|
||||
# {
|
||||
# "name": "mock-legacy-ephemeral",
|
||||
# "alias": "webserver",
|
||||
# "conf": os.path.join(cwd, "tests/mock_nginx/legacy.conf"),
|
||||
# "ports": ["80", "443"]
|
||||
# },
|
||||
# {
|
||||
# "name": "mock-staging-ephemeral",
|
||||
# "alias": "mock",
|
||||
# "conf": os.path.join(cwd, "tests/mock_nginx/staging.conf"),
|
||||
# "ports": ["8080", "445"]
|
||||
# }
|
||||
# ]
|
||||
#
|
||||
# # Cleanup and Start Mocks
|
||||
# mock_ips = {}
|
||||
# for mock in mocks:
|
||||
# subprocess.run(["docker", "rm", "-f", mock["name"]], capture_output=True)
|
||||
# cmd = [
|
||||
# "docker", "run", "-d", "--rm",
|
||||
# "--name", mock["name"],
|
||||
# "--network", "proxy",
|
||||
# "--network-alias", mock["alias"],
|
||||
# "-v", f"{mock['conf']}:/etc/nginx/nginx.conf:ro",
|
||||
# "-v", f"{certs_dir}:/etc/nginx/certs:ro",
|
||||
# image
|
||||
# ]
|
||||
#
|
||||
# print(f"Starting {mock['name']}...")
|
||||
# result = subprocess.run(cmd, capture_output=True, text=True)
|
||||
# if result.returncode != 0:
|
||||
# print(f"STDOUT: {result.stdout}")
|
||||
# print(f"STDERR: {result.stderr}")
|
||||
# pytest.fail(f"Failed to start {mock['name']}: {result.stderr}")
|
||||
#
|
||||
# # Inspect container to get IP
|
||||
# inspect_cmd = ["docker", "inspect", "-f", "{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}", mock["name"]]
|
||||
# inspect_res = subprocess.run(inspect_cmd, capture_output=True, text=True)
|
||||
# if inspect_res.returncode != 0:
|
||||
# pytest.fail(f"Failed to inspect {mock['name']}: {inspect_res.stderr}")
|
||||
# mock_ips[mock["alias"]] = inspect_res.stdout.strip()
|
||||
# print(f"{mock['name']} IP: {mock_ips[mock['alias']]}")
|
||||
#
|
||||
# # Restart Traefik with IP env vars for extra_hosts
|
||||
# print(f"Restarting Traefik with STAGING_IP={mock_ips['mock']} and LEGACY_IP={mock_ips['webserver']}...")
|
||||
# env = os.environ.copy()
|
||||
# env["STAGING_IP"] = mock_ips["mock"]
|
||||
# env["LEGACY_IP"] = mock_ips["webserver"]
|
||||
#
|
||||
# # In CI (Docker-in-Docker), we need to tell docker-compose that the project root
|
||||
# # is the HOST path (PROJECT_ROOT), not the container path (/app).
|
||||
# # This ensures volume mounts use the correct host paths.
|
||||
# if "PROJECT_ROOT" in os.environ:
|
||||
# env["COMPOSE_PROJECT_DIR"] = os.environ["PROJECT_ROOT"]
|
||||
#
|
||||
# # We need to recreate the container to pick up extra_hosts changes
|
||||
# try:
|
||||
# subprocess.run(["docker-compose", "--env-file", "preprod.env", "up", "-d", "--force-recreate", "--no-deps", "traefik"], env=env, check=True, capture_output=True, text=True)
|
||||
# except subprocess.CalledProcessError as e:
|
||||
# print(f"Docker Compose STDOUT: {e.stdout}")
|
||||
# print(f"Docker Compose STDERR: {e.stderr}")
|
||||
# raise e
|
||||
#
|
||||
# # Wait for everything to settle
|
||||
# time.sleep(5)
|
||||
#
|
||||
# yield
|
||||
#
|
||||
# print("Stopping mocks and restoring Traefik...")
|
||||
# for mock in mocks:
|
||||
# subprocess.run(["docker", "stop", mock["name"]], capture_output=True)
|
||||
#
|
||||
# # Restore Traefik to default (optional)
|
||||
# subprocess.run(["docker-compose", "--env-file", "preprod.env", "up", "-d", "--force-recreate", "--no-deps", "traefik"], check=True)
|
||||
|
||||
def test_whoami_http_reachable():
|
||||
"""Verify that the whoami service is reachable via HTTP."""
|
||||
@@ -122,7 +122,7 @@ def test_whoami_https_reachable():
|
||||
# We use curl because requests doesn't support --resolve easily to force SNI with custom IP
|
||||
cmd = [
|
||||
"curl", "-s", "-k", "--fail",
|
||||
"--resolve", f"{HOST_HEADER}:{HTTPS_PORT}:127.0.0.1",
|
||||
"--resolve", f"{HOST_HEADER}:{HTTPS_PORT}:192.168.1.85",
|
||||
f"https://{HOST_HEADER}:{HTTPS_PORT}"
|
||||
]
|
||||
try:
|
||||
@@ -159,7 +159,7 @@ def test_unknown_host_https_passthrough():
|
||||
# unknown.com should hit the catch-all SNI router
|
||||
cmd = [
|
||||
"curl", "-s", "-k", "-i", "--fail",
|
||||
"--resolve", f"tar.kovagoadi.hu:{HTTPS_PORT}:127.0.0.1",
|
||||
"--resolve", f"tar.kovagoadi.hu:{HTTPS_PORT}:192.168.1.85",
|
||||
f"https://tar.kovagoadi.hu:{HTTPS_PORT}/login"
|
||||
]
|
||||
try:
|
||||
@@ -179,21 +179,21 @@ def test_staging_http_routing():
|
||||
except requests.exceptions.RequestException as e:
|
||||
pytest.fail(f"Failed to connect to {BASE_URL} with host {host}: {e}")
|
||||
|
||||
def test_dev_http_routing():
|
||||
"""Verify HTTP requests to *.dev.kovagoadi.hu are routed to the mock."""
|
||||
host = "test-whoami.dev.kovagoadi.hu"
|
||||
try:
|
||||
response = requests.get(BASE_URL, headers={"Host": host}, timeout=5)
|
||||
assert response.status_code == 200
|
||||
except requests.exceptions.RequestException as e:
|
||||
pytest.fail(f"Failed to connect to {BASE_URL} with host {host}: {e}")
|
||||
# def test_dev_http_routing():
|
||||
# """Verify HTTP requests to *.dev.kovagoadi.hu are routed to the mock."""
|
||||
# host = "test-whoami.dev.kovagoadi.hu"
|
||||
# try:
|
||||
# response = requests.get(BASE_URL, headers={"Host": host}, timeout=5)
|
||||
# assert response.status_code == 200
|
||||
# except requests.exceptions.RequestException as e:
|
||||
# pytest.fail(f"Failed to connect to {BASE_URL} with host {host}: {e}")
|
||||
|
||||
def test_staging_https_routing():
|
||||
"""Verify HTTPS requests to *.staging.kovagoadi.hu are routed to the mock."""
|
||||
host = "test-whoami.staging.kovagoadi.hu"
|
||||
cmd = [
|
||||
"curl", "-s", "-k", "-i", "--fail",
|
||||
"--resolve", f"{host}:{HTTPS_PORT}:127.0.0.1",
|
||||
"--resolve", f"{host}:{HTTPS_PORT}:192.168.1.85",
|
||||
f"https://{host}:{HTTPS_PORT}"
|
||||
]
|
||||
try:
|
||||
@@ -204,18 +204,18 @@ def test_staging_https_routing():
|
||||
except subprocess.TimeoutExpired:
|
||||
pytest.fail("Curl timed out")
|
||||
|
||||
def test_dev_https_routing():
|
||||
"""Verify HTTPS requests to *.dev.kovagoadi.hu are routed to the mock."""
|
||||
host = "test-whoami.dev.kovagoadi.hu"
|
||||
cmd = [
|
||||
"curl", "-s", "-k", "-i", "--fail",
|
||||
"--resolve", f"{host}:{HTTPS_PORT}:127.0.0.1",
|
||||
f"https://{host}:{HTTPS_PORT}"
|
||||
]
|
||||
try:
|
||||
result = subprocess.run(cmd, capture_output=True, text=True, timeout=10, check=True)
|
||||
assert result.returncode == 0
|
||||
except subprocess.CalledProcessError as e:
|
||||
pytest.fail(f"Curl failed with exit code {e.returncode}: {e.stderr}")
|
||||
except subprocess.TimeoutExpired:
|
||||
pytest.fail("Curl timed out")
|
||||
# def test_dev_https_routing():
|
||||
# """Verify HTTPS requests to *.dev.kovagoadi.hu are routed to the mock."""
|
||||
# host = "test-whoami.dev.kovagoadi.hu"
|
||||
# cmd = [
|
||||
# "curl", "-s", "-k", "-i", "--fail",
|
||||
# "--resolve", f"{host}:{HTTPS_PORT}:192.168.1.85",
|
||||
# f"https://{host}:{HTTPS_PORT}"
|
||||
# ]
|
||||
# try:
|
||||
# result = subprocess.run(cmd, capture_output=True, text=True, timeout=10, check=True)
|
||||
# assert result.returncode == 0
|
||||
# except subprocess.CalledProcessError as e:
|
||||
# pytest.fail(f"Curl failed with exit code {e.returncode}: {e.stderr}")
|
||||
# except subprocess.TimeoutExpired:
|
||||
# pytest.fail("Curl timed out")
|
||||
|
||||
Reference in New Issue
Block a user