test-all.sh 13.2 KB
Newer Older
sangshuduo's avatar
sangshuduo 已提交
1 2
#!/bin/bash

3 4 5 6 7 8
# Color setting
RED='\033[0;31m'
GREEN='\033[1;32m'
GREEN_DARK='\033[0;32m'
GREEN_UNDERLINE='\033[4;32m'
NC='\033[0m'
L
liuyq-617 已提交
9

10 11 12
tests_dir=`pwd`
IN_TDINTERNAL="community"

P
Ping Xiao 已提交
13 14
function stopTaosd {
	echo "Stop taosd"
P
Ping Xiao 已提交
15
  sudo systemctl stop taosd
P
Ping Xiao 已提交
16 17 18 19 20 21 22 23 24
  PID=`ps -ef|grep -w taosd | grep -v grep | awk '{print $2}'`
	while [ -n "$PID" ]
	do
    pkill -TERM -x taosd
    sleep 1
  	PID=`ps -ef|grep -w taosd | grep -v grep | awk '{print $2}'`
	done
}

L
liuyq-617 已提交
25 26
function dohavecore(){
  corefile=`find $corepath -mmin 1`  
L
liuyq-617 已提交
27 28
  core_file=`echo $corefile|cut -d " " -f2`
  echo $core_file
L
liuyq-617 已提交
29
  proc=`echo $corefile|cut -d "_" -f3`
L
liuyq-617 已提交
30
  if [ -n "$corefile" ];then
31
    echo 'taosd or taos has generated core'
L
fix  
liuyq-617 已提交
32
    tar -zcPf $corepath'taos_'`date "+%Y_%m_%d_%H_%M_%S"`.tar.gz /usr/local/taos/
33
    if [[ $1 == 1 ]];then
L
liuyq-617 已提交
34
      echo '\n'|gdb /usr/local/taos/bin/$proc $core_file -ex "bt 10" -ex quit
35 36
      exit 8
    fi
L
liuyq-617 已提交
37
  fi
38
}
L
liuyq-617 已提交
39

