2022-04-01 12:12:03 +00:00
|
|
|
name: Functional tests with PostgreSQL
|
2022-03-21 14:51:05 +00:00
|
|
|
|
|
|
|
on:
|
2022-04-05 09:00:11 +00:00
|
|
|
workflow_call:
|
|
|
|
secrets:
|
|
|
|
DATABASE_PASSWORD:
|
|
|
|
required: true
|
2022-03-21 14:51:05 +00:00
|
|
|
|
|
|
|
jobs:
|
2022-04-13 13:44:23 +00:00
|
|
|
|
2022-03-21 14:51:05 +00:00
|
|
|
build:
|
2022-04-01 12:12:03 +00:00
|
|
|
name: "Build + tests"
|
2022-03-21 14:51:05 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
timeout-minutes: 20
|
|
|
|
services:
|
2022-04-01 12:12:03 +00:00
|
|
|
database:
|
2022-03-21 14:51:05 +00:00
|
|
|
image: postgres:latest
|
|
|
|
env:
|
2022-03-23 08:40:23 +00:00
|
|
|
POSTGRES_PASSWORD: ${{ secrets.DATABASE_PASSWORD }}
|
2022-03-21 14:51:05 +00:00
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
options: >-
|
2022-03-25 11:17:28 +00:00
|
|
|
--health-cmd pg_isready -u postgres
|
2022-03-21 14:51:05 +00:00
|
|
|
--health-interval 10s
|
|
|
|
--health-timeout 5s
|
|
|
|
--health-retries 5
|
2022-04-13 13:44:23 +00:00
|
|
|
|
2022-03-21 14:51:05 +00:00
|
|
|
steps:
|
|
|
|
|
2022-03-22 11:33:36 +00:00
|
|
|
- name: "Force machineid"
|
|
|
|
run: |
|
|
|
|
sudo chmod +w /etc/machine-id
|
|
|
|
echo githubciXXXXXXXXXXXXXXXXXXXXXXXX | sudo tee /etc/machine-id
|
|
|
|
|
2022-03-21 14:51:05 +00:00
|
|
|
- name: "Set up Go 1.17"
|
2022-04-05 09:00:11 +00:00
|
|
|
uses: actions/setup-go@v3
|
2022-03-21 14:51:05 +00:00
|
|
|
with:
|
|
|
|
go-version: 1.17
|
|
|
|
id: go
|
|
|
|
|
|
|
|
- name: "Clone CrowdSec"
|
2022-04-05 09:00:11 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-03-21 14:51:05 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: true
|
|
|
|
|
|
|
|
- name: "Install bats dependencies"
|
|
|
|
run: |
|
2022-04-01 12:12:03 +00:00
|
|
|
sudo apt install -y -qq build-essential daemonize jq netcat-openbsd
|
2022-06-08 14:05:52 +00:00
|
|
|
go install github.com/mikefarah/yq/v4@latest
|
|
|
|
go install github.com/cloudflare/cfssl/cmd/cfssl@latest
|
|
|
|
go install github.com/cloudflare/cfssl/cmd/cfssljson@latest
|
2022-04-01 12:12:03 +00:00
|
|
|
sudo cp -u ~/go/bin/yq /usr/local/bin/
|
2022-06-08 14:05:52 +00:00
|
|
|
sudo cp -u ~/go/bin/cfssl /usr/local/bin
|
|
|
|
sudo cp -u ~/go/bin/cfssljson /usr/local/bin
|
2022-03-21 14:51:05 +00:00
|
|
|
|
2022-04-01 12:12:03 +00:00
|
|
|
- name: "Build crowdsec and fixture (DB_BACKEND: pgx)"
|
2022-04-01 13:03:17 +00:00
|
|
|
run: make clean bats-build bats-fixture
|
2022-03-23 10:13:23 +00:00
|
|
|
env:
|
|
|
|
DB_BACKEND: pgx
|
2022-03-28 08:41:32 +00:00
|
|
|
PGHOST: 127.0.0.1
|
|
|
|
PGPORT: 5432
|
|
|
|
PGPASSWORD: ${{ secrets.DATABASE_PASSWORD }}
|
|
|
|
PGUSER: postgres
|
2022-03-23 10:13:23 +00:00
|
|
|
|
2022-04-01 12:12:03 +00:00
|
|
|
- name: "Run tests (DB_BACKEND: pgx)"
|
2022-04-01 13:03:17 +00:00
|
|
|
run: make bats-test
|
2022-03-23 10:13:23 +00:00
|
|
|
env:
|
|
|
|
DB_BACKEND: pgx
|
2022-03-28 08:41:32 +00:00
|
|
|
PGHOST: 127.0.0.1
|
|
|
|
PGPORT: 5432
|
|
|
|
PGPASSWORD: ${{ secrets.DATABASE_PASSWORD }}
|
|
|
|
PGUSER: postgres
|
2022-03-23 10:13:23 +00:00
|
|
|
|
2022-04-01 12:12:03 +00:00
|
|
|
- name: "Build crowdsec and fixture (DB_BACKEND: postgres)"
|
2022-04-01 13:03:17 +00:00
|
|
|
run: make clean bats-build bats-fixture
|
2022-03-21 14:51:05 +00:00
|
|
|
env:
|
|
|
|
DB_BACKEND: postgres
|
2022-03-28 08:41:32 +00:00
|
|
|
PGHOST: 127.0.0.1
|
|
|
|
PGPORT: 5432
|
|
|
|
PGPASSWORD: ${{ secrets.DATABASE_PASSWORD }}
|
|
|
|
PGUSER: postgres
|
2022-03-21 14:51:05 +00:00
|
|
|
|
2022-04-01 12:12:03 +00:00
|
|
|
- name: "Run tests (DB_BACKEND: postgres)"
|
2022-04-01 13:03:17 +00:00
|
|
|
run: make bats-test
|
2022-03-21 14:51:05 +00:00
|
|
|
env:
|
|
|
|
DB_BACKEND: postgres
|
2022-03-28 08:41:32 +00:00
|
|
|
PGHOST: 127.0.0.1
|
|
|
|
PGPORT: 5432
|
|
|
|
PGPASSWORD: ${{ secrets.DATABASE_PASSWORD }}
|
|
|
|
PGUSER: postgres
|
2022-03-25 11:17:28 +00:00
|
|
|
|
2022-04-13 13:03:37 +00:00
|
|
|
- name: "Show crowdsec logs"
|
|
|
|
run:
|
|
|
|
for file in $(find ./tests/local/var/log -type f); do echo ">>>>> $file"; cat $file; echo; done
|
|
|
|
if: ${{ always() }}
|
|
|
|
|
2022-04-01 12:12:03 +00:00
|
|
|
- name: "Show database logs"
|
|
|
|
run: docker logs "${{ job.services.database.id }}"
|
2022-03-25 11:17:28 +00:00
|
|
|
if: ${{ always() }}
|
|
|
|
|