|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- #!/bin/bash
- # Copyright 2020 Huawei Technologies Co., Ltd.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
-
- set -e
-
- SCRIPT_BASEDIR=$(realpath "$(dirname "$0")")
-
- PROJECT_DIR=$(realpath "$SCRIPT_BASEDIR/../../")
- CRC32_SCRIPT_PATH="$PROJECT_DIR/build/scripts/crc32.sh"
- CRC32_OUTPUT_DIR="$PROJECT_DIR/mindinsight/datavisual/utils/"
- ST_PATH="$PROJECT_DIR/tests/st"
- IS_BUILD_CRC=""
-
- PYTEST_MARK=""
-
- show_usage() {
- echo "Run test cases for st."
- echo ""
- echo "usage: runtest.sh [-h] [-m <PYTEST MARK>]"
- echo ""
- echo "options:"
- echo " -h show usage info"
- echo " -m <PYTEST MARK> mark of pytest."
-
- }
-
- check_opts() {
- while getopts ":hm:" opt; do
- case $opt in
- h)
- show_usage
- exit 0
- ;;
- m)
- PYTEST_MARK="$OPTARG"
- ;;
- \?)
- show_usage
- exit 1
- ;;
- esac
- done
- }
-
- build_crc32() {
- echo "Start to check crc32."
- if [ -d "$CRC32_OUTPUT_DIR" ]; then
- cd "$CRC32_OUTPUT_DIR" || exit
- result=$(find . -maxdepth 1 -name "crc32*.so")
- if [ -z "$result" ]; then
- echo "Start to build crc32."
- IS_BUILD_CRC="true"
- bash "$CRC32_SCRIPT_PATH"
- fi
- fi
-
- }
-
- clean_crc32() {
- echo "Start to clean crc32."
- if [ -n "$IS_BUILD_CRC" ]; then
- rm -f "$CRC32_OUTPUT_DIR"/crc32*.so
- fi
- }
-
- before_run_test() {
- echo "Before run tests."
- export PYTHONPATH=$PROJECT_DIR:$PYTHONPATH
- build_crc32
- }
-
- after_run_test() {
- echo "After run tests."
- clean_crc32
-
- echo "End to run tests."
- }
-
- run_test() {
- echo "Start to run test."
- cd "$PROJECT_DIR" || exit
-
- for dir in "$ST_PATH"/*; do
- if [ ! -d "$dir" ] || [ "$dir" = "$ST_PATH/__pycache__" ]; then
- continue
- fi
-
- for sub_dir in "$dir"/*; do
- if [ ! -d "$sub_dir" ] || [ "$sub_dir" = "$dir/__pycache__" ]; then
- continue
- fi
- echo "Run test for path: $sub_dir"
- pytest "$sub_dir" --disable-pytest-warnings -m "$PYTEST_MARK"
- done
- done
-
- echo "Test all use cases success."
- }
-
- check_opts "$@"
- before_run_test
- run_test
- after_run_test
|