Archon kick off #352
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
name: CI - Integration test | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the master branch | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# A workflow run is made up of one or more jobs that can run sequantially or in parallel | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: dev | |
strategy: | |
matrix: | |
postgres-version: [12] | |
python-version: [3.8] | |
node-version: [16] | |
services: | |
postgres: | |
image: postgres:${{ matrix.postgres-version }} | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: p0stgr3s | |
POSTGRES_DB: arcsi | |
ports: | |
- 5432:5432 | |
# needed because the postgres container does not provide a healthcheck | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
pip install -r requirements.txt | |
- name: Set up Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install newman | |
run: npm install -g newman | |
- name: Run migrations | |
run: | | |
psql -f test/empty_dump.sql postgresql://postgres:p0stgr3s@localhost:5432/arcsi | |
- name: Run the application and Postman's tests | |
run: | | |
gunicorn -b localhost:5000 -t 30 -w 2 --threads 2 "arcsi:create_app('../config_ci.py')" --daemon --log-file aguni.log --log-level debug | |
env: | |
FLASK_ENV: development | |
UPLOAD_FOLDER: "uploads" | |
ARCHIVE_REGION: ${{ secrets.ARCHIVE_REGION }} | |
ARCHIVE_HOST_BASE_URL: ${{ secrets.ARCHIVE_HOST_BASE_URL }} | |
ARCHIVE_ENDPOINT: ${{ secrets.ARCHIVE_ENDPOINT }} | |
ARCHIVE_API_KEY: ${{ secrets.ARCHIVE_API_KEY }} | |
ARCHIVE_SECRET_KEY: ${{ secrets.ARCHIVE_SECRET_KEY }} | |
AZURACAST_BASE_URL: ${{ secrets.AZURACAST_BASE_URL }} | |
AZURACAST_API_KEY: ${{ secrets.AZURACAST_API_KEY }} | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: p0stgr3s | |
POSTGRES_DB: arcsi | |
CI: true | |
# Running the functional postman test collection with the test environment (-e) and insecure option (no SSL verification, -k) | |
- name: Functional Test | |
run: | | |
cd test/postman/ | |
newman run functional_test.postman_collection.json -e test.postman_environment.json -k | |
# Running the robustness/performance postman test collection (bunch of GET requests) with multiple iterations (-n) | |
- name: Robustness Test | |
run: | | |
cd test/postman/ | |
newman run robustness_test.postman_collection.json -e test.postman_environment.json -n 50 -k | |
- name: Upload logs | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
path: aguni.log |