Skip to content

Commit 3fb0aa2

Browse files
authored
[Refactor] Unify the unit tests related names for BE and FE (StarRocks#15667)
There are some inconsistencies between the unit tests of BE and FE This pull request unify the two scripts. 1. rename run-ut.sh to run-be-ut.sh 2. use parameter --test to run specified test `./run-fe-ut.sh --run [TEST_NAME]` `./run-fe-ut.sh --gtest_filter [TEST_NAME_WILDCARD]` 3. Add a new paramter --dry-run to only compile and build the unit tests `./run-fe-ut.sh --dry-run` `./run-be-ut.sh --dry-run`
1 parent 15c1939 commit 3fb0aa2

File tree

3 files changed

+80
-73
lines changed

3 files changed

+80
-73
lines changed

docs/developers/build-starrocks/handbook.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@ and, only build FE by
2727

2828
Unit tests of BE and FE are separted. In general, you can run BE test by
2929
```
30-
./run-ut.sh --run
30+
./run-be-ut.sh
3131
```
3232

3333
run FE test by
3434
```
35-
./run-fe-ut.sh --run
35+
./run-fe-ut.sh
3636
```
3737

3838
## How to run BE UT in command line
3939

40-
Now, BE UT needs some dependency to run, and `./run-ut.sh` helps it. But it is not flexible enough. When you want to run UT in the command-line, you can execute
40+
Now, BE UT needs some dependency to run, and `./run-be-ut.sh` helps it. But it is not flexible enough. When you want to run UT in the command-line, you can execute
4141

4242
```
4343
UDF_RUNTIME_DIR=./ STARROCKS_HOME=./ LD_LIBRARY_PATH=/usr/lib/jvm/java-18-openjdk-amd64/lib/server ./be/ut_build_ASAN/test/starrocks_test

run-ut.sh run-be-ut.sh

+41-45
Original file line numberDiff line numberDiff line change
@@ -32,41 +32,42 @@ usage() {
3232
echo "
3333
Usage: $0 <options>
3434
Optional options:
35-
--clean clean and build ut
36-
--run build and run ut
37-
--gtest_filter specify test cases
35+
--test [TEST_NAME] run specific test
36+
--dry-run dry-run unit tests
37+
--clean clean old unit tests before run
38+
--with-gcov enable to build with gcov
3839
--with-aws enable to test aws
3940
--with-bench enable to build with benchmark
40-
--with-gcov enable to build with gcov
4141
--module module to run uts
4242
--use-staros enable to build with staros
4343
-j build parallel
4444
4545
Eg.
46-
$0 build ut
47-
$0 --run build and run ut
48-
$0 --run --gtest_filter scan* build and run ut of specified cases
49-
$0 --clean clean and build ut
50-
$0 --clean --run clean, build and run ut
51-
$0 --clean --run --with-gcov clean, build and run ut with gcov
46+
$0 run all unit tests
47+
$0 --test CompactionUtilsTest run compaction test
48+
$0 --dry-run dry-run unit tests
49+
$0 --clean clean old unit tests before run
5250
$0 --help display usage
5351
"
5452
exit 1
5553
}
5654

55+
# -l run and -l gtest_filter only used for compatibility
5756
OPTS=$(getopt \
5857
-n $0 \
5958
-o '' \
60-
-l 'run' \
59+
-l 'test:' \
60+
-l 'dry-run' \
6161
-l 'clean' \
62-
-l "gtest_filter:" \
62+
-l 'with-gcov' \
6363
-l 'module:' \
6464
-l 'with-aws' \
6565
-l 'with-bench' \
6666
-l 'use-staros' \
67-
-l 'with-gcov' \
6867
-o 'j:' \
6968
-l 'help' \
69+
-l 'run' \
70+
-l 'gtest_filter:' \
7071
-- "$@")
7172

7273
if [ $? != 0 ] ; then
@@ -76,8 +77,8 @@ fi
7677
eval set -- "$OPTS"
7778

7879
CLEAN=0
79-
RUN=0
80-
TEST_FILTER=*
80+
DRY_RUN=0
81+
TEST_NAME=*
8182
TEST_MODULE=".*"
8283
HELP=0
8384
WITH_AWS=OFF
@@ -87,8 +88,10 @@ WITH_GCOV=OFF
8788
while true; do
8889
case "$1" in
8990
--clean) CLEAN=1 ; shift ;;
90-
--run) RUN=1 ; shift ;;
91-
--gtest_filter) TEST_FILTER=$2 ; shift 2;;
91+
--dry-run) DRY_RUN=1 ; shift ;;
92+
--run) shift ;; # Option only for compatibility
93+
--test) TEST_NAME=$2 ; shift 2;;
94+
--gtest_filter) TEST_NAME=$2 ; shift 2;; # Option only for compatibility
9295
--module) TEST_MODULE=$2; shift 2;;
9396
--help) HELP=1 ; shift ;;
9497
--with-aws) WITH_AWS=ON; shift ;;
@@ -157,12 +160,11 @@ else
157160
-DWITH_BLOCK_CACHE=${WITH_BLOCK_CACHE} \
158161
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ../
159162
fi
160-
time ${BUILD_SYSTEM} -j${PARALLEL}
163+
${BUILD_SYSTEM} -j${PARALLEL}
161164

162-
if [ ${RUN} -ne 1 ]; then
163-
echo "Finished"
164-
exit 0
165-
fi
165+
echo "*********************************"
166+
echo " Starting to Run BE Unit Tests "
167+
echo "*********************************"
166168

167169
cd ${STARROCKS_HOME}
168170
export STARROCKS_TEST_BINARY_DIR=${CMAKE_BUILD_DIR}
@@ -178,15 +180,6 @@ mkdir -p $LOG_DIR
178180
mkdir -p ${UDF_RUNTIME_DIR}
179181
rm -f ${UDF_RUNTIME_DIR}/*
180182

181-
if [ ${RUN} -ne 1 ]; then
182-
echo "Finished"
183-
exit 0
184-
fi
185-
186-
echo "******************************"
187-
echo " Running StarRocks BE Unittest "
188-
echo "******************************"
189-
190183
. ${STARROCKS_HOME}/bin/common.sh
191184

192185
# ====================== configure JAVA/JVM ====================
@@ -218,18 +211,16 @@ if [ "${WITH_BLOCK_CACHE}" == "ON" ]; then
218211
export LD_LIBRARY_PATH=$CACHELIB_DIR/lib:$CACHELIB_DIR/lib64:$CACHELIB_DIR/deps/lib:$CACHELIB_DIR/deps/lib64:$LD_LIBRARY_PATH
219212
fi
220213

221-
echo "GTEST_OPTIONS:${GTEST_OPTIONS}"
222-
223214
# HADOOP_CLASSPATH defined in $STARROCKS_HOME/conf/hadoop_env.sh
224215
# put $STARROCKS_HOME/conf ahead of $HADOOP_CLASSPATH so that custom config can replace the config in $HADOOP_CLASSPATH
225216
export CLASSPATH=$STARROCKS_HOME/conf:$HADOOP_CLASSPATH:$CLASSPATH
226217

227218
# ===========================================================
228219

229-
export STARROCKS_TEST_BINARY_DIR=${STARROCKS_TEST_BINARY_DIR}/test/
220+
export STARROCKS_TEST_BINARY_DIR=${STARROCKS_TEST_BINARY_DIR}/test
230221

231222
if [ $WITH_AWS = "OFF" ]; then
232-
TEST_FILTER="$TEST_FILTER:-*S3*"
223+
TEST_NAME="$TEST_NAME*:-*S3*"
233224
fi
234225

235226
# prepare util test_data
@@ -246,20 +237,25 @@ test_files=`find ${STARROCKS_TEST_BINARY_DIR} -type f -perm -111 -name "*test" \
246237
# run cases in starrocks_test in parallel if has gtest-parallel script.
247238
# reference: https://github.com/google/gtest-parallel
248239
if [[ $TEST_MODULE == '.*' || $TEST_MODULE == 'starrocks_test' ]]; then
249-
echo "Run test file: starrocks_test"
250-
if [ -x ${GTEST_PARALLEL} ]; then
251-
${GTEST_PARALLEL} ${STARROCKS_TEST_BINARY_DIR}/starrocks_test --gtest_catch_exceptions=0 --gtest_filter=${TEST_FILTER} --serialize_test_cases ${GTEST_PARALLEL_OPTIONS}
252-
else
253-
${STARROCKS_TEST_BINARY_DIR}/starrocks_test $GTEST_OPTIONS --gtest_filter=${TEST_FILTER}
240+
echo "Run test: ${STARROCKS_TEST_BINARY_DIR}/starrocks_test"
241+
if [ ${DRY_RUN} -eq 0 ]; then
242+
if [ -x ${GTEST_PARALLEL} ]; then
243+
${GTEST_PARALLEL} ${STARROCKS_TEST_BINARY_DIR}/starrocks_test \
244+
--gtest_catch_exceptions=0 --gtest_filter=${TEST_NAME} \
245+
--serialize_test_cases ${GTEST_PARALLEL_OPTIONS}
246+
else
247+
${STARROCKS_TEST_BINARY_DIR}/starrocks_test $GTEST_OPTIONS --gtest_filter=${TEST_NAME}
248+
fi
254249
fi
255250
fi
256251

257252
for test in ${test_files[@]}
258253
do
259-
echo "Run test file: $test"
260-
file_name=${test##*/}
261-
if [ -z $RUN_FILE ] || [ $file_name == $RUN_FILE ]; then
262-
echo "=== Run $file_name ==="
263-
$test $GTEST_OPTIONS --gtest_filter=${TEST_FILTER}
254+
echo "Run test: $test"
255+
if [ ${DRY_RUN} -eq 0 ]; then
256+
file_name=${test##*/}
257+
if [ -z $RUN_FILE ] || [ $file_name == $RUN_FILE ]; then
258+
$test $GTEST_OPTIONS --gtest_filter=${TEST_NAME}
259+
fi
264260
fi
265261
done

run-fe-ut.sh

+36-25
Original file line numberDiff line numberDiff line change
@@ -30,25 +30,31 @@ usage() {
3030
echo "
3131
Usage: $0 <options>
3232
Optional options:
33-
--clean clean and build ut
34-
--run build and run ut
33+
--test [TEST_NAME] run specific test
34+
--dry-run dry-run unit tests
35+
--coverage run coverage statistic tasks
36+
--dumpcase [PATH] run dump case and save to path
3537
3638
Eg.
37-
$0 build and run ut
38-
$0 --coverage build and run coverage statistic
39-
$0 --run xxx build and run the specified class
40-
$0 --dumpcase path run dump case
39+
$0 run all unit tests
40+
$0 --test com.starrocks.utframe.Demo run demo test
41+
$0 --dry-run dry-run unit tests
42+
$0 --coverage run coverage statistic tasks
43+
$0 --dumpcase /home/disk1/ run dump case and save to path
4144
"
4245
exit 1
4346
}
4447

48+
# -l run only used for compatibility
4549
OPTS=$(getopt \
4650
-n $0 \
4751
-o '' \
52+
-l 'test:' \
53+
-l 'dry-run' \
4854
-l 'coverage' \
49-
-l 'run' \
5055
-l 'dumpcase' \
5156
-l 'help' \
57+
-l 'run' \
5258
-- "$@")
5359

5460
if [ $? != 0 ] ; then
@@ -58,17 +64,21 @@ fi
5864
eval set -- "$OPTS"
5965

6066
HELP=0
61-
RUN=0
67+
DRY_RUN=0
68+
RUN_SPECIFIED_TEST=0
69+
TEST_NAME=*
6270
COVERAGE=0
6371
DUMPCASE=0
6472
while true; do
6573
case "$1" in
6674
--coverage) COVERAGE=1 ; shift ;;
67-
--run) RUN=1 ; shift ;;
75+
--test) RUN_SPECIFIED_TEST=1; TEST_NAME=$2; shift 2;;
76+
--run) shift ;; # only used for compatibility
6877
--dumpcase) DUMPCASE=1; shift ;;
78+
--dry-run) DRY_RUN=1 ; shift ;;
6979
--help) HELP=1 ; shift ;;
7080
--) shift ; break ;;
71-
*) ehco "Internal error" ; exit 1 ;;
81+
*) echo "Internal error" ; exit 1 ;;
7282
esac
7383
done
7484

