diff options
| author | kaotisk <kaotisk@arching-kaos.org> | 2024-06-30 07:01:15 +0300 | 
|---|---|---|
| committer | kaotisk <kaotisk@arching-kaos.org> | 2024-06-30 07:01:15 +0300 | 
| commit | 30a2bc6cc950bcd460e5a3651ab869a732a0f50b (patch) | |
| tree | ff9abace41c2d356301f0fcd72211ee974c7efb9 /api/tests/announce_zblock.sh | |
| parent | 35ddac1871fbbc608417e1b1ec2012bf09687edd (diff) | |
| download | arching-kaos-tools-30a2bc6cc950bcd460e5a3651ab869a732a0f50b.tar.gz arching-kaos-tools-30a2bc6cc950bcd460e5a3651ab869a732a0f50b.tar.bz2 arching-kaos-tools-30a2bc6cc950bcd460e5a3651ab869a732a0f50b.zip  | |
Refactoring
Diffstat (limited to 'api/tests/announce_zblock.sh')
| -rwxr-xr-x | api/tests/announce_zblock.sh | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/api/tests/announce_zblock.sh b/api/tests/announce_zblock.sh index ce3b1aa..15caec8 100755 --- a/api/tests/announce_zblock.sh +++ b/api/tests/announce_zblock.sh @@ -4,7 +4,7 @@ printf '[%s]\n' "$PROGRAM"  printf "TEST\t/v0/announce/zblock\n"  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" ] +if [ $? -eq 0 ]  then      printf "\t\t\033[0;32mPASSED\033[0;0m"  else @@ -14,7 +14,7 @@ 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" ] +if [ $? -eq 0 ]  then      printf "\t\t\033[0;32mPASSED\033[0;0m"  else @@ -24,7 +24,7 @@ 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" ] +if [ $? -eq 0 ]  then      printf "\t\t\t\033[0;32mPASSED\033[0;0m"  else  | 
