diff options
Diffstat (limited to 'test')
-rwxr-xr-x | test/endpoints.sh | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/test/endpoints.sh b/test/endpoints.sh index 42de548..214b1c7 100755 --- a/test/endpoints.sh +++ b/test/endpoints.sh @@ -3,7 +3,9 @@ set -e set -x sleep 5 -curl -X GET http://127.0.0.1:8008/price?name=CAKE&unit=USD -curl -X GET http://127.0.0.1:8008/pair?one=ETH&two=CAKE&multiplier=4.0 -curl -X POST -H "Content-Type: application/json" -d '{"name":"alert1", "expr":"ETH>CAKE"}' http://127.0.0.1:8008/addalert -#curl -X POST +curl -X GET http://localhost:8008/price?name=CAKE&unit=USD +curl -X GET http://localhost:8008/pair?one=ETH&two=CAKE&multiplier=4.0 +curl -X POST -H "Content-Type: application/json" -d '{"name":"alert1", "expr":"ETH>CAKE"}' http://localhost:8008/addalert +# curl -X GET http://127.0.0.1:8008/price?name=CAKE&unit=USD +# curl -X GET http://127.0.0.1:8008/pair?one=ETH&two=CAKE&multiplier=4.0 +# curl -X POST -H "Content-Type: application/json" -d '{"name":"alert1", "expr":"ETH>CAKE"}' http://127.0.0.1:8008/addalert |