@@ -77,11 +87,9 @@ if [ ${HELP} -eq 1 ]; then
7787
exit 0
7888
fi
7989

80-
echo "Build Frontend UT"
81-
82-
echo "******************************"
83-
echo " Runing StarRocksFE Unittest "
84-
echo "******************************"
90+
echo "*********************************"
91+
echo " Starting to Run FE Unit Tests "
92+
echo "*********************************"
8593

8694
cd ${STARROCKS_HOME}/fe/
8795
mkdir -p build/compile
@@ -103,20 +111,23 @@ fi
103111
mkdir ut_ports
104112

105113
if [ ${COVERAGE} -eq 1 ]; then
106-
echo "Run coverage statistic"
114+
echo "Run coverage statistic tasks"
107115
ant cover-test
108116
elif [ ${DUMPCASE} -eq 1 ]; then
109117
${MVN_CMD} test -DfailIfNoTests=false -DtrimStackTrace=false -D test=com.starrocks.sql.dump.QueryDumpRegressionTest -D dumpJsonConfig=$1
110118
else
111-
if [ ${RUN} -eq 1 ]; then
112-
echo "Run the specified class: $1"
113-
# eg:
114-
# sh run-fe-ut.sh --run com.starrocks.utframe.Demo
115-
# sh run-fe-ut.sh --run com.starrocks.utframe.Demo#testCreateDbAndTable+test2
116-
# set trimStackTrace to false to show full stack when debugging specified class or case
117-
${MVN_CMD} test -DfailIfNoTests=false -DtrimStackTrace=false -D test=$1
119+
if [ ${RUN_SPECIFIED_TEST} -eq 1 ]; then
120+
echo "Run test: $TEST_NAME"
121+
if [ $DRY_RUN -eq 0 ]; then
122+
# ./run-fe-ut.sh --test com.starrocks.utframe.Demo
123+
# ./run-fe-ut.sh --test com.starrocks.utframe.Demo#testCreateDbAndTable+test2
124+
# set trimStackTrace to false to show full stack when debugging specified class or case
125+
${MVN_CMD} test -DfailIfNoTests=false -DtrimStackTrace=false -D test=$TEST_NAME
126+
fi
118127
else
119-
echo "Run Frontend UT"
120-
${MVN_CMD} test -DfailIfNoTests=false -DtrimStackTrace=false
128+
echo "Run All Frontend Unittests"
129+
if [ $DRY_RUN -eq 0 ]; then
130+
${MVN_CMD} test -DfailIfNoTests=false -DtrimStackTrace=false
131+
fi
121132
fi
122133
fi

0 commit comments

Comments
 (0)