diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-03-01 02:47:10 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-03-01 02:47:10 +0200 |
commit | 6cb0efc1abeccd8f6a9c7ca7f209ff22c42341bd (patch) | |
tree | 17d514ffe79223d303229da97f114eebb4f3f052 /api/tests/send_me_a_zblock.sh | |
parent | 11cd4029ee6e1e5368be22742827dba1547cfc71 (diff) | |
download | arching-kaos-tools-6cb0efc1abeccd8f6a9c7ca7f209ff22c42341bd.tar.gz arching-kaos-tools-6cb0efc1abeccd8f6a9c7ca7f209ff22c42341bd.tar.bz2 arching-kaos-tools-6cb0efc1abeccd8f6a9c7ca7f209ff22c42341bd.zip |
Renamed functions and routes
receive* -> announce*
szbk -> /v0/announce/zblock
szch -> /v0/announce/zchain
Diffstat (limited to 'api/tests/send_me_a_zblock.sh')
-rwxr-xr-x | api/tests/send_me_a_zblock.sh | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/api/tests/send_me_a_zblock.sh b/api/tests/send_me_a_zblock.sh deleted file mode 100755 index 73f514e..0000000 --- a/api/tests/send_me_a_zblock.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash -PROGRAM="$(basename $0)" -printf '[%s]\n' "$PROGRAM" -printf "\t01:\tendpoint with valid data" -curl http://127.0.0.1:8610/v0/sblk --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/sblk --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/sblk --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" |