summaryrefslogtreecommitdiff
path: root/tests/scripts/command/unittest
blob: 135ebea7b15cc53c6d74186c555ad25a16269741 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#!/bin/bash
#
# Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
#
# 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.

COMMAND_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
INSTALL_DIR="$(dirname $(dirname $COMMAND_DIR))"
UNITTEST_REPORT_DIR=
UNITTEST_TEST_DIR=$INSTALL_DIR/unittest
UNITTEST_RESULT=0
UNITTEST_RUN_ALL=""

function Usage()
{
    # TODO: Fill this
    echo "Usage: $0 $(basename ${BASH_SOURCE[0]}) [OPTIONS]"
    echo ""
    echo "Options:"
    echo "      --reportdir=PATH        Path to write unittest report"
    echo "      --unittestdir=PATH      Path to run unittest (default: $UNITTEST_TEST_DIR"
}

function get_gtest_option()
{
    local UNITTEST_REPORT_FILE=$(basename $TEST_BIN)
    local output_option
    local filter_option
    if [ -n "$UNITTEST_REPORT_DIR" ]; then
        output_option="--gtest_output=xml:$UNITTEST_REPORT_DIR/$UNITTEST_REPORT_FILE.xml"
    fi
    if [ -r "$TEST_BIN.skip" ]; then
      filter_option="--gtest_filter=-$(grep -v '#' "$TEST_BIN.skip" | tr '\n' ':')"
    fi
    echo "$output_option $filter_option"
}

for i in "$@"
do
    case $i in
        -h|--help|help)
            Usage
            exit 1
            ;;
        --reportdir=*)
            UNITTEST_REPORT_DIR=${i#*=}
            ;;
        --unittestdir=*)
            UNITTEST_TEST_DIR=${i#*=}
            ;;
        *)
            echo "Unknown option: $i"
            exit 1
        ;;
    esac
    shift
done

if [ -n "$UNITTEST_REPORT_DIR" ] && [ ! -e "$UNITTEST_REPORT_DIR" ]; then
    mkdir -p $UNITTEST_REPORT_DIR
fi

echo ""
echo "============================================"
echo "Unittest start"
echo "============================================"

num_unittest=0
# Run all executables in unit test directory
for TEST_BIN in `find $UNITTEST_TEST_DIR -maxdepth 1 -type f -executable`; do
    num_unittest=$((num_unittest+1))
    echo "============================================"
    echo "Starting set $num_unittest: $TEST_BIN..."
    echo "============================================"

    $TEST_BIN $(get_gtest_option)
    TEMP_UNITTEST_RESULT=$?

    if [[ $TEMP_UNITTEST_RESULT -ne 0 ]]; then
        UNITTEST_RESULT=$TEMP_UNITTEST_RESULT
        echo "$TEST_BIN failed... return code: $TEMP_UNITTEST_RESULT"
    fi
    echo "============================================"
    echo "Finishing set $num_unittest: $TEST_BIN..."
    echo "============================================"
done

if [[ $UNITTEST_RESULT -ne 0 ]]; then
    echo "============================================"
    echo "Failed unit test... exit code: $UNITTEST_RESULT"
    echo "============================================"
    exit $UNITTEST_RESULT
fi

echo "============================================"
echo "Completed total $num_unittest set of unittest"
echo "Unittest end"
echo "============================================"