aboutsummaryrefslogtreecommitdiff
path: root/api/tests/node_local_chain.sh
diff options
context:
space:
mode:
Diffstat (limited to 'api/tests/node_local_chain.sh')
-rwxr-xr-xapi/tests/node_local_chain.sh14
1 files changed, 8 insertions, 6 deletions
diff --git a/api/tests/node_local_chain.sh b/api/tests/node_local_chain.sh
index 06b08cc..843de35 100755
--- a/api/tests/node_local_chain.sh
+++ b/api/tests/node_local_chain.sh
@@ -1,12 +1,14 @@
#!/bin/bash
-printf "\nTEST /zchain\n"
+PROGRAM="$(basename $0)"
+printf '[%s]\n' "$PROGRAM"
+printf "TEST /zchain\n"
printf "\t01:\tComparing API with CLI response..."
-API_RESPONSE="$(curl http://127.0.0.1:8610/v0/zchain 2>/dev/null | sha512sum - | awk '{print $1 }')"
-CMD_RESPONSE="$(get-chain-min | sha512sum - | awk '{ print $1 }')"
-printf "api: %s\nenter: %s\n" $API_RESPONSE $CMD_RESPONSE
+API_RESPONSE="$(curl http://127.0.0.1:8610/v0/zchain 2>/dev/null | jq -c -M | sha512sum - | awk '{print $1 }')"
+CMD_RESPONSE="$(ak-get-chain-minified | jq -c -M | sha512sum - | awk '{ print $1 }')"
if [ "$API_RESPONSE" == "$CMD_RESPONSE" ]
then
- printf "\t\t\033[0;32mPASSED\033[0;0m\n"
+ printf "\t\t\033[0;32mPASSED\033[0;0m"
else
- printf "\t\t\033[0;31mFAILED\033[0;0m\n"
+ printf "\t\t\033[0;31mFAILED\033[0;0m"
fi
+printf "\n"