2021-02-11 14:11:47 +08:00
|
|
|
name: fuzzing
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test_apisix:
|
|
|
|
name: run fuzzing
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
services:
|
|
|
|
etcd:
|
|
|
|
image: bitnami/etcd:3.4.0
|
|
|
|
ports:
|
|
|
|
- 2379:2379
|
|
|
|
- 2380:2380
|
|
|
|
env:
|
|
|
|
ALLOW_NONE_AUTHENTICATION: yes
|
|
|
|
ETCD_ADVERTISE_CLIENT_URLS: http://0.0.0.0:2379
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
|
|
|
- name: run apisix
|
|
|
|
run: |
|
|
|
|
wget -qO - https://openresty.org/package/pubkey.gpg | sudo apt-key add -
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get -y install software-properties-common
|
|
|
|
sudo add-apt-repository -y "deb http://openresty.org/package/ubuntu $(lsb_release -sc) main"
|
|
|
|
sudo apt-get update
|
2021-02-20 20:28:21 +08:00
|
|
|
sudo apt-get install -y git openresty curl openresty-openssl111-dev unzip make gcc
|
2021-02-11 14:11:47 +08:00
|
|
|
./utils/linux-install-luarocks.sh
|
|
|
|
|
|
|
|
make deps
|
|
|
|
make init
|
|
|
|
make run
|
|
|
|
|
|
|
|
- name: run upstream
|
|
|
|
run: |
|
|
|
|
sudo openresty -c $PWD/t/fuzzing/upstream/nginx.conf
|
|
|
|
|
|
|
|
- name: install boofuzz
|
|
|
|
run: |
|
|
|
|
pip install typing boofuzz
|
|
|
|
|
2021-02-25 09:33:25 +08:00
|
|
|
- name: run simpleroute test
|
2021-02-11 14:11:47 +08:00
|
|
|
run: |
|
2021-02-25 09:33:25 +08:00
|
|
|
python $PWD/t/fuzzing/simpleroute_test.py
|
|
|
|
|
|
|
|
- name: run serverless route test
|
|
|
|
run: |
|
|
|
|
python $PWD/t/fuzzing/serverless_route_test.py
|
2021-02-11 14:11:47 +08:00
|
|
|
|
|
|
|
- name: echo test log
|
|
|
|
# more than 150k lines, so only display the last log, actually, this step is not needed.
|
|
|
|
run: |
|
|
|
|
tail -n 100 $PWD/t/fuzzing/test.log
|