Merge pull request #7394 from taosdata/test/TD-6035-d
[TD-6035]add connector test in CI
This commit is contained in:
commit
d365042f3e
|
@ -224,6 +224,26 @@ pipeline {
|
||||||
steps {
|
steps {
|
||||||
timeout(time: 55, unit: 'MINUTES'){
|
timeout(time: 55, unit: 'MINUTES'){
|
||||||
pre_test()
|
pre_test()
|
||||||
|
sh '''
|
||||||
|
rm -rf /var/lib/taos/*
|
||||||
|
rm -rf /var/log/taos/*
|
||||||
|
nohup taosd >/dev/null &
|
||||||
|
sleep 10
|
||||||
|
'''
|
||||||
|
sh '''
|
||||||
|
cd ${WKC}/tests/examples/nodejs
|
||||||
|
npm install td2.0-connector > /dev/null 2>&1
|
||||||
|
node nodejsChecker.js host=localhost
|
||||||
|
'''
|
||||||
|
sh '''
|
||||||
|
cd ${WKC}/tests/examples/C#/taosdemo
|
||||||
|
mcs -out:taosdemo *.cs > /dev/null 2>&1
|
||||||
|
echo '' |./taosdemo
|
||||||
|
'''
|
||||||
|
sh '''
|
||||||
|
cd ${WKC}/tests/gotest
|
||||||
|
bash batchtest.sh
|
||||||
|
'''
|
||||||
sh '''
|
sh '''
|
||||||
cd ${WKC}/tests
|
cd ${WKC}/tests
|
||||||
./test-all.sh b1fq
|
./test-all.sh b1fq
|
||||||
|
|
|
@ -15,7 +15,8 @@ script_dir="$(dirname $(readlink -f $0))"
|
||||||
###### step 3: start build
|
###### step 3: start build
|
||||||
cd $script_dir
|
cd $script_dir
|
||||||
rm -f go.*
|
rm -f go.*
|
||||||
go mod init demotest
|
go mod init demotest > /dev/null 2>&1
|
||||||
go build
|
go mod tidy > /dev/null 2>&1
|
||||||
|
go build > /dev/null 2>&1
|
||||||
sleep 1s
|
sleep 1s
|
||||||
./demotest -h $1 -p $2
|
./demotest -h $1 -p $2
|
||||||
|
|
|
@ -296,22 +296,17 @@ python3 ./test.py -f client/noConnectionErrorTest.py
|
||||||
python3 testCompress.py
|
python3 testCompress.py
|
||||||
python3 testNoCompress.py
|
python3 testNoCompress.py
|
||||||
python3 testMinTablesPerVnode.py
|
python3 testMinTablesPerVnode.py
|
||||||
|
|
||||||
|
|
||||||
python3 queryCount.py
|
python3 queryCount.py
|
||||||
python3 ./test.py -f query/queryGroupbyWithInterval.py
|
python3 ./test.py -f query/queryGroupbyWithInterval.py
|
||||||
python3 client/twoClients.py
|
python3 client/twoClients.py
|
||||||
python3 test.py -f query/queryInterval.py
|
python3 test.py -f query/queryInterval.py
|
||||||
python3 test.py -f query/queryFillTest.py
|
python3 test.py -f query/queryFillTest.py
|
||||||
|
|
||||||
# subscribe
|
# subscribe
|
||||||
python3 test.py -f subscribe/singlemeter.py
|
python3 test.py -f subscribe/singlemeter.py
|
||||||
#python3 test.py -f subscribe/stability.py
|
#python3 test.py -f subscribe/stability.py
|
||||||
python3 test.py -f subscribe/supertable.py
|
python3 test.py -f subscribe/supertable.py
|
||||||
|
|
||||||
# topic
|
# topic
|
||||||
python3 ./test.py -f topic/topicQuery.py
|
python3 ./test.py -f topic/topicQuery.py
|
||||||
|
|
||||||
#======================p3-end===============
|
#======================p3-end===============
|
||||||
#======================p4-start===============
|
#======================p4-start===============
|
||||||
|
|
||||||
|
@ -374,8 +369,6 @@ python3 ./test.py -f insert/insert_locking.py
|
||||||
python3 ./test.py -f alter/alter_debugFlag.py
|
python3 ./test.py -f alter/alter_debugFlag.py
|
||||||
python3 ./test.py -f query/queryBetweenAnd.py
|
python3 ./test.py -f query/queryBetweenAnd.py
|
||||||
python3 ./test.py -f tag_lite/alter_tag.py
|
python3 ./test.py -f tag_lite/alter_tag.py
|
||||||
|
|
||||||
|
|
||||||
python3 test.py -f tools/taosdemoAllTest/TD-4985/query-limit-offset.py
|
python3 test.py -f tools/taosdemoAllTest/TD-4985/query-limit-offset.py
|
||||||
python3 test.py -f tools/taosdemoAllTest/TD-5213/insert4096columns_not_use_taosdemo.py
|
python3 test.py -f tools/taosdemoAllTest/TD-5213/insert4096columns_not_use_taosdemo.py
|
||||||
python3 test.py -f tools/taosdemoAllTest/TD-5213/insertSigcolumnsNum4096.py
|
python3 test.py -f tools/taosdemoAllTest/TD-5213/insertSigcolumnsNum4096.py
|
||||||
|
|
|
@ -12,7 +12,7 @@ IN_TDINTERNAL="community"
|
||||||
|
|
||||||
function stopTaosd {
|
function stopTaosd {
|
||||||
echo "Stop taosd"
|
echo "Stop taosd"
|
||||||
sudo systemctl stop taosd
|
sudo systemctl stop taosd || echo 'no sudo or systemctl or stop fail'
|
||||||
PID=`ps -ef|grep -w taosd | grep -v grep | awk '{print $2}'`
|
PID=`ps -ef|grep -w taosd | grep -v grep | awk '{print $2}'`
|
||||||
while [ -n "$PID" ]
|
while [ -n "$PID" ]
|
||||||
do
|
do
|
||||||
|
|
Loading…
Reference in New Issue