-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add rare string check for release-3.6.0 (#822)
- Loading branch information
1 parent
5c5d1a2
commit ac94ca9
Showing
2 changed files
with
127 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
#!/bin/bash | ||
|
||
concatenatedString=$1 | ||
|
||
function LOG_ERROR() | ||
{ | ||
local content=${1} | ||
echo -e "\033[31m"${content}"\033[0m" | ||
} | ||
|
||
function LOG_INFO() | ||
{ | ||
local content=${1} | ||
echo -e "\033[32m"${content}"\033[0m" | ||
} | ||
|
||
get_md5sum_cmd() { | ||
local md5sum_cmd="md5sum" | ||
if [ "$(uname)" == "Darwin" ]; then | ||
md5sum_cmd="md5" | ||
fi | ||
echo "$md5sum_cmd" | ||
} | ||
|
||
function checkConcatenatedRareString() { | ||
local contract_address=${1} | ||
md5sum_cmd=$(get_md5sum_cmd) | ||
|
||
md5_concatenatedString=$(echo -n "$concatenatedString" | $md5sum_cmd | awk '{print $1}') | ||
|
||
local set_output=$(./dist/console.sh call HelloWorld "${contract_address}" set "${concatenatedString}") | ||
eventLogsFromSet=$(echo "set_output" | grep -o 'Event: {}' | sed 's/Event: {\(.*\)}/\1/') | ||
if [ ! -z "$eventLogsFromSet" ]; then | ||
echo "eventLogsFromSet=${eventLogsFromSet}" | ||
md5_eventLogsFromSet=$(echo -n "$eventLogsFromSet" | $md5sum_cmd | awk '{print $1}') | ||
if [ "$md5_concatenatedString" != "$md5_eventLogsFromSet" ]; then | ||
LOG_ERROR "error: check failed, the md5 values of rareString and eventLogsFromSet are not equal, fail concatenatedString: ${concatenatedString}" | ||
exit 1 | ||
fi | ||
fi | ||
|
||
# compare rare string and stringFromGet | ||
get_output=$(./dist/console.sh call HelloWorld "${contract_address}" get) | ||
stringFromGet=$(echo "$get_output" | grep "Return values" | sed 's/Return values:\(.*\)/\1/' | tr -d '()') | ||
md5_stringFromGet=$(echo -n "$stringFromGet" | $md5sum_cmd | awk '{print $1}') | ||
if [ "$md5_concatenatedString" != "$md5_stringFromGet" ]; then | ||
LOG_ERROR "error: check failed, the md5 values of rareString and stringFromGet are not equal, fail concatenatedString: ${concatenatedString}" | ||
exit 1 | ||
else | ||
LOG_INFO "check success, concatenatedString: ${concatenatedString}" | ||
fi | ||
} | ||
|
||
main() { | ||
LOG_INFO "check rare string start, concatenatedString: ${concatenatedString}" | ||
|
||
# deploy HelloWorld contract | ||
console_output=$(./dist/console.sh deploy HelloWorld) | ||
contract_address=$(echo "$console_output" | grep -oE 'contract address: 0x[0-9a-fA-F]+' | sed 's/contract address: //') | ||
if [ -z "$contract_address" ]; then | ||
LOG_ERROR "deploy HelloWorld contract failed, contract_address: ${contract_address}" | ||
exit 1 | ||
fi | ||
|
||
checkConcatenatedRareString $contract_address | ||
LOG_INFO "check rare string finished!" | ||
} | ||
|
||
main "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters