Skip to content

CI: EE - EP Merge - Integration Test #18

CI: EE - EP Merge - Integration Test

CI: EE - EP Merge - Integration Test #18

name: 'CI: EE - EP Merge - Integration Test'
on:
# Allow manual triggering
workflow_dispatch:
# Allow being called by another GitHub Action
workflow_call:
env:
VRO_DEV_SECRETS_FOLDER: "${{ github.workspace }}/.cache/abd-vro-dev-secrets"
jobs:
integration-test:
runs-on: ubuntu-latest
steps:
- name: 'Checkout source code'
uses: actions/checkout@v4
- name: "Checkout abd-vro-dev-secrets repo"
uses: actions/checkout@v4
with:
# Checkout using a PAT so that we can access the internal repo
token: ${{ secrets.ACCESS_TOKEN_CHECKOUT_INTERNAL_REPO }}
repository: 'department-of-veterans-affairs/abd-vro-dev-secrets'
path: "${{ env.VRO_DEV_SECRETS_FOLDER }}"
- name: 'Build the images'
uses: ./.github/actions/build-images
- name: 'Start the containers'
run: |
source scripts/setenv.sh
# create basic auth token for RabbitMQ and export to github environment
BASIC_AUTH=$(echo "${RABBITMQ_USERNAME}:${RABBITMQ_PASSWORD}" | base64)
{
echo "RABBITMQ_USERNAME=${RABBITMQ_USERNAME}"
echo "RABBITMQ_PASSWORD=${RABBITMQ_PASSWORD}"
echo "RABBITMQ_BASIC_AUTH=${BASIC_AUTH}"
} >> "$GITHUB_ENV"
export -p | sed 's/declare -x //'
# Override env variable and only startup platform containers at first
COMPOSE_PROFILES="platform" ./gradlew :dockerComposeUp
- name: 'Wait for containers to start'
run: sleep 60s
shell: bash
- name: 'Wait for RabbitMQ to be ready'
uses: department-of-veterans-affairs/[email protected]
with:
url: 'http://localhost:15672/api/vhosts'
method: 'GET'
basic-auth-token: '${{env.RABBITMQ_BASIC_AUTH}}'
accept: 200
# Retry every 2 seconds
timeout: 2000
# Quit after 60 seconds
retries: 30
- name: "Run Employee Experience Integration Tests"
run: |
./gradlew :domain-ee:ee-ep-merge-app:integrationTest
timeout-minutes: 15
- name: "Start svc-bip-api, svc-bgs-api, and mock-bip-claims-api and mock-bgs-api"
run: |
source scripts/setenv.sh
# Temporary workaround until secret is updated with correct value
export BIP_CLAIM_URL="mock-bip-claims-api:20300"
export -p | sed 's/declare -x //'
COMPOSE_PROFILES="platform,bip,bgs" ./gradlew :dockerComposeUp
COMPOSE_PROFILES="bip,bgs" ./gradlew -p mocks docker
COMPOSE_PROFILES="bip,bgs" ./gradlew -p mocks :dockerComposeUp
- name: 'Wait for other containers to start'
run: sleep 60s
shell: bash
- name: 'Wait for svc-bip-api container to start'
uses: department-of-veterans-affairs/[email protected]
with:
url: 'http://localhost:10401/actuator/health'
method: 'GET'
accept: 200
# Retry every 2 seconds
timeout: 2000
# Quit after 240 seconds
retries: 120
- name: 'Check disk space (Post-Build)'
uses: ./.github/actions/check-disk-space
- name: 'Run End 2 End Tests'
shell: bash
run: |
./gradlew :domain-ee:ee-ep-merge-app:endToEndTest
timeout-minutes: 15
- name: "Collect docker logs"
if: always()
uses: jwalton/gh-docker-logs@v2
with:
dest: './ep-merge-container-logs'
- name: "Upload artifact"
if: always()
uses: actions/upload-artifact@v4
with:
name: ep-merge-container-logs
path: ./ep-merge-container-logs/**
retention-days: 14
- name: 'Clean shutdown of all containers'
if: always()
shell: bash
run: |
docker ps
COMPOSE_PROFILES="all" ./gradlew dockerComposeDown
COMPOSE_PROFILES="all" ./gradlew -p mocks dockerComposeDown