40 41
function runSimCaseOneByOne {
  while read -r line; do
P
Ping Xiao 已提交
42
    if [[ $line =~ ^./test.sh* ]] || [[ $line =~ ^run* ]]; then
43
			case=`echo $line | grep sim$ |awk '{print $NF}'`    
P
Ping Xiao 已提交
44
      start_time=`date +%s`      
P
Ping Xiao 已提交
45
      date +%F\ %T | tee -a out.log
L
liuyq-617 已提交
46 47 48
      if [[ "$tests_dir" == *"$IN_TDINTERNAL"* ]]; then
        echo -n $case
        ./test.sh -f $case > /dev/null 2>&1 && \
L
liuyq-617 已提交
49
        ( grep -q 'script.*'$case'.*failed.*, err.*lineNum' ../../../sim/tsim/log/taoslog0.0 && echo -e "${RED} failed${NC}" | tee -a out.log  ||  echo -e "${GREEN} success${NC}" | tee -a out.log )|| \
L
liuyq-617 已提交
50 51 52 53 54
        ( grep -q 'script.*success.*m$' ../../../sim/tsim/log/taoslog0.0 && echo -e "${GREEN} success${NC}" | tee -a out.log )  || \
        echo -e "${RED} failed${NC}" | tee -a out.log
      else
        echo -n $case
        ./test.sh -f $case > /dev/null 2>&1 && \
L
liuyq-617 已提交
55
        ( grep -q 'script.*'$case'.*failed.*, err.*lineNum' ../../sim/tsim/log/taoslog0.0 && echo -e "${RED} failed${NC}" | tee -a out.log  ||  echo -e "${GREEN} success${NC}" | tee -a out.log )|| \
L
liuyq-617 已提交
56 57 58
        ( grep -q 'script.*success.*m$' ../../sim/tsim/log/taoslog0.0 && echo -e "${GREEN} success${NC}" | tee -a out.log )  || \
        echo -e "${RED} failed${NC}" | tee -a out.log
      fi
L
liuyq-617 已提交
59
      out_log=`tail -1 out.log  `
L
liuyq-617 已提交
60 61 62
      # if [[ $out_log =~ 'failed' ]];then
      #   exit 8
      # fi
S
Shuduo Sang 已提交
63 64
      end_time=`date +%s`
      echo execution time of $case was `expr $end_time - $start_time`s. | tee -a out.log
L
liuyq-617 已提交
65
      dohavecore 0
66 67 68
    fi
  done < $1
}
L
liuyq-617 已提交
69
function runSimCaseOneByOnefq {
L
liuyq-617 已提交
70 71 72 73 74

  start=`sed -n "/$1-start/=" jenkins/basic.txt`
  end=`sed -n "/$1-end/=" jenkins/basic.txt`  
  for ((i=$start;i<=$end;i++)) ; do
    line=`sed -n "$i"p jenkins/basic.txt`
L
liuyq-617 已提交
75 76 77
    if [[ $line =~ ^./test.sh* ]] || [[ $line =~ ^run* ]]; then
			case=`echo $line | grep sim$ |awk '{print $NF}'`

78
      start_time=`date +%s`    
P
Ping Xiao 已提交
79
      date +%F\ %T | tee -a out.log
80
      if [[ "$tests_dir" == *"$IN_TDINTERNAL"* ]]; then
L
liuyq-617 已提交
81
        echo -n $case
82
        ./test.sh -f $case > ../../../sim/case.log 2>&1 && \
L
liuyq-617 已提交
83
        ( grep -q 'script.*'$case'.*failed.*, err.*lineNum' ../../../sim/tsim/log/taoslog0.0 && echo -e "${RED} failed${NC}" | tee -a out.log  ||  echo -e "${GREEN} success${NC}" | tee -a out.log )|| \
L
liuyq-617 已提交
84
        ( grep -q 'script.*success.*m$' ../../../sim/tsim/log/taoslog0.0 && echo -e "${GREEN} success${NC}" | tee -a out.log )  || \
85
        ( echo -e "${RED} failed${NC}" | tee -a out.log && echo '=====================log=====================' && cat ../../../sim/case.log )
86
      else
L
liuyq-617 已提交
87
        echo -n $case
88
        ./test.sh -f $case > ../../sim/case.log 2>&1 && \
L
liuyq-617 已提交
89
        ( grep -q 'script.*'$case'.*failed.*, err.*lineNum' ../../sim/tsim/log/taoslog0.0 && echo -e "${RED} failed${NC}" | tee -a out.log  ||  echo -e "${GREEN} success${NC}" | tee -a out.log )|| \
L
liuyq-617 已提交
90
        ( grep -q 'script.*success.*m$' ../../sim/tsim/log/taoslog0.0 && echo -e "${GREEN} success${NC}" | tee -a out.log )  || \
91
        ( echo -e "${RED} failed${NC}" | tee -a out.log && echo '=====================log=====================' &&  cat ../../sim/case.log )
92 93
      fi
      
L
liuyq-617 已提交
94 95
      out_log=`tail -1 out.log  `
      if [[ $out_log =~ 'failed' ]];then
96
        if [[ "$tests_dir" == *"$IN_TDINTERNAL"* ]]; then
L
liuyq-617 已提交
97
          cp -r ../../../sim ~/sim_`date "+%Y_%m_%d_%H:%M:%S"`
98
          rm -rf ../../../sim/case.log
99
        else 
L
liuyq-617 已提交
100
          cp -r ../../sim ~/sim_`date "+%Y_%m_%d_%H:%M:%S" `
101
          rm -rf ../../sim/case.log
102
        fi
L
liuyq-617 已提交
103
        dohavecore $2
L
liuyq-617 已提交
104 105 106 107
        exit 8
      fi
      end_time=`date +%s`
      echo execution time of $case was `expr $end_time - $start_time`s. | tee -a out.log
L
liuyq-617 已提交
108
      dohavecore $2
L
liuyq-617 已提交
109
    fi
L
liuyq-617 已提交
110
  done 
111 112
  rm -rf ../../../sim/case.log
  rm -rf ../../sim/case.log
L
liuyq-617 已提交
113
}
114 115 116 117

