This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10120 from EOSIO/wlb/adding_nodeos_param_tests
Adding test for nodeos --full-version check.
- Loading branch information
Showing
5 changed files
with
154 additions
and
12 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
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
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,73 @@ | ||
#!/bin/bash | ||
set -eo pipefail | ||
# The purpose of this test is to ensure that the output of the "nodeos --full-version" command matches the version string defined by our CMake files | ||
echo '##### Nodeos Full Version Label Test #####' | ||
# orient ourselves | ||
[[ "$EOSIO_ROOT" == '' ]] && EOSIO_ROOT=$(echo $(pwd)/ | grep -ioe '.*/eos/') | ||
[[ "$EOSIO_ROOT" == '' ]] && EOSIO_ROOT=$(echo $(pwd)/ | grep -ioe '.*/EOSIO/eosio/') | ||
[[ "$EOSIO_ROOT" == '' ]] && EOSIO_ROOT=$(echo $(pwd)/ | grep -ioe '.*/build/' | sed 's,/build/,,') | ||
echo "Using EOSIO_ROOT=\"$EOSIO_ROOT\"." | ||
# determine expected value | ||
CMAKE_CACHE="$EOSIO_ROOT/build/CMakeCache.txt" | ||
CMAKE_LISTS="$EOSIO_ROOT/CMakeLists.txt" | ||
if [[ -f "$CMAKE_CACHE" && $(cat "$CMAKE_CACHE" | grep -c 'DOXY_EOS_VERSION') > 0 ]]; then | ||
echo "Parsing \"$CMAKE_CACHE\"..." | ||
EXPECTED="v$(cat "$CMAKE_CACHE" | grep 'DOXY_EOS_VERSION' | cut -d '=' -f 2)" | ||
elif [[ -f "$CMAKE_LISTS" ]]; then | ||
echo "Parsing \"$CMAKE_LISTS\"..." | ||
export $(cat $CMAKE_LISTS | grep -ie 'set *( *VERSION_MAJOR' | cut -d '(' -f 2 | cut -d ')' -f 1 | awk '{print $1"="$2}') | ||
export $(cat $CMAKE_LISTS | grep -ie 'set *( *VERSION_MINOR' | cut -d '(' -f 2 | cut -d ')' -f 1 | awk '{print $1"="$2}') | ||
export $(cat $CMAKE_LISTS | grep -ie 'set *( *VERSION_PATCH' | cut -d '(' -f 2 | cut -d ')' -f 1 | awk '{print $1"="$2}') | ||
if [[ $(cat $CMAKE_LISTS | grep -ice 'set *( *VERSION_SUFFIX') > 0 ]]; then | ||
echo 'Using version suffix...' | ||
export $(cat $CMAKE_LISTS | grep -ie 'set *( *VERSION_SUFFIX' | cut -d '(' -f 2 | cut -d ')' -f 1 | awk '{print $1"="$2}') | ||
export $(echo "$(cat $CMAKE_LISTS | grep -ie 'set *( *VERSION_FULL.*VERSION_SUFFIX' | cut -d '(' -f 2 | cut -d ')' -f 1 | awk '{print $1"="$2}')" | sed "s/VERSION_MAJOR/$VERSION_MAJOR/" | sed "s/VERSION_MINOR/$VERSION_MINOR/" | sed "s/VERSION_PATCH/$VERSION_PATCH/" | sed "s/VERSION_SUFFIX/$VERSION_SUFFIX/" | tr -d '"{}$') | ||
else | ||
echo 'No version suffix found.' | ||
export $(echo "$(cat $CMAKE_LISTS | grep -ie 'set *( *VERSION_FULL' | grep -ive 'VERSION_SUFFIX' | cut -d '(' -f 2 | cut -d ')' -f 1 | awk '{print $1"="$2}')" | sed "s/VERSION_MAJOR/$VERSION_MAJOR/" | sed "s/VERSION_MINOR/$VERSION_MINOR/" | sed "s/VERSION_PATCH/$VERSION_PATCH/" | tr -d '"{}$') | ||
fi | ||
EXPECTED="v$VERSION_FULL" | ||
fi | ||
# fail if no expected value was found | ||
if [[ -z "$EXPECTED" ]]; then | ||
echo 'ERROR: Could not determine expected value for version label!' | ||
set +e | ||
echo "EOSIO_ROOT=\"$EOSIO_ROOT\"" | ||
echo "CMAKE_CACHE=\"$CMAKE_CACHE\"" | ||
echo "CMAKE_LISTS=\"$CMAKE_LISTS\"" | ||
echo '' | ||
echo "VERSION_MAJOR=\"$VERSION_MAJOR\"" | ||
echo "VERSION_MINOR=\"$VERSION_MINOR\"" | ||
echo "VERSION_PATCH=\"$VERSION_PATCH\"" | ||
echo "VERSION_SUFFIX=\"$VERSION_SUFFIX\"" | ||
echo "VERSION_FULL=\"$VERSION_FULL\"" | ||
echo '' | ||
echo '$ cat "$CMAKE_CACHE" | grep "DOXY_EOS_VERSION"' | ||
cat "$CMAKE_CACHE" | grep "DOXY_EOS_VERSION" | ||
echo '$ pwd' | ||
pwd | ||
echo '$ ls -la "$EOSIO_ROOT"' | ||
ls -la "$EOSIO_ROOT" | ||
echo '$ ls -la "$EOSIO_ROOT/build"' | ||
ls -la "$EOSIO_ROOT/build" | ||
exit 1 | ||
fi | ||
[[ -z "$BUILDKITE_COMMIT" ]] && VERSION_HASH="$(git rev-parse HEAD 2>/dev/null || :)" || VERSION_HASH=$BUILDKITE_COMMIT | ||
EXPECTED=$EXPECTED-$VERSION_HASH | ||
echo "Expecting \"$EXPECTED\"..." | ||
# get nodeos version | ||
ACTUAL=$($EOSIO_ROOT/build/bin/nodeos --full-version) | ||
EXIT_CODE=$? | ||
# verify 0 exit code explicitly | ||
if [[ $EXIT_CODE -ne 0 ]]; then | ||
echo "Nodeos produced non-zero exit code \"$EXIT_CODE\"." | ||
exit $EXIT_CODE | ||
fi | ||
# test version | ||
if [[ "$EXPECTED" == "$ACTUAL" ]]; then | ||
echo "Passed with \"$ACTUAL\"." | ||
exit 0 | ||
fi | ||
echo 'Failed!' | ||
echo "\"$EXPECTED\" != \"$ACTUAL\"" | ||
exit 1 |
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,64 @@ | ||
#!/bin/bash | ||
set -eo pipefail | ||
# The purpose of this test is to ensure that the output of the "nodeos --print-build-info" command. | ||
# This includes verifying valid output in JSON shape and checking parameters (only boost for now). | ||
echo '##### Nodeos Print Build Info Test #####' | ||
# orient ourselves | ||
[[ "$EOSIO_ROOT" == '' ]] && EOSIO_ROOT=$(echo $(pwd)/ | grep -ioe '.*/eos/') | ||
[[ "$EOSIO_ROOT" == '' ]] && EOSIO_ROOT=$(echo $(pwd)/ | grep -ioe '.*/EOSIO/eosio/') | ||
[[ "$EOSIO_ROOT" == '' ]] && EOSIO_ROOT=$(echo $(pwd)/ | grep -ioe '.*/build/' | sed 's,/build/,,') | ||
echo "Using EOSIO_ROOT=\"$EOSIO_ROOT\"." | ||
|
||
exec 9>&1 # enable tee to write to STDOUT as a file | ||
PRINT_BUILD_INFO="$EOSIO_ROOT/build/bin/nodeos --print-build-info 2>&1 | tee >(cat - >&9) || :" | ||
echo "$ $PRINT_BUILD_INFO" | ||
OUTPUT="$(eval $PRINT_BUILD_INFO)" | ||
|
||
OUTPUT=$(echo "$OUTPUT" | tr -d '\r\n') | ||
OUTPUT=$(echo "$OUTPUT" | sed -E 's/^.+JSON://') | ||
OUTPUT=$(echo "$OUTPUT" | sed -E 's/}.+$/}/') | ||
|
||
JQ_OUTPUT=$(echo "$OUTPUT" | jq type) | ||
EXIT_CODE=$? | ||
if [[ "$EXIT_CODE" -ne 0 ]]; then | ||
echo "Not valid JSON type." | ||
exit $EXIT_CODE | ||
fi | ||
|
||
V_ARCH=$(echo "$OUTPUT" | jq '.arch') | ||
echo "ARCH: $V_ARCH" | ||
V_BOOST=$(echo "$OUTPUT" | jq '.boost_version') | ||
echo "BOOST_VERSION: $V_BOOST" | ||
V_COMPILER=$(echo "$OUTPUT" | jq '.compiler') | ||
echo "COMPILER: $V_COMPILER" | ||
V_DEBUG=$(echo "$OUTPUT" | jq '.debug') | ||
echo "DEBUG: $V_DEBUG" | ||
V_OS=$(echo "$OUTPUT" | jq '.os') | ||
echo "OS: $V_OS" | ||
|
||
if [[ -z "$V_ARCH" || -z "$V_BOOST" || -z "$V_COMPILER" || -z "$V_DEBUG" || -z "$V_OS" ]]; then | ||
echo "Missing expected build info key(s)." | ||
exit 1 | ||
fi | ||
|
||
if [[ "$PLATFORM_TYPE" == "pinned" ]]; then | ||
if [[ -z "$IMAGE_TAG" ]]; then | ||
echo "Missing IMAGE_TAG variable." | ||
exit 1 | ||
fi | ||
FILE=$(ls $EOSIO_ROOT/.cicd/platforms/pinned/$IMAGE_TAG* | head) | ||
BOOST=$(cat $FILE | grep boost | tr -d '\r\n' | sed -E 's/^.+boost_([0-9]+_[0-9]+_[0-9]+).+$/\1/' | head) | ||
BOOST_MAJOR=$(echo $BOOST | sed -E 's/^([0-9])+_[0-9]+_[0-9]+$/\1/') | ||
BOOST_MINOR=$(echo $BOOST | sed -E 's/^[0-9]+_([0-9]+)_[0-9]+$/\1/') | ||
BOOST_PATCH=$(echo $BOOST | sed -E 's/^[0-9]+_[0-9]+_([0-9])+$/\1/') | ||
E_BOOST=$(printf "%d%03d%02d" $BOOST_MAJOR $BOOST_MINOR $BOOST_PATCH) | ||
|
||
echo "Verifying boost version: \"$E_BOOST\" == \"$V_BOOST\"." | ||
if [[ "$E_BOOST" != "$V_BOOST" ]]; then | ||
echo "Expected boost version \"$E_BOOST\" does not match actual \"$V_BOOST\"." | ||
exit 1 | ||
fi | ||
fi | ||
|
||
echo "Validation of build info complete." | ||
exit 0 |
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