aboutsummaryrefslogtreecommitdiff
path: root/api/tests/gathered_zblocks.sh
blob: cbe2c9ae22af251c393333068e7abbfd5d5d48d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
#

printf "TEST /see\n"
printf "\t01:\tOutput is JSON"
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"
else
    printf "\t\033[0;31mFAILED\033[0;0m"
fi
printf "\n"

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"
else
    printf "\n\t\t\033[0;31mFAILED\033[0;0m"
fi
printf "\n"