function runPyCaseOneByOne {
  while read -r line; do
    if [[ $line =~ ^python.* ]]; then
118
      if [[ $line != *sleep* ]]; then
L
liuyq-617 已提交
119 120 121 122 123 124
        
        if [[ $line =~ '-r' ]];then
          case=`echo $line|awk '{print $4}'`
        else
          case=`echo $line|awk '{print $NF}'`
        fi
S
Shuduo Sang 已提交
125
        start_time=`date +%s`
P
Ping Xiao 已提交
126
        date +%F\ %T | tee -a pytest-out.log
L
liuyq-617 已提交
127
        echo -n $case
128
        $line > /dev/null 2>&1 && \
L
liuyq-617 已提交
129 130
          echo -e "${GREEN} success${NC}" | tee -a pytest-out.log || \
          echo -e "${RED} failed${NC}" | tee -a pytest-out.log
S
Shuduo Sang 已提交
131
        end_time=`date +%s`
L
liuyq-617 已提交
132
        out_log=`tail -1 pytest-out.log  `
L
liuyq-617 已提交
133 134 135
        # if [[ $out_log =~ 'failed' ]];then
        #   exit 8
        # fi
S
Shuduo Sang 已提交
136
        echo execution time of $case was `expr $end_time - $start_time`s. | tee -a pytest-out.log
137 138 139
      else
        $line > /dev/null 2>&1
      fi
L
liuyq-617 已提交
140
      dohavecore 0
141 142 143
    fi
  done < $1
}
L
liuyq-617 已提交
144 145 146 147 148 149 150 151 152 153 154
function runPyCaseOneByOnefq() {
  cd $tests_dir/pytest
  if [[ $1 =~ full ]] ; then
    start=1
    end=`sed -n '$=' fulltest.sh`
  else
    start=`sed -n "/$1-start/=" fulltest.sh`
    end=`sed -n "/$1-end/=" fulltest.sh`
  fi
  for ((i=$start;i<=$end;i++)) ; do
    line=`sed -n "$i"p fulltest.sh`
L
liuyq-617 已提交
155 156 157 158 159 160 161 162 163
    if [[ $line =~ ^python.* ]]; then
      if [[ $line != *sleep* ]]; then
        
        if [[ $line =~ '-r' ]];then
          case=`echo $line|awk '{print $4}'`
        else
          case=`echo $line|awk '{print $NF}'`
        fi
        start_time=`date +%s`
P
Ping Xiao 已提交
164
        date +%F\ %T | tee -a pytest-out.log
L
liuyq-617 已提交
165
        echo -n $case
166
        $line > ../../sim/case.log 2>&1 && \
L
liuyq-617 已提交
167
          echo -e "${GREEN} success${NC}" | tee -a pytest-out.log || \
168
          echo -e "${RED} failed${NC}" | tee -a pytest-out.log 
L
liuyq-617 已提交
169 170 171
        end_time=`date +%s`
        out_log=`tail -1 pytest-out.log  `
        if [[ $out_log =~ 'failed' ]];then
L
liuyq-617 已提交
172
          cp -r ../../sim ~/sim_`date "+%Y_%m_%d_%H:%M:%S" `
173 174 175
          echo '=====================log====================='
          cat ../../sim/case.log
          rm -rf ../../sim/case.log
176
          dohavecore $2
L
liuyq-617 已提交
177 178 179 180 181 182
          exit 8
        fi
        echo execution time of $case was `expr $end_time - $start_time`s. | tee -a pytest-out.log
      else
        $line > /dev/null 2>&1
      fi
L
liuyq-617 已提交
183
      dohavecore $2
L
liuyq-617 已提交
184
    fi
L
liuyq-617 已提交
185
  done 
186
  rm -rf ../../sim/case.log
L
liuyq-617 已提交
187
}
188

189 190
totalFailed=0
totalPyFailed=0
191
totalJDBCFailed=0
P
Ping Xiao 已提交
192
totalUnitFailed=0
sangshuduo's avatar
sangshuduo 已提交
193

