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.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/api/tests/node_local_chain.sh b/api/tests/node_local_chain.sh
new file mode 100755
index 0000000..06b08cc
--- /dev/null
+++ b/api/tests/node_local_chain.sh
@@ -0,0 +1,12 @@
+#!/bin/bash
+printf "\nTEST /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
+if [ "$API_RESPONSE" == "$CMD_RESPONSE" ]
+then
+ printf "\t\t\033[0;32mPASSED\033[0;0m\n"
+else
+ printf "\t\t\033[0;31mFAILED\033[0;0m\n"
+fi