Skip to content

Commit

Permalink
Setup E2E tests
Browse files Browse the repository at this point in the history
  • Loading branch information
darkweak committed Aug 31, 2021
1 parent ea9a37a commit 51bbc78
Show file tree
Hide file tree
Showing 8 changed files with 515 additions and 6 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ jobs:
name: Check that Souin build as caddy module
runs-on: ubuntu-latest
steps:
- name: Add domain.com host to /etc/hosts
run: |
sudo echo "127.0.0.1 domain.com" | sudo tee -a /etc/hosts
- name: Install Go
uses: actions/setup-go@v2
with:
Expand All @@ -22,6 +25,15 @@ jobs:
sudo apt install xcaddy
- name: Build Souin as caddy module
run: cd plugins/caddy && xcaddy build --with github.com/darkweak/souin/plugins/caddy=./ --with github.com/darkweak/souin@latest=../..
- name: Run detached caddy
run: cd plugins/caddy && ./caddy run &
- name: Run Caddy E2E tests
uses: anthonyvscode/newman-action@v1
with:
collection: "docs/e2e/Souin E2E.postman_collection.json"
folder: Caddy
reporters: cli
delayRequest: 5000
build-tyk-validator:
name: Check that Souin build as Tyk middleware
runs-on: ubuntu-latest
Expand All @@ -46,10 +58,20 @@ jobs:
expected: '[INFO] Olric bindAddr'
actual: ${{ env.TYK_DC_RESULT }}
comparison: contains
- name: Run Tyk E2E tests
uses: anthonyvscode/newman-action@v1
with:
collection: "docs/e2e/Souin E2E.postman_collection.json"
folder: Tyk
reporters: cli
delayRequest: 5000
build-traefik-validator:
name: Check that Souin build as Træfik plugin
runs-on: ubuntu-latest
steps:
- name: Add domain.com host to /etc/hosts
run: |
sudo echo "127.0.0.1 domain.com" | sudo tee -a /etc/hosts
- name: Install Go
uses: actions/setup-go@v2
with:
Expand Down Expand Up @@ -78,3 +100,10 @@ jobs:
expected: '"middlewares\":{\"souin\":{\"plugin\":{\"souin-plugin'
actual: ${{ env.TRAEFIK_MIDDLEWARE_RESULT }}
comparison: contains
- name: Run Træfik E2E tests
uses: anthonyvscode/newman-action@v1
with:
collection: "docs/e2e/Souin E2E.postman_collection.json"
folder: Traefik
reporters: cli
delayRequest: 5000
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,4 @@ validate: lint tests down health-check-prod ## Run lint, tests and ensure prod c
vendor-plugins: ## Generate and prepare vendors for each plugin
cd plugins/tyk && $(MAKE) vendor
cd plugins/traefik && $(MAKE) vendor
cd plugins/caddy && go mod tidy && go mod download
Loading

0 comments on commit 51bbc78

Please sign in to comment.