aboutsummaryrefslogtreecommitdiff
path: root/api/tests/gathered_zblocks.sh
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2023-03-31 21:34:47 +0300
committerkaotisk <kaotisk@arching-kaos.org>2023-03-31 21:34:47 +0300
commit52e61043bcb716af42f9fd167aa2bb280bde5b5b (patch)
tree5f8f2708bd6ac8da77d12872036d056ea80369fa /api/tests/gathered_zblocks.sh
parent3023b8396d3656887a95f11e45da2e79406d64d1 (diff)
downloadarching-kaos-tools-52e61043bcb716af42f9fd167aa2bb280bde5b5b.tar.gz
arching-kaos-tools-52e61043bcb716af42f9fd167aa2bb280bde5b5b.tar.bz2
arching-kaos-tools-52e61043bcb716af42f9fd167aa2bb280bde5b5b.zip
Updated test scripts
Diffstat (limited to 'api/tests/gathered_zblocks.sh')
-rwxr-xr-xapi/tests/gathered_zblocks.sh14
1 files changed, 8 insertions, 6 deletions
diff --git a/api/tests/gathered_zblocks.sh b/api/tests/gathered_zblocks.sh
index cbe2c9a..35920e0 100755
--- a/api/tests/gathered_zblocks.sh
+++ b/api/tests/gathered_zblocks.sh
@@ -1,23 +1,25 @@
#!/bin/bash
#
-printf "TEST /see\n"
-printf "\t01:\tOutput is JSON"
+PROGRAM="$(basename $0)"
+printf '[%s]\n' "$PROGRAM"
+printf "TEST\t/see\n"
+printf "\t01:\tOutput is valid JSON format..."
curl http://127.0.0.1:8610/v0/see 2>/dev/null | jq > /dev/null
if [ "$?" == "0" ]
then
- printf "\n\t\t\033[0;32mPASSED\033[0;0m"
+ printf "\t\t\033[0;32mPASSED\033[0;0m"
else
printf "\t\033[0;31mFAILED\033[0;0m"
fi
printf "\n"
-printf "\t02:\tFound blocks inside response"
+printf "\t02:\tFound blocks inside response..."
curl http://127.0.0.1:8610/v0/see 2>/dev/null | grep block > /dev/null
if [ "$?" == "0" ]
then
- printf "\n\t\t\033[0;32mPASSED\033[0;0m"
+ printf "\t\t\033[0;32mPASSED\033[0;0m"
else
- printf "\n\t\t\033[0;31mFAILED\033[0;0m"
+ printf "\t\t\033[0;31mFAILED\033[0;0m"
fi
printf "\n"