diff options
Diffstat (limited to 'test/functest/scripts/sanity-check-simulators.sh')
-rw-r--r-- | test/functest/scripts/sanity-check-simulators.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/functest/scripts/sanity-check-simulators.sh b/test/functest/scripts/sanity-check-simulators.sh new file mode 100644 index 0000000..93c5372 --- /dev/null +++ b/test/functest/scripts/sanity-check-simulators.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +for x in policy has-api so-callback; do + curl http://localhost:5000/simulated/healthy/$x + curl http://localhost:5000/simulated/unhealthy/$x + curl http://localhost:5000/simulated/ERROR/$x + curl http://localhost:5000/simulated/success/$x +done + +curl -d '{"A1": "B1"}' http://localhost:5000/simulated/policy/pdp-has-vcpe-good/getConfig +curl -d '{"A1": "B1"}' http://localhost:5000/simulated/oof/has-api/flow1-success-simple/main.json |