diff options
Diffstat (limited to 'api/tests/announce_zblock.sh')
-rwxr-xr-x | api/tests/announce_zblock.sh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/api/tests/announce_zblock.sh b/api/tests/announce_zblock.sh new file mode 100755 index 0000000..be34930 --- /dev/null +++ b/api/tests/announce_zblock.sh @@ -0,0 +1,32 @@ +#!/bin/bash +PROGRAM="$(basename $0)" +printf '[%s]\n' "$PROGRAM" +printf "\t01:\tendpoint with valid data" +curl http://127.0.0.1:8610/v0/announce/zblock --header 'Content-Type: application/json' --data-raw '{"zblock":"'$(ak-get-zlatest)'"}' 2>/dev/null | jq -M -c > /dev/null +if [ "$?" == "0" ] +then + printf "\t\t\033[0;32mPASSED\033[0;0m" +else + printf "\t\033[0;31mFAILED\033[0;0m" +fi +printf "\n" + +printf "\t02:\tendpoint with invalid data" +curl http://127.0.0.1:8610/v0/announce/zblock --header 'Content-Type: application/json' --data-raw '{"zblock":"'$(ak-get-zlatest)'sdfas"}' 2>/dev/null | jq -M -c > /dev/null +if [ "$?" == "0" ] +then + printf "\t\t\033[0;32mPASSED\033[0;0m" +else + printf "\t\033[0;31mFAILED\033[0;0m" +fi +printf "\n" + +printf "\t03:\tendpoint no data" +curl http://127.0.0.1:8610/v0/announce/zblock --header 'Content-Type: application/json' --data-raw '{"zblock":""}' 2>/dev/null | jq -M -c > /dev/null +if [ "$?" == "0" ] +then + printf "\t\t\033[0;32mPASSED\033[0;0m" +else + printf "\t\033[0;31mFAILED\033[0;0m" +fi +printf "\n" |