diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2023-03-30 01:09:30 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2023-03-30 01:09:30 +0300 |
commit | e2da6d2db20093ebd2a65aad35c9991ab1a02176 (patch) | |
tree | e5c77a8f4a6fd106b13b659e248cab5768d07cdc /api/tests/node_local_zlatest.sh | |
parent | a4901ad47d2945e9a6c6616661840c97ebbf03e7 (diff) | |
download | arching-kaos-tools-e2da6d2db20093ebd2a65aad35c9991ab1a02176.tar.gz arching-kaos-tools-e2da6d2db20093ebd2a65aad35c9991ab1a02176.tar.bz2 arching-kaos-tools-e2da6d2db20093ebd2a65aad35c9991ab1a02176.zip |
Introducing an HTTP JSON API
Diffstat (limited to 'api/tests/node_local_zlatest.sh')
-rwxr-xr-x | api/tests/node_local_zlatest.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/api/tests/node_local_zlatest.sh b/api/tests/node_local_zlatest.sh new file mode 100755 index 0000000..4f37280 --- /dev/null +++ b/api/tests/node_local_zlatest.sh @@ -0,0 +1,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" |