Add support to negated paths definition in the variable containing paths to ignore on policies updates #1613
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: | |
build: | |
services: | |
redis: | |
image: redis | |
ports: | |
- 6379:6379 | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install flake8 | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
if [ -f ./tests/requirements.txt ]; then pip install -r ./tests/requirements.txt; fi | |
- name: Lint with flake8 | |
run: | | |
# stop the build if there are Python syntax errors or undefined names | |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Test with pytest | |
run: | | |
pytest | |
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: Docker Compose install | |
run: | | |
curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose | |
chmod +x /usr/local/bin/docker-compose | |
- 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 successfully | |
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" | |
docker-compose -f docker/docker-compose-test.yml logs opal_client | grep 'PUT /v1/data/static -> 204' |