L
liuyq-617 已提交
194
corepath=`grep -oP '.*(?=core_)' /proc/sys/kernel/core_pattern||grep -oP '.*(?=core-)' /proc/sys/kernel/core_pattern`
195
if [ "$2" != "jdbc" ] && [ "$2" != "python" ] && [ "$2" != "unit" ]; then
196
  echo "### run TSIM test case ###"
S
Shuduo Sang 已提交
197
  cd $tests_dir/script
198

199 200 201 202 203 204
  [ -f out.log ] && rm -f out.log
  if [ "$1" == "cron" ]; then
    echo "### run TSIM regression test ###"
    runSimCaseOneByOne regressionSuite.sim
  elif [ "$1" == "full" ]; then
    echo "### run TSIM full test ###"
P
Ping Xiao 已提交
205
    runSimCaseOneByOne jenkins/basic.txt
L
liuyq-617 已提交
206 207
  elif [ "$1" == "b1" ]; then
    echo "### run TSIM b1 test ###"
L
liuyq-617 已提交
208 209 210 211 212
    runSimCaseOneByOnefq b1 0
    runSimCaseOneByOnefq b4 0
    runSimCaseOneByOnefq b5 0
    runSimCaseOneByOnefq b6 0
    runSimCaseOneByOnefq b7 0
L
liuyq-617 已提交
213 214
  elif [ "$1" == "b2" ]; then
    echo "### run TSIM b2 test ###"
L
liuyq-617 已提交
215
    runSimCaseOneByOnefq b2 0
L
liuyq-617 已提交
216 217
  elif [ "$1" == "b3" ]; then
    echo "### run TSIM b3 test ###"
L
liuyq-617 已提交
218
    runSimCaseOneByOnefq b3 0
L
liuyq-617 已提交
219 220
  elif [ "$1" == "b1fq" ]; then
    echo "### run TSIM b1 test ###"
L
liuyq-617 已提交
221
    runSimCaseOneByOnefq b1 1
L
liuyq-617 已提交
222 223
  elif [ "$1" == "b2fq" ]; then
    echo "### run TSIM b2 test ###"
L
liuyq-617 已提交
224
    runSimCaseOneByOnefq b2 1
L
liuyq-617 已提交
225 226
  elif [ "$1" == "b3fq" ]; then
    echo "### run TSIM b3 test ###"
L
liuyq-617 已提交
227
    runSimCaseOneByOnefq b3 1
L
liuyq-617 已提交
228 229
  elif [ "$1" == "b4fq" ]; then
    echo "### run TSIM b4 test ###"
L
liuyq-617 已提交
230
    runSimCaseOneByOnefq b4 1
L
liuyq-617 已提交
231 232
  elif [ "$1" == "b5fq" ]; then
    echo "### run TSIM b5 test ###"
L
liuyq-617 已提交
233
    runSimCaseOneByOnefq b5 1
L
liuyq-617 已提交
234 235
  elif [ "$1" == "b6fq" ]; then
    echo "### run TSIM b6 test ###"
L
liuyq-617 已提交
236
    runSimCaseOneByOnefq b6 1
L
liuyq-617 已提交
237 238
  elif [ "$1" == "b7fq" ]; then
    echo "### run TSIM b7 test ###"
L
liuyq-617 已提交
239
    runSimCaseOneByOnefq b7 1
S
Shuduo Sang 已提交
240
  elif [ "$1" == "smoke" ] || [ -z "$1" ]; then
241 242 243
    echo "### run TSIM smoke test ###"
    runSimCaseOneByOne basicSuite.sim
  fi
244

245 246
  totalSuccess=`grep 'success' out.log | wc -l`
  totalBasic=`grep success out.log | grep Suite | wc -l`
247

248 249 250
  if [ "$totalSuccess" -gt "0" ]; then
    totalSuccess=`expr $totalSuccess - $totalBasic`
  fi
sangshuduo's avatar
sangshuduo 已提交
251

S
Shuduo Sang 已提交
252
  echo -e "\n${GREEN} ### Total $totalSuccess TSIM case(s) succeed! ### ${NC}"
253

