diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2023-03-31 21:34:47 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2023-03-31 21:34:47 +0300 |
commit | 52e61043bcb716af42f9fd167aa2bb280bde5b5b (patch) | |
tree | 5f8f2708bd6ac8da77d12872036d056ea80369fa /api/tests/node_local_zlatest.sh | |
parent | 3023b8396d3656887a95f11e45da2e79406d64d1 (diff) | |
download | arching-kaos-tools-52e61043bcb716af42f9fd167aa2bb280bde5b5b.tar.gz arching-kaos-tools-52e61043bcb716af42f9fd167aa2bb280bde5b5b.tar.bz2 arching-kaos-tools-52e61043bcb716af42f9fd167aa2bb280bde5b5b.zip |
Updated test scripts
Diffstat (limited to 'api/tests/node_local_zlatest.sh')
-rwxr-xr-x | api/tests/node_local_zlatest.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/api/tests/node_local_zlatest.sh b/api/tests/node_local_zlatest.sh index 4f37280..f562bc6 100755 --- a/api/tests/node_local_zlatest.sh +++ b/api/tests/node_local_zlatest.sh @@ -1,12 +1,14 @@ #!/bin/bash +PROGRAM="$(basename $0)" +printf '[%s]\n' "$PROGRAM" 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 }')" +CMD_RES="$(ak-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" + printf "\t\t\033[0;32mPASSED\033[0;0m" else - printf "\n\t\t\033[0;31mFAILED\033[0;0m" + printf "\t\t\033[0;31mFAILED\033[0;0m" fi printf "\n" |