aboutsummaryrefslogtreecommitdiff
path: root/api/tests/node_local_zlatest.sh
blob: 4f37280d3f58d5ffcae71a85b6c2274a38bebf96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
API_RES="$(curl http://127.0.0.1:8610/v0/zlatest 2>/dev/null | sha512sum - | awk '{ printf $1 }')"
CMD_RES="$(get-latest | sed -e 's/^/{"zlatest":"/; s/$/"}/' | sha512sum - | awk '{ printf $1 }')"
printf "TEST /zlatest\n"
printf "\t01:\tLatest is the same between API response and CLI..."
if [ "$API_RES" == "$CMD_RES" ]
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"