254 255
  totalFailed=`grep 'failed\|fault' out.log | wc -l`
# echo -e "${RED} ### Total $totalFailed TSIM case(s) failed! ### ${NC}"
256

257
  if [ "$totalFailed" -ne "0" ]; then
S
Shuduo Sang 已提交
258
    echo -e "\n${RED} ### Total $totalFailed TSIM case(s) failed! ### ${NC}"
sangshuduo's avatar
sangshuduo 已提交
259

260 261
#  exit $totalFailed
  fi
sangshuduo's avatar
sangshuduo 已提交
262 263
fi

264
if [ "$2" != "sim" ] && [ "$2" != "jdbc" ] && [ "$2" != "unit" ]; then
265
  echo "### run Python test case ###"
266

S
Shuduo Sang 已提交
267
  cd $tests_dir
268

S
Shuduo Sang 已提交
269
  if [[ "$tests_dir" == *"$IN_TDINTERNAL"* ]]; then
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
    cd ../..
  else
    cd ../
  fi

  TOP_DIR=`pwd`
  TAOSLIB_DIR=`find . -name "libtaos.so"|grep -w lib|head -n1`
  if [[ "$TAOSLIB_DIR" == *"$IN_TDINTERNAL"* ]]; then
    LIB_DIR=`find . -name "libtaos.so"|grep -w lib|head -n1|cut -d '/' --fields=2,3,4,5`
  else
    LIB_DIR=`find . -name "libtaos.so"|grep -w lib|head -n1|cut -d '/' --fields=2,3,4`
  fi

  export LD_LIBRARY_PATH=$TOP_DIR/$LIB_DIR:$LD_LIBRARY_PATH

S
Shuduo Sang 已提交
285
  cd $tests_dir/pytest
286 287 288 289 290 291 292 293 294

  [ -f pytest-out.log ] && rm -f pytest-out.log

  if [ "$1" == "cron" ]; then
    echo "### run Python regression test ###"
    runPyCaseOneByOne regressiontest.sh
  elif [ "$1" == "full" ]; then
    echo "### run Python full test ###"
    runPyCaseOneByOne fulltest.sh
L
liuyq-617 已提交
295
  elif [ "$1" == "pytest" ]; then
L
liuyq-617 已提交
296 297
    echo "### run Python full test ###"
    runPyCaseOneByOne fulltest.sh
L
liuyq-617 已提交
298 299
  elif [ "$1" == "pytestfq" ]; then
    echo "### run Python full test ###"
L
liuyq-617 已提交
300
    runPyCaseOneByOnefq full 0
301 302
  elif [ "$1" == "p1" ]; then
    echo "### run Python_1 test ###"
L
liuyq-617 已提交
303
    runPyCaseOneByOnefq p1 1
304 305
  elif [ "$1" == "p2" ]; then
    echo "### run Python_2 test ###"
L
liuyq-617 已提交
306
    runPyCaseOneByOnefq p2 1
L
liuyq-617 已提交
307 308
  elif [ "$1" == "p3" ]; then
    echo "### run Python_3 test ###"
L
liuyq-617 已提交
309
    runPyCaseOneByOnefq p3 1 
L
liuyq-617 已提交
310 311
  elif [ "$1" == "p4" ]; then
    echo "### run Python_4 test ###"
L
liuyq-617 已提交
312
    runPyCaseOneByOnefq p4 1
L
liuyq-617 已提交
313 314
  elif [ "$1" == "b2" ] || [ "$1" == "b3" ]; then
    exit $(($totalFailed + $totalPyFailed))
S
Shuduo Sang 已提交
315
  elif [ "$1" == "smoke" ] || [ -z "$1" ]; then
316 317 318
    echo "### run Python smoke test ###"
    runPyCaseOneByOne smoketest.sh
  fi
319
  totalPySuccess=`grep 'success' pytest-out.log | wc -l`
320 321

  if [ "$totalPySuccess" -gt "0" ]; then
S
Shuduo Sang 已提交
322
    echo -e "\n${GREEN} ### Total $totalPySuccess python case(s) succeed! ### ${NC}"
