Skip to content

Commit a62b887

Browse files
committed
feat: test framework for nginx-aws-signature
1 parent e0c17a6 commit a62b887

38 files changed

+216
-2287
lines changed

Makefile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
start:
2+
export NGINX_TYPE=oss && docker-compose -f tests/docker/docker-compose.yml up -d
3+
4+
start-plus:
5+
export NGINX_TYPE=plus && docker-compose -f tests/docker/docker-compose.yml up -d
6+
7+
test:
8+
bash tests/test.sh --type oss
9+
10+
test-plus:
11+
bash tests/test.sh --type plus
12+
13+
down:
14+
docker-compose -f tests/docker/docker-compose.yml down
15+
16+
clean:
17+
docker kill $$(docker ps -q) 2> /dev/null || true
18+
docker system prune -a
19+
docker volume rm $(docker volume ls -qf dangling=true)

test/common/docker-entrypoint.d/00-check-for-required-env.sh

Lines changed: 0 additions & 115 deletions
This file was deleted.

test/common/docker-entrypoint.d/22-enable_js_fetch_trusted_certificate.sh

Lines changed: 0 additions & 27 deletions
This file was deleted.

test/common/docker-entrypoint.sh

Lines changed: 0 additions & 100 deletions
This file was deleted.

0 commit comments

Comments
 (0)