From 1398e7a0cb17a129bec5949532079b1aa33515ce Mon Sep 17 00:00:00 2001 From: Dusan Klinec Date: Mon, 8 Apr 2019 13:39:53 +0200 Subject: [PATCH] tests: monero binary test added --- .gitignore | 1 + tests/run_tests_device_emu_monero.sh | 85 +++++++++++++++++++++++++--- 2 files changed, 78 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index b8f35d9b2a..6ffecabf6c 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ build/ build-docker/ emu.config compile_commands.json +tests/trezor_monero_tests{,.log} diff --git a/tests/run_tests_device_emu_monero.sh b/tests/run_tests_device_emu_monero.sh index a2ecb085a7..bc9be9ba33 100755 --- a/tests/run_tests_device_emu_monero.sh +++ b/tests/run_tests_device_emu_monero.sh @@ -1,27 +1,96 @@ #!/bin/bash -MICROPYTHON=../build/unix/micropython +: "${RUN_PYTHON_TESTS:=0}" +: "${FORCE_DOCKER_USE:=0}" + +SDIR="$(SHELL_SESSION_FILE= && cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" +CORE_DIR="$SDIR/.." +MICROPYTHON=$CORE_DIR/build/unix/micropython PYOPT=0 # run emulator -cd ../src +cd $CORE_DIR/src $MICROPYTHON -O$PYOPT main.py >/dev/null & upy_pid=$! +cd - sleep 1 export TREZOR_PATH=udp:127.0.0.1:21324 +DOCKER_ID="" + +# Test termination trap +terminate_test() { + if [[ $# > 0 ]]; then error=$1; fi + kill $upy_pid + if [ -n "$DOCKER_ID" ]; then docker kill $DOCKER_ID 2>/dev/null >/dev/null; fi + exit $error +} + +set -e +trap 'terminate_test $?' EXIT # run tests -cd .. - export EC_BACKEND_FORCE=1 export EC_BACKEND=1 export TREZOR_TEST_GET_TX=1 export TREZOR_TEST_LIVE_REFRESH=1 -export TREZOR_TEST_SIGN_CL0_HF9=1 +export TREZOR_TEST_SIGN_CL0_HF9=0 # HF9 is no longer active export TREZOR_TEST_SIGN_CL1_HF9=1 export TREZOR_TEST_SIGN_CL1_HF10=1 -python3 -m unittest trezor_monero_test.test_trezor -error=$? -kill $upy_pid +error=0 + +if [[ "$RUN_PYTHON_TESTS" != 0 ]]; then + python3 -m unittest trezor_monero_test.test_trezor || exit $? +fi + +if [[ "$OSTYPE" != "linux-gnu" && "$OSTYPE" != "darwin"* ]]; then + echo "Tests with native Monero app is supported only on Linux and OSX at the moment. Your OS: $OSTYPE" + exit 0 +fi + +error=1 +: "${TREZOR_MONERO_TESTS_URL:=https://github.com/ph4r05/monero/releases/download/v0.14.0.2-tests-u14.04-02/trezor_tests}" +: "${TREZOR_MONERO_TESTS_SHA256SUM:=ad7d366ad1d673f77523031da383ae12547270b6257962cb250ea75e11648697}" +: "${TREZOR_MONERO_TESTS_PATH:=$CORE_DIR/tests/trezor_monero_tests}" +: "${TREZOR_MONERO_TESTS_LOG:=$CORE_DIR/tests/trezor_monero_tests.log}" + +if [[ ! -f $TREZOR_MONERO_TESTS_PATH || "`shasum -a256 $TREZOR_MONERO_TESTS_PATH | cut -d' ' -f1`" != $TREZOR_MONERO_TESTS_SHA256SUM ]]; then + echo "Downloading Trezor monero tests binary to `pwd`${TREZOR_MONERO_TESTS_PATH:1}" + curl -# -L -o $TREZOR_MONERO_TESTS_PATH $TREZOR_MONERO_TESTS_URL \ + && chmod +x $TREZOR_MONERO_TESTS_PATH \ + && test "`shasum -a256 $TREZOR_MONERO_TESTS_PATH | cut -d' ' -f1`" == "$TREZOR_MONERO_TESTS_SHA256SUM" || exit 1 +fi + +echo "Running tests" +TIME_TESTS_START=$SECONDS +if [[ "$OSTYPE" == "linux-gnu" && "$FORCE_DOCKER_USE" != 1 ]]; then + $TREZOR_MONERO_TESTS_PATH 2>&1 > "$TREZOR_MONERO_TESTS_LOG" + error=$? + +elif [[ "$OSTYPE" == "darwin"* || "$FORCE_DOCKER_USE" == 1 ]]; then + DOCKER_ID=$(docker run -idt --mount type=bind,src=$CORE_DIR,dst=$CORE_DIR -w $CORE_DIR --network=host ubuntu:18.04) + docker exec $DOCKER_ID apt-get update -qq 2>/dev/null >/dev/null + docker exec $DOCKER_ID apt-get install --no-install-recommends --no-upgrade -qq net-tools socat 2>/dev/null >/dev/null + docker exec -d $DOCKER_ID socat UDP-LISTEN:21324,reuseaddr,reuseport,fork UDP4-SENDTO:host.docker.internal:21324 + docker exec -d $DOCKER_ID socat UDP-LISTEN:21325,reuseaddr,reuseport,fork UDP4-SENDTO:host.docker.internal:21325 + docker exec $DOCKER_ID $TREZOR_MONERO_TESTS_PATH 2>&1 > "$TREZOR_MONERO_TESTS_LOG" + error=$? + +else + echo "Unsupported OS: $OSTYPE" + exit 1 +fi + + +TIME_TESTS_ELAPSED=$((SECONDS-TIME_TESTS_START)) + +if ((error != 0)); then + echo "ERROR in trezor tests. Log follows;" + tail -n 500 "$TREZOR_MONERO_TESTS_LOG" +else + echo "[PASS] Monero test in $TIME_TESTS_ELAPSED sec. " + cat "$TREZOR_MONERO_TESTS_LOG" | grep -v DEBUG | egrep '#TEST#|tests.core\b' | tail -n 50 +fi + exit $error +