323 324 325 326
  fi

  totalPyFailed=`grep 'failed\|fault' pytest-out.log | wc -l`
  if [ "$totalPyFailed" -ne "0" ]; then
S
Shuduo Sang 已提交
327
    echo -e "\n${RED} ### Total $totalPyFailed python case(s) failed! ### ${NC}"
328
#  exit $totalPyFailed
329
  fi
sangshuduo's avatar
sangshuduo 已提交
330 331
fi

332

333 334
if [ "$2" != "sim" ] && [ "$2" != "python" ] && [ "$2" != "unit" ] && [ "$1" == "full" ]; then
  echo "### run JDBC test cases ###"
335

P
Ping Xiao 已提交
336
  cd $tests_dir
337 338 339 340 341 342 343

  if [[ "$tests_dir" == *"$IN_TDINTERNAL"* ]]; then
    cd ../../
  else
    cd ../
  fi

P
Ping Xiao 已提交
344
  pwd
345
  cd debug/
P
change  
Ping Xiao 已提交
346
  
P
Ping Xiao 已提交
347
  stopTaosd
348
  rm -rf /var/lib/taos/*
349 350
  nohup build/bin/taosd -c /etc/taos/ > /dev/null 2>&1 &
  sleep 30
P
change  
Ping Xiao 已提交
351
  
352
  cd $tests_dir/../src/connector/jdbc  
P
Ping Xiao 已提交
353
  
P
change  
Ping Xiao 已提交
354
  mvn test > jdbc-out.log 2>&1
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
  tail -n 20 jdbc-out.log

  cases=`grep 'Tests run' jdbc-out.log | awk 'END{print $3}'`
  totalJDBCCases=`echo ${cases/%,}`
  failed=`grep 'Tests run' jdbc-out.log | awk 'END{print $5}'`
  JDBCFailed=`echo ${failed/%,}`
  error=`grep 'Tests run' jdbc-out.log | awk 'END{print $7}'`
  JDBCError=`echo ${error/%,}`
  
  totalJDBCFailed=`expr $JDBCFailed + $JDBCError`
  totalJDBCSuccess=`expr $totalJDBCCases - $totalJDBCFailed`

  if [ "$totalJDBCSuccess" -gt "0" ]; then
    echo -e "\n${GREEN} ### Total $totalJDBCSuccess JDBC case(s) succeed! ### ${NC}"
  fi
  
  if [ "$totalJDBCFailed" -ne "0" ]; then
    echo -e "\n${RED} ### Total $totalJDBCFailed JDBC case(s) failed! ### ${NC}"
  fi
  dohavecore 1
fi

377 378 379 380 381 382 383 384 385 386 387 388 389 390
if [ "$2" != "sim" ] && [ "$2" != "python" ] && [ "$2" != "jdbc" ] && [ "$1" == "full" ]; then
  echo "### run Unit tests ###"  

  stopTaosd
  cd $tests_dir

  if [[ "$tests_dir" == *"$IN_TDINTERNAL"* ]]; then
    cd ../../
  else
    cd ../
  fi

  pwd
  cd debug/build/bin
391
  rm -rf /var/lib/taos/*
392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
  nohup ./taosd -c /etc/taos/ > /dev/null 2>&1 &
  sleep 30
  
  pwd
  ./queryTest > unittest-out.log 2>&1
  tail -n 20 unittest-out.log

  totalUnitTests=`grep "Running" unittest-out.log | awk '{print $3}'`  
  totalUnitSuccess=`grep 'PASSED' unittest-out.log | awk '{print $4}'`
  totalUnitFailed=`expr $totalUnitTests - $totalUnitSuccess`

  if [ "$totalUnitSuccess" -gt "0" ]; then
    echo -e "\n${GREEN} ### Total $totalUnitSuccess Unit test succeed! ### ${NC}"
  fi
  
  if [ "$totalUnitFailed" -ne "0" ]; then
    echo -e "\n${RED} ### Total $totalUnitFailed Unit test failed! ### ${NC}"
  fi
  dohavecore 1
fi


exit $(($totalFailed + $totalPyFailed + $totalJDBCFailed + $totalUnitFailed))