mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-06 22:23:53 -05:00
113 lines
4.2 KiB
YAML
113 lines
4.2 KiB
YAML
name: "Run backend BDD tests"
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
paths:
|
|
- "backend/**"
|
|
- "!backend/README.md"
|
|
- "!backend/.*"
|
|
- "backend/.eslintrc.js"
|
|
workflow_call:
|
|
|
|
jobs:
|
|
run-backend-bdd-tests:
|
|
name: Run BDD tests
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
steps:
|
|
- name: Free up disk space
|
|
run: |
|
|
sudo rm -rf /usr/share/dotnet
|
|
sudo rm -rf /opt/ghc
|
|
sudo rm -rf "/usr/local/share/boost"
|
|
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
|
|
docker system prune -af
|
|
|
|
- name: ☁️ Checkout source
|
|
uses: actions/checkout@v3
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v5
|
|
- name: Install Python
|
|
run: uv python install
|
|
- uses: KengoTODA/actions-setup-docker-compose@v1
|
|
if: ${{ env.ACT }}
|
|
name: Install `docker compose` for local simulations
|
|
with:
|
|
version: "2.14.2"
|
|
- name: 🔧 Setup Node 20
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "20"
|
|
cache: "npm"
|
|
cache-dependency-path: backend/package-lock.json
|
|
- name: Install dependencies
|
|
run: npm install
|
|
working-directory: backend
|
|
|
|
- name: Output .env file and enable feature flags for BDD tests
|
|
run: |
|
|
cp .env.dev.example .env
|
|
echo "ACME_DEVELOPMENT_MODE=true" >> .env
|
|
echo "ACME_DEVELOPMENT_HTTP01_CHALLENGE_HOST_OVERRIDES={\"localhost\": \"host.docker.internal:8087\", \"infisical.com\": \"host.docker.internal:8087\", \"example.com\": \"host.docker.internal:8087\"}" >> .env
|
|
echo "BDD_NOCK_API_ENABLED=true" >> .env
|
|
# use Technitium DNS server for BDD tests
|
|
echo "ACME_DNS_RESOLVE_RESOLVER_SERVERS_HOST_ENABLED=true" >> .env
|
|
echo "ACME_DNS_RESOLVER_SERVERS=technitium" >> .env
|
|
# Skip upstream validation, otherwise the ACME client for the upstream will try to
|
|
# validate the DNS records, which will fail because the DNS records are not actually created.
|
|
echo "ACME_SKIP_UPSTREAM_VALIDATION=true" >> .env
|
|
# We are not using FIPS mode, need a different encryption key for BDD tests
|
|
NEW_ENCRYPTION_KEY=6c1fe4e407b8911c104518103505b218
|
|
sed -i "s#ENCRYPTION_KEY=.*#ENCRYPTION_KEY=$NEW_ENCRYPTION_KEY#" .env
|
|
# Enable ACME feature in license for BDD tests
|
|
sed -i 's/pkiAcme: .*/pkiAcme: true,/g' backend/src/ee/services/license/license-fns.ts
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
driver-opts: |
|
|
image=moby/buildkit:latest
|
|
- name: Build Infisical backend Docker image with caching
|
|
uses: docker/bake-action@v5
|
|
timeout-minutes: 30
|
|
with:
|
|
files: docker-compose.bdd.yml
|
|
targets: backend
|
|
load: true
|
|
# Uncomment this to force a rebuild of the image
|
|
# no-cache: true
|
|
set: |
|
|
*.cache-from=type=gha,scope=infisical-backend-bdd-tests
|
|
*.cache-to=type=gha,mode=max,scope=infisical-backend-bdd-tests
|
|
- name: Start Infisical
|
|
run: docker compose -f docker-compose.bdd.yml up -d
|
|
- name: Wait for API to be ready
|
|
uses: nick-fields/retry@v3
|
|
with:
|
|
timeout_seconds: 60
|
|
max_attempts: 30
|
|
command: |
|
|
curl -f -X GET http://localhost:8080/api/v1/admin/config
|
|
- name: Run bdd tests
|
|
run: npm run test:bdd
|
|
working-directory: backend
|
|
env:
|
|
INFISICAL_API_URL: http://localhost:8080
|
|
BOOTSTRAP_INFISICAL: "1"
|
|
- name: cleanup
|
|
run: |
|
|
docker compose -f "docker-compose.bdd.yml" down
|
|
- name: Dump backend logs
|
|
if: always() # Ensures this runs even if previous steps fail
|
|
run: |
|
|
mkdir -p logs
|
|
docker compose -f docker-compose.bdd.yml logs backend > logs/backend.log 2>&1 || true
|
|
- name: Upload backend logs as artifact
|
|
if: always() # Always upload, even on failure/cancellation
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: backend-logs-${{ github.run_id }}
|
|
path: logs/backend.log
|
|
retention-days: 7
|
|
if-no-files-found: warn
|