Docker test: Increase timeout to 30s #1479
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
test-docker: | |
runs-on: ubuntu-latest | |
steps: | |
# BUILD PHASE | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Build client | |
id: build_client | |
uses: docker/build-push-action@v2 | |
with: | |
file: docker/Dockerfile | |
push: false | |
target: client | |
cache-from: type=registry,ref=permitio/opal-client:latest | |
cache-to: type=inline | |
load: true | |
tags: | | |
permitio/opal-client:test | |
- name: Build server | |
id: build_server | |
uses: docker/build-push-action@v2 | |
with: | |
file: docker/Dockerfile | |
push: false | |
target: server | |
cache-from: type=registry,ref=permitio/opal-server:latest | |
cache-to: type=inline | |
load: true | |
tags: | | |
permitio/opal-server:test | |
# TEST PHASE | |
- name: Create modified docker compose file | |
run: sed 's/:latest/:test/g' docker/docker-compose-with-callbacks.yml > docker/docker-compose-test.yml | |
- name: Bring up stack | |
run: docker-compose -f docker/docker-compose-test.yml up -d | |
- name: Check if OPA is healthy | |
run: ./scripts/wait-for.sh -t 2 http://localhost:8181/v1/data/users -- sleep 10 && curl -s "http://localhost:8181/v1/data/users" | jq '.result.bob.location.country == "US"' | |
- name: Output container logs | |
run: docker-compose -f docker/docker-compose-test.yml logs | |
- name: check if opal-client was brought up | |
run: | | |
docker-compose -f docker/docker-compose-test.yml logs opal_client | grep "Connected to PubSub server" | |
docker-compose -f docker/docker-compose-test.yml logs opal_client | grep "Got policy bundle" | |
- name: Bring down stack | |
run: docker-compose -f docker/docker-compose-test.yml down | |
- name: Bring up stack | |
run: docker-compose -f docker/docker-compose-test.yml up -d | |
- name: Check if OPA is healthy | |
run: ./scripts/wait-for.sh -t 2 http://localhost:8181/v1/data/users -- sleep 10 && curl -s "http://localhost:8181/v1/data/users" | jq '.result.bob.location.country == "US"' | |
- name: Output container logs | |
run: docker-compose -f docker/docker-compose-test.yml logs | |
- name: check if opal-client was brought up | |
run: | | |
docker-compose -f docker/docker-compose-test.yml logs opal_client | grep "Connected to PubSub server" | |
docker-compose -f docker/docker-compose-test.yml logs opal_client | grep "Got policy bundle" | |
- name: Bring down stack | |
run: docker-compose -f docker/docker-compose-test.yml down | |
- name: Bring up stack | |
run: docker-compose -f docker/docker-compose-test.yml up -d | |
- name: Check if OPA is healthy | |
run: ./scripts/wait-for.sh -t 2 http://localhost:8181/v1/data/users -- sleep 10 && curl -s "http://localhost:8181/v1/data/users" | jq '.result.bob.location.country == "US"' | |
- name: Output container logs | |
run: docker-compose -f docker/docker-compose-test.yml logs | |
- name: check if opal-client was brought up | |
run: | | |
docker-compose -f docker/docker-compose-test.yml logs opal_client | grep "Connected to PubSub server" | |
docker-compose -f docker/docker-compose-test.yml logs opal_client | grep "Got policy bundle" | |
- name: Bring down stack | |
run: docker-compose -f docker/docker-compose-test.yml down | |
- name: Bring up stack | |
run: docker-compose -f docker/docker-compose-test.yml up -d | |
- name: Check if OPA is healthy | |
run: ./scripts/wait-for.sh -t 2 http://localhost:8181/v1/data/users -- sleep 10 && curl -s "http://localhost:8181/v1/data/users" | jq '.result.bob.location.country == "US"' | |
- name: Output container logs | |
run: docker-compose -f docker/docker-compose-test.yml logs | |
- name: check if opal-client was brought up | |
run: | | |
docker-compose -f docker/docker-compose-test.yml logs opal_client | grep "Connected to PubSub server" | |
docker-compose -f docker/docker-compose-test.yml logs opal_client | grep "Got policy bundle" | |
- name: Bring down stack | |
run: docker-compose -f docker/docker-compose-test.yml down |