320 lines
9.2 KiB
Bash
Executable File
320 lines
9.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright 2019 PingCAP, Inc.
|
|
#
|
|
# 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.
|
|
|
|
TIDB_TEST_STORE_NAME=$TIDB_TEST_STORE_NAME
|
|
TIKV_PATH=$TIKV_PATH
|
|
|
|
build=1
|
|
explain_test="./explain_test"
|
|
importer=""
|
|
tidb_server=""
|
|
portgenerator=""
|
|
explain_test_log="./explain-test.out"
|
|
tests=""
|
|
record=0
|
|
record_case=""
|
|
create=0
|
|
create_case=""
|
|
stats="s"
|
|
collation_opt=2
|
|
|
|
set -eu
|
|
trap 'set +e; PIDS=$(jobs -p); [ -n "$PIDS" ] && kill -9 $PIDS' EXIT
|
|
# make tests stable time zone wise
|
|
export TZ="Asia/Shanghai"
|
|
|
|
function help_message()
|
|
{
|
|
echo "Usage: $0 [options]
|
|
|
|
-h: Print this help message.
|
|
|
|
-d <y|Y|n|N|b|B>: \"y\" or \"Y\" for only enabling the new collation during test.
|
|
\"n\" or \"N\" for only disabling the new collation during test.
|
|
\"b\" or \"B\" for both tests [default].
|
|
Enable/Disable the new collation during the explain test.
|
|
|
|
-s <tidb-server-path>: Use tidb-server in <tidb-server-path> for testing.
|
|
eg. \"./run-tests.sh -s ./explaintest_tidb-server\"
|
|
|
|
-b <y|Y|n|N>: \"y\" or \"Y\" for building test binaries [default \"y\" if this option is not specified].
|
|
\"n\" or \"N\" for not to build.
|
|
The building of tidb-server will be skiped if \"-s <tidb-server-path>\" is provided.
|
|
The building of portgenerator will be skiped if \"-s <portgenerator-path>\" is provided.
|
|
|
|
-r <test-name>|all: Run tests in file \"t/<test-name>.test\" and record result to file \"r/<test-name>.result\".
|
|
\"all\" for running all tests and record their results.
|
|
|
|
-t <test-name>: Run tests in file \"t/<test-name>.test\".
|
|
This option will be ignored if \"-r <test-name>\" is provided.
|
|
Run all tests if this option is not provided.
|
|
|
|
-c <test-name>|all: Create data according to creating statements in file \"t/<test-name>.test\" and save stats in \"s/<test-name>_tableName.json\".
|
|
<test-name> must has a suffix of '_stats'.
|
|
\"all\" for creating stats of all tests.
|
|
|
|
-i <importer-path>: Use importer in <importer-path> for creating data.
|
|
|
|
-p <portgenerator-path>: Use port generator in <portgenerator-path> for generating port numbers.
|
|
|
|
"
|
|
}
|
|
|
|
function build_importer()
|
|
{
|
|
importer="./importer"
|
|
echo "building importer binary: $importer"
|
|
rm -rf $importer
|
|
GO111MODULE=on go build -o $importer github.com/pingcap/tidb/cmd/importer
|
|
}
|
|
|
|
function build_portgenerator()
|
|
{
|
|
portgenerator="./portgenerator"
|
|
echo "building portgenerator binary: $portgenerator"
|
|
rm -rf $portgenerator
|
|
GO111MODULE=on go build -o $portgenerator github.com/pingcap/tidb/cmd/portgenerator
|
|
}
|
|
|
|
|
|
function build_tidb_server()
|
|
{
|
|
tidb_server="./explaintest_tidb-server"
|
|
echo "building tidb-server binary: $tidb_server"
|
|
rm -rf $tidb_server
|
|
GO111MODULE=on go build -race -o $tidb_server github.com/pingcap/tidb/tidb-server
|
|
}
|
|
|
|
function build_explain_test()
|
|
{
|
|
echo "building explain-test binary: $explain_test"
|
|
rm -rf $explain_test
|
|
GO111MODULE=on go build -o $explain_test
|
|
}
|
|
|
|
function extract_stats()
|
|
{
|
|
echo "extracting statistics: $stats"
|
|
rm -rf $stats
|
|
unzip -qq s.zip
|
|
}
|
|
|
|
while getopts "t:s:r:b:d:c:i:h:p" opt; do
|
|
case $opt in
|
|
t)
|
|
tests="$OPTARG"
|
|
;;
|
|
s)
|
|
tidb_server="$OPTARG"
|
|
;;
|
|
r)
|
|
record=1
|
|
record_case="$OPTARG"
|
|
;;
|
|
b)
|
|
case $OPTARG in
|
|
y|Y)
|
|
build=1
|
|
;;
|
|
n|N)
|
|
build=0
|
|
;;
|
|
*)
|
|
help_messge 1>&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
;;
|
|
d)
|
|
case $OPTARG in
|
|
y|Y)
|
|
collation_opt=1
|
|
;;
|
|
n|N)
|
|
collation_opt=0
|
|
;;
|
|
*)
|
|
help_messge 1>&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
;;
|
|
h)
|
|
help_message
|
|
exit 0
|
|
;;
|
|
c)
|
|
create=1
|
|
create_case="$OPTARG"
|
|
;;
|
|
i)
|
|
importer="$OPTARG"
|
|
;;
|
|
p)
|
|
portgenerator="$OPTARG"
|
|
;;
|
|
*)
|
|
help_message 1>&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
extract_stats
|
|
|
|
if [ $build -eq 1 ]; then
|
|
if [ -z "$tidb_server" ]; then
|
|
build_tidb_server
|
|
else
|
|
echo "skip building tidb-server, using existing binary: $tidb_server"
|
|
fi
|
|
if [[ -z "$portgenerator" ]]; then
|
|
build_portgenerator
|
|
else
|
|
echo "skip building portgenerator, using existing binary: $portgenerator"
|
|
fi
|
|
if [[ -z "$importer" && $create -eq 1 ]]; then
|
|
build_importer
|
|
elif [[ -n "$importer" ]]; then
|
|
echo "skip building importer, using existing binary: $importer"
|
|
fi
|
|
build_explain_test
|
|
else
|
|
if [ -z "$tidb_server" ]; then
|
|
tidb_server="./explaintest_tidb-server"
|
|
if [[ ! -f "$tidb_server" ]]; then
|
|
build_tidb_server
|
|
else
|
|
echo "skip building tidb-server, using existing binary: $tidb_server"
|
|
fi
|
|
fi
|
|
if [ -z "$explain_test" ]; then
|
|
explain_test="./explain_test"
|
|
if [[ ! -f "$explain_test" ]]; then
|
|
build_explain_test
|
|
else
|
|
echo "skip building explaintest, using existing binary: $explain_test"
|
|
fi
|
|
fi
|
|
if [ -z "$importer" ]; then
|
|
importer="./importer"
|
|
if [[ ! -f "$importer" ]]; then
|
|
build_importer
|
|
else
|
|
echo "skip building importer, using existing binary: $importer"
|
|
fi
|
|
fi
|
|
if [ -z "$portgenerator" ]; then
|
|
portgenerator="./portgenerator"
|
|
if [[ ! -f "$portgenerator" ]]; then
|
|
build_portgenerator
|
|
else
|
|
echo "skip building portgenerator, using existing binary: $portgenerator"
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
rm -rf $explain_test_log
|
|
|
|
ports=()
|
|
for port in $($portgenerator -count 2); do
|
|
ports+=("$port")
|
|
done
|
|
|
|
port=${ports[0]}
|
|
status=${ports[1]}
|
|
|
|
function start_tidb_server()
|
|
{
|
|
config_file="config.toml"
|
|
if [[ $enabled_new_collation = 0 ]]; then
|
|
config_file="disable_new_collation.toml"
|
|
fi
|
|
echo "start tidb-server, log file: $explain_test_log"
|
|
if [ "${TIDB_TEST_STORE_NAME}" = "tikv" ]; then
|
|
$tidb_server -P "$port" -status "$status" -config $config_file -store tikv -path "${TIKV_PATH}" > $explain_test_log 2>&1 &
|
|
SERVER_PID=$!
|
|
else
|
|
$tidb_server -P "$port" -status "$status" -config $config_file -store unistore -path "" > $explain_test_log 2>&1 &
|
|
SERVER_PID=$!
|
|
fi
|
|
echo "tidb-server(PID: $SERVER_PID) started"
|
|
}
|
|
|
|
function run_explain_test()
|
|
{
|
|
coll_disabled="false"
|
|
coll_msg="enabled new collation"
|
|
if [[ $enabled_new_collation = 0 ]]; then
|
|
coll_disabled="true"
|
|
coll_msg="disabled new collation"
|
|
fi
|
|
if [ $record -eq 1 ]; then
|
|
if [ "$record_case" = 'all' ]; then
|
|
echo "record all cases"
|
|
$explain_test -port "$port" -status "$status" --collation-disable=$coll_disabled --record --log-level=error
|
|
else
|
|
echo "record result for case: \"$record_case\""
|
|
$explain_test -port "$port" -status "$status" --collation-disable=$coll_disabled --record $record_case --log-level=error
|
|
fi
|
|
elif [ $create -eq 1 ]; then
|
|
if [ "$create_case" = 'all' ]; then
|
|
echo "create all cases"
|
|
$explain_test -port "$port" -status "$status" --collation-disable=$coll_disabled --create --log-level=error
|
|
else
|
|
echo "create result for case: \"$create_case\""
|
|
$explain_test -port "$port" -status "$status" --collation-disable=$coll_disabled --create $create_case --log-level=error
|
|
fi
|
|
else
|
|
if [ -z "$tests" ]; then
|
|
echo "run all explain test cases ($coll_msg)"
|
|
else
|
|
echo "run explain test cases($coll_msg): $tests"
|
|
fi
|
|
$explain_test -port "$port" -status "$status" --collation-disable=$coll_disabled --log-level=error $tests
|
|
fi
|
|
}
|
|
|
|
function check_data_race() {
|
|
race=`grep 'DATA RACE' $explain_test_log || true`
|
|
if [ ! -z "$race" ]; then
|
|
echo "tidb-server DATA RACE!"
|
|
cat $explain_test_log
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
enabled_new_collation=""
|
|
|
|
if [[ $collation_opt = 0 || $collation_opt = 2 ]]; then
|
|
enabled_new_collation=0
|
|
start_tidb_server
|
|
sleep 5
|
|
run_explain_test
|
|
kill -9 $SERVER_PID
|
|
check_data_race
|
|
fi
|
|
|
|
if [[ $collation_opt = 1 || $collation_opt = 2 ]]; then
|
|
enabled_new_collation=1
|
|
start_tidb_server
|
|
sleep 5
|
|
run_explain_test
|
|
kill -9 $SERVER_PID
|
|
check_data_race
|
|
fi
|
|
|
|
echo "explaintest passed!"
|