2022-08-02 11:35:06 +02:00
|
|
|
#!/bin/sh
|
2022-08-02 15:04:15 +02:00
|
|
|
pip3 install -r requirements.txt
|
2022-08-02 11:35:06 +02:00
|
|
|
echo "Running standard API test"
|
|
|
|
|
python3 api_test.py -p testpassword
|
|
|
|
|
echo "Running Netfilter Regex TCP ipv4"
|
|
|
|
|
python3 nf_test.py -p testpassword -m tcp
|
|
|
|
|
echo "Running Netfilter Regex TCP ipv6"
|
|
|
|
|
python3 nf_test.py -p testpassword -m tcp -6
|
|
|
|
|
echo "Running Netfilter Regex UDP ipv4"
|
|
|
|
|
python3 nf_test.py -p testpassword -m udp
|
|
|
|
|
echo "Running Netfilter Regex UDP ipv6"
|
2022-08-02 12:54:28 +02:00
|
|
|
python3 nf_test.py -p testpassword -m udp -6
|
|
|
|
|
echo "Running Proxy Regex"
|
|
|
|
|
python3 px_test.py -p testpassword
|