TD-15554.py 20.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15

import taos
import sys
import time
import socket
import os
import threading

from util.log import *
from util.sql import *
from util.cases import *
from util.dnodes import *

class TDTestCase:
    hostname = socket.gethostname()
P
plum-lihui 已提交
16

D
dapan1121 已提交
17 18 19 20
    #clientCfgDict = {'qdebugflag':'143'}
    #updatecfgDict = {'clientCfg': {}, 'qdebugflag':'143'}
    #updatecfgDict["clientCfg"]  = clientCfgDict
    #print ("===================: ", updatecfgDict)
21

22
    def init(self, conn, logSql, replicaVar=1):
23
        self.replicaVar = int(replicaVar)
24 25 26 27 28 29 30 31 32 33 34 35 36
        tdLog.debug(f"start to excute {__file__}")
        #tdSql.init(conn.cursor())
        tdSql.init(conn.cursor(), logSql)  # output sql.txt file

    def getBuildPath(self):
        selfPath = os.path.dirname(os.path.realpath(__file__))

        if ("community" in selfPath):
            projPath = selfPath[:selfPath.find("community")]
        else:
            projPath = selfPath[:selfPath.find("tests")]

        for root, dirs, files in os.walk(projPath):
wafwerar's avatar
wafwerar 已提交
37
            if ("taosd" in files or "taosd.exe" in files):
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
                rootRealPath = os.path.dirname(os.path.realpath(root))
                if ("packaging" not in rootRealPath):
                    buildPath = root[:len(root) - len("/build/bin")]
                    break
        return buildPath

    def newcur(self,cfg,host,port):
        user = "root"
        password = "taosdata"
        con=taos.connect(host=host, user=user, password=password, config=cfg ,port=port)
        cur=con.cursor()
        print(cur)
        return cur

    def create_tables(self,tsql, dbName,vgroups,stbName,ctbNum,rowsPerTbl):
53
        tsql.execute("create database if not exists %s vgroups %d wal_retention_period 3600"%(dbName, vgroups))
54 55 56 57 58 59 60 61 62 63 64 65
        tsql.execute("use %s" %dbName)
        tsql.execute("create table  if not exists %s (ts timestamp, c1 bigint, c2 binary(16)) tags(t1 int)"%stbName)
        pre_create = "create table"
        sql = pre_create
        #tdLog.debug("doing create one  stable %s and %d  child table in %s  ..." %(stbname, count ,dbname))
        for i in range(ctbNum):
            sql += " %s_%d using %s tags(%d)"%(stbName,i,stbName,i+1)
            if (i > 0) and (i%100 == 0):
                tsql.execute(sql)
                sql = pre_create
        if sql != pre_create:
            tsql.execute(sql)
G
Ganlin Zhao 已提交
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
        tdLog.debug("complete to create database[%s], stable[%s] and %d child tables" %(dbName, stbName, ctbNum))
        return

    def insert_data(self,tsql,dbName,stbName,ctbNum,rowsPerTbl,batchNum,startTs):
        tdLog.debug("start to insert data ............")
        tsql.execute("use %s" %dbName)
        pre_insert = "insert into "
        sql = pre_insert

        #tdLog.debug("doing insert data into stable:%s rows:%d ..."%(stbName, allRows))
        for i in range(ctbNum):
            sql += " %s_%d values "%(stbName,i)
            for j in range(rowsPerTbl):
                sql += "(%d, %d, 'tmqrow_%d') "%(startTs + j, j, j)
                if (j > 0) and ((j%batchNum == 0) or (j == rowsPerTbl - 1)):
                    tsql.execute(sql)
                    if j < rowsPerTbl - 1:
                        sql = "insert into %s_%d values " %(stbName,i)
                    else:
                        sql = "insert into "
        #end sql
        if sql != pre_insert:
            #print("insert sql:%s"%sql)
            tsql.execute(sql)
        tdLog.debug("insert data ............ [OK]")
        return
G
Ganlin Zhao 已提交
93

94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
    def prepareEnv(self, **parameterDict):
        print ("input parameters:")
        print (parameterDict)
        # create new connector for my thread
        tsql=self.newcur(parameterDict['cfg'], 'localhost', 6030)
        self.create_tables(tsql,\
                           parameterDict["dbName"],\
                           parameterDict["vgroups"],\
                           parameterDict["stbName"],\
                           parameterDict["ctbNum"],\
                           parameterDict["rowsPerTbl"])

        self.insert_data(tsql,\
                         parameterDict["dbName"],\
                         parameterDict["stbName"],\
                         parameterDict["ctbNum"],\
                         parameterDict["rowsPerTbl"],\
                         parameterDict["batchNum"],\
G
Ganlin Zhao 已提交
112
                         parameterDict["startTs"])
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
        return


    def tmqCase1(self, cfgPath, buildPath):
        tdLog.printNoPrefix("======== test case 1: Produce while consume")
        tdLog.info("step 1: create database, stb, ctb and insert data")
        # create and start thread
        parameterDict = {'cfg':        '',       \
                         'dbName':     'db',     \
                         'vgroups':    1,        \
                         'stbName':    'stb',    \
                         'ctbNum':     10,       \
                         'rowsPerTbl': 1000,     \
                         'batchNum':   100,      \
                         'startTs':    1640966400000}  # 2022-01-01 00:00:00.000
        parameterDict['cfg'] = cfgPath
        prepareEnvThread = threading.Thread(target=self.prepareEnv, kwargs=parameterDict)
        prepareEnvThread.start()
        time.sleep(2)
G
Ganlin Zhao 已提交
132

133 134
        # wait stb ready
        while 1:
G
Ganlin Zhao 已提交
135 136
            tdSql.query("show %s.stables"%parameterDict['dbName'])
            if tdSql.getRows() == 1:
137 138 139 140 141 142
                break
            else:
                time.sleep(1)

        tdLog.info("create topics from super table")
        topicFromStb = 'topic_stb_column'
G
Ganlin Zhao 已提交
143 144
        topicFromCtb = 'topic_ctb_column'

145 146
        tdSql.execute("create topic %s as select ts, c1, c2 from %s.%s" %(topicFromStb, parameterDict['dbName'], parameterDict['stbName']))
        tdSql.execute("create topic %s as select ts, c1, c2 from %s.%s_0" %(topicFromCtb, parameterDict['dbName'], parameterDict['stbName']))
G
Ganlin Zhao 已提交
147

148 149 150 151 152
        time.sleep(1)
        tdSql.query("show topics")
        #tdSql.checkRows(2)
        topic1 = tdSql.getData(0 , 0)
        topic2 = tdSql.getData(1 , 0)
G
Ganlin Zhao 已提交
153

154 155
        tdLog.info("show topics: %s, %s"%(topic1, topic2))
        if topic1 != topicFromStb and topic1 != topicFromCtb:
G
Ganlin Zhao 已提交
156
            tdLog.exit("topic error1")
157
        if topic2 != topicFromStb and topic2 != topicFromCtb:
G
Ganlin Zhao 已提交
158 159
            tdLog.exit("topic error2")

160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
        tdLog.info("create consume info table and consume result table")
        cdbName = parameterDict["dbName"]
        tdSql.query("create table consumeinfo (ts timestamp, consumerid int, topiclist binary(1024), keylist binary(1024), expectmsgcnt bigint, ifcheckdata int)")
        tdSql.query("create table consumeresult (ts timestamp, consumerid int, consummsgcnt bigint, consumrowcnt bigint, checkresult int)")

        consumerId   = 0
        expectrowcnt = parameterDict["rowsPerTbl"] * parameterDict["ctbNum"]
        topicList    = topicFromStb
        ifcheckdata  = 0
        keyList      = 'group.id:cgrp1,\
                        enable.auto.commit:false,\
                        auto.commit.interval.ms:6000,\
                        auto.offset.reset:earliest'
        sql = "insert into consumeinfo values "
        sql += "(now, %d, '%s', '%s', %d, %d)"%(consumerId, topicList, keyList, expectrowcnt, ifcheckdata)
        tdSql.query(sql)
G
Ganlin Zhao 已提交
176

177 178 179 180 181 182 183 184 185 186
        tdLog.info("check stb if there are data")
        while 1:
            tdSql.query("select count(*) from %s"%parameterDict["stbName"])
            #tdLog.info("row: %d, %l64d, %l64d"%(tdSql.getData(0, 1),tdSql.getData(0, 2),tdSql.getData(0, 3))
            countOfStb = tdSql.getData(0, 0)
            if countOfStb != 0:
                tdLog.info("count from stb: %d"%countOfStb)
                break
            else:
                time.sleep(1)
G
Ganlin Zhao 已提交
187

188 189 190 191
        tdLog.info("start consume processor")
        pollDelay = 5
        showMsg   = 1
        showRow   = 1
G
Ganlin Zhao 已提交
192

193
        shellCmd = 'nohup ' + buildPath + '/build/bin/tmq_sim -c ' + cfgPath
G
Ganlin Zhao 已提交
194 195
        shellCmd += " -y %d -d %s -g %d -r %d -w %s "%(pollDelay, parameterDict["dbName"], showMsg, showRow, cdbName)
        shellCmd += "> /dev/null 2>&1 &"
196
        tdLog.info(shellCmd)
G
Ganlin Zhao 已提交
197
        os.system(shellCmd)
198 199 200

        # wait for data ready
        prepareEnvThread.join()
G
Ganlin Zhao 已提交
201

202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
        tdLog.info("insert process end, and start to check consume result")
        while 1:
            tdSql.query("select * from consumeresult")
            #tdLog.info("row: %d, %l64d, %l64d"%(tdSql.getData(0, 1),tdSql.getData(0, 2),tdSql.getData(0, 3))
            if tdSql.getRows() == 1:
                break
            else:
                time.sleep(5)

        tdLog.info("consumer result: %d, %d"%(tdSql.getData(0 , 2), tdSql.getData(0 , 3)))
        tdSql.checkData(0 , 1, consumerId)
         # mulit rows and mulit tables in one sql, this num of msg is not sure
        #tdSql.checkData(0 , 2, expectmsgcnt)
        tdSql.checkData(0 , 3, expectrowcnt)

        tdSql.query("drop topic %s"%topicFromStb)
        tdSql.query("drop topic %s"%topicFromCtb)

        tdLog.printNoPrefix("======== test case 1 end ...... ")
G
Ganlin Zhao 已提交
221

222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
    def tmqCase2(self, cfgPath, buildPath):
        tdLog.printNoPrefix("======== test case 2: add child table with consuming ")
        # create and start thread
        parameterDict = {'cfg':        '',       \
                         'dbName':     'db2',    \
                         'vgroups':    1,        \
                         'stbName':    'stb',    \
                         'ctbNum':     10,       \
                         'rowsPerTbl': 10000,   \
                         'batchNum':   100,       \
                         'startTs':    1640966400000}  # 2022-01-01 00:00:00.000
        parameterDict['cfg'] = cfgPath

        prepareEnvThread = threading.Thread(target=self.prepareEnv, kwargs=parameterDict)
        prepareEnvThread.start()
G
Ganlin Zhao 已提交
237

238 239
        # wait db ready
        while 1:
X
Xiaoyu Wang 已提交
240
            tdSql.query("select * from information_schema.ins_databases")
G
Ganlin Zhao 已提交
241 242
            if tdSql.getRows() == 4:
                print (tdSql.getData(0,0), tdSql.getData(1,0),tdSql.getData(2,0),)
243 244 245
                break
            else:
                time.sleep(1)
G
Ganlin Zhao 已提交
246

247 248 249 250
        tdSql.query("use %s"%parameterDict['dbName'])
        # wait stb ready
        while 1:
            tdSql.query("show %s.stables"%parameterDict['dbName'])
G
Ganlin Zhao 已提交
251
            if tdSql.getRows() == 1:
252 253 254 255 256 257 258
                break
            else:
                time.sleep(1)

        tdLog.info("create topics from super table")
        topicFromStb = 'topic_stb_column2'
        topicFromCtb = 'topic_ctb_column2'
G
Ganlin Zhao 已提交
259

260 261
        tdSql.execute("create topic %s as select ts, c1, c2 from %s.%s" %(topicFromStb, parameterDict['dbName'], parameterDict['stbName']))
        tdSql.execute("create topic %s as select ts, c1, c2 from %s.%s_0" %(topicFromCtb, parameterDict['dbName'], parameterDict['stbName']))
G
Ganlin Zhao 已提交
262

263 264 265 266 267 268
        time.sleep(1)
        tdSql.query("show topics")
        topic1 = tdSql.getData(0 , 0)
        topic2 = tdSql.getData(1 , 0)
        tdLog.info("show topics: %s, %s"%(topic1, topic2))
        if topic1 != topicFromStb and topic1 != topicFromCtb:
G
Ganlin Zhao 已提交
269
            tdLog.exit("topic error1")
270
        if topic2 != topicFromStb and topic2 != topicFromCtb:
G
Ganlin Zhao 已提交
271 272
            tdLog.exit("topic error2")

273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
        tdLog.info("create consume info table and consume result table")
        cdbName = parameterDict["dbName"]
        tdSql.query("create table %s.consumeinfo (ts timestamp, consumerid int, topiclist binary(1024), keylist binary(1024), expectmsgcnt bigint, ifcheckdata int)"%cdbName)
        tdSql.query("create table %s.consumeresult (ts timestamp, consumerid int, consummsgcnt bigint, consumrowcnt bigint, checkresult int)"%cdbName)

        rowsOfNewCtb = 1000
        consumerId   = 0
        expectrowcnt = parameterDict["rowsPerTbl"]  * parameterDict["ctbNum"] + rowsOfNewCtb
        topicList    = topicFromStb
        ifcheckdata  = 0
        keyList      = 'group.id:cgrp1,\
                        enable.auto.commit:false,\
                        auto.commit.interval.ms:6000,\
                        auto.offset.reset:earliest'
        sql = "insert into consumeinfo values "
        sql += "(now, %d, '%s', '%s', %d, %d)"%(consumerId, topicList, keyList, expectrowcnt, ifcheckdata)
        tdSql.query(sql)
G
Ganlin Zhao 已提交
290

291 292 293 294 295 296 297 298 299 300
        tdLog.info("check stb if there are data")
        while 1:
            tdSql.query("select count(*) from %s"%parameterDict["stbName"])
            #tdLog.info("row: %d, %l64d, %l64d"%(tdSql.getData(0, 1),tdSql.getData(0, 2),tdSql.getData(0, 3))
            countOfStb = tdSql.getData(0, 0)
            if countOfStb != 0:
                tdLog.info("count from stb: %d"%countOfStb)
                break
            else:
                time.sleep(1)
G
Ganlin Zhao 已提交
301

302 303 304 305
        tdLog.info("start consume processor")
        pollDelay = 5
        showMsg   = 1
        showRow   = 1
G
Ganlin Zhao 已提交
306

307
        shellCmd = 'nohup ' + buildPath + '/build/bin/tmq_sim -c ' + cfgPath
G
Ganlin Zhao 已提交
308 309
        shellCmd += " -y %d -d %s -g %d -r %d -w %s "%(pollDelay, parameterDict["dbName"], showMsg, showRow, cdbName)
        shellCmd += "> /dev/null 2>&1 &"
310
        tdLog.info(shellCmd)
G
Ganlin Zhao 已提交
311
        os.system(shellCmd)
312 313 314 315 316 317 318 319 320 321 322 323

        # create new child table and insert data
        newCtbName = 'newctb'
        tdSql.query("create table %s.%s using %s.%s tags(9999)"%(parameterDict["dbName"], newCtbName, parameterDict["dbName"], parameterDict["stbName"]))
        startTs = parameterDict["startTs"]
        for j in range(rowsOfNewCtb):
            sql = "insert into %s.%s values (%d, %d, 'tmqrow_%d') "%(parameterDict["dbName"], newCtbName, startTs + j, j, j)
            tdSql.execute(sql)
        tdLog.debug("insert data into new child table ............ [OK]")

        # wait for data ready
        prepareEnvThread.join()
G
Ganlin Zhao 已提交
324

325 326 327 328 329 330 331 332 333 334 335
        tdLog.info("insert process end, and start to check consume result")
        while 1:
            tdSql.query("select * from consumeresult")
            #tdLog.info("row: %d, %l64d, %l64d"%(tdSql.getData(0, 1),tdSql.getData(0, 2),tdSql.getData(0, 3))
            if tdSql.getRows() == 1:
                break
            else:
                time.sleep(5)

        tdSql.checkData(0 , 1, consumerId)
        tdSql.checkData(0 , 3, expectrowcnt)
G
Ganlin Zhao 已提交
336

337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
        tdSql.query("drop topic %s"%topicFromStb)
        tdSql.query("drop topic %s"%topicFromCtb)

        tdLog.printNoPrefix("======== test case 2 end ...... ")

    def tmqCase3(self, cfgPath, buildPath):
        tdLog.printNoPrefix("======== test case 3: tow topics, each contains a stable, \
                             but at the beginning, no ctables in the stable of one topic,\
                             after starting consumer, create ctables ")
        # create and start thread
        parameterDict = {'cfg':        '',       \
                         'dbName':     'db3',    \
                         'vgroups':    1,        \
                         'stbName':    'stb',    \
                         'ctbNum':     10,       \
                         'rowsPerTbl': 30000,    \
                         'batchNum':   100,       \
                         'startTs':    1640966400000}  # 2022-01-01 00:00:00.000
        parameterDict['cfg'] = cfgPath

        prepareEnvThread = threading.Thread(target=self.prepareEnv, kwargs=parameterDict)
        prepareEnvThread.start()
G
Ganlin Zhao 已提交
359

360 361
        # wait db ready
        while 1:
X
Xiaoyu Wang 已提交
362
            tdSql.query("select * from information_schema.ins_databases")
G
Ganlin Zhao 已提交
363 364
            if tdSql.getRows() == 4:
                print (tdSql.getData(0,0), tdSql.getData(1,0),tdSql.getData(2,0),)
365 366 367
                break
            else:
                time.sleep(1)
G
Ganlin Zhao 已提交
368

369 370 371 372
        tdSql.query("use %s"%parameterDict['dbName'])
        # wait stb ready
        while 1:
            tdSql.query("show %s.stables"%parameterDict['dbName'])
G
Ganlin Zhao 已提交
373
            if tdSql.getRows() == 1:
374 375 376
                break
            else:
                time.sleep(1)
G
Ganlin Zhao 已提交
377

378 379 380 381 382 383 384 385 386 387 388
        tdLog.info("create stable2 for the seconde topic")
        parameterDict2 = {'cfg':        '',       \
                         'dbName':     'db3',    \
                         'vgroups':    1,        \
                         'stbName':    'stb2',    \
                         'ctbNum':     10,       \
                         'rowsPerTbl': 30000,    \
                         'batchNum':   100,       \
                         'startTs':    1640966400000}  # 2022-01-01 00:00:00.000
        parameterDict2['cfg'] = cfgPath
        tdSql.execute("create stable  if not exists %s.%s (ts timestamp, c1 bigint, c2 binary(16)) tags(t1 int)"%(parameterDict2['dbName'], parameterDict2['stbName']))
G
Ganlin Zhao 已提交
389

390 391 392
        tdLog.info("create topics from super table")
        topicFromStb  = 'topic_stb_column3'
        topicFromStb2 = 'topic_stb_column32'
G
Ganlin Zhao 已提交
393

394 395
        tdSql.execute("create topic %s as select ts, c1, c2 from %s.%s" %(topicFromStb, parameterDict['dbName'], parameterDict['stbName']))
        tdSql.execute("create topic %s as select ts, c1, c2 from %s.%s" %(topicFromStb2, parameterDict2['dbName'], parameterDict2['stbName']))
G
Ganlin Zhao 已提交
396

397 398 399 400 401
        tdSql.query("show topics")
        topic1 = tdSql.getData(0 , 0)
        topic2 = tdSql.getData(1 , 0)
        tdLog.info("show topics: %s, %s"%(topic1, topic2))
        if topic1 != topicFromStb and topic1 != topicFromStb2:
G
Ganlin Zhao 已提交
402
            tdLog.exit("topic error1")
403
        if topic2 != topicFromStb and topic2 != topicFromStb2:
G
Ganlin Zhao 已提交
404 405
            tdLog.exit("topic error2")

406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
        tdLog.info("create consume info table and consume result table")
        cdbName = parameterDict["dbName"]
        tdSql.query("create table %s.consumeinfo (ts timestamp, consumerid int, topiclist binary(1024), keylist binary(1024), expectmsgcnt bigint, ifcheckdata int)"%cdbName)
        tdSql.query("create table %s.consumeresult (ts timestamp, consumerid int, consummsgcnt bigint, consumrowcnt bigint, checkresult int)"%cdbName)

        consumerId   = 0
        expectrowcnt = parameterDict["rowsPerTbl"]  * parameterDict["ctbNum"] +  parameterDict2["rowsPerTbl"]  * parameterDict2["ctbNum"]
        topicList    = topicFromStb + ',' + topicFromStb2
        ifcheckdata  = 0
        keyList      = 'group.id:cgrp1,\
                        enable.auto.commit:false,\
                        auto.commit.interval.ms:6000,\
                        auto.offset.reset:earliest'
        sql = "insert into consumeinfo values "
        sql += "(now, %d, '%s', '%s', %d, %d)"%(consumerId, topicList, keyList, expectrowcnt, ifcheckdata)
        tdSql.query(sql)
G
Ganlin Zhao 已提交
422

423 424 425 426 427 428 429 430 431 432
        tdLog.info("check stb if there are data")
        while 1:
            tdSql.query("select count(*) from %s"%parameterDict["stbName"])
            #tdLog.info("row: %d, %l64d, %l64d"%(tdSql.getData(0, 1),tdSql.getData(0, 2),tdSql.getData(0, 3))
            countOfStb = tdSql.getData(0, 0)
            if countOfStb != 0:
                tdLog.info("count from stb: %d"%countOfStb)
                break
            else:
                time.sleep(1)
G
Ganlin Zhao 已提交
433

434 435 436 437
        tdLog.info("start consume processor")
        pollDelay = 5
        showMsg   = 1
        showRow   = 1
G
Ganlin Zhao 已提交
438

439
        shellCmd = 'nohup ' + buildPath + '/build/bin/tmq_sim -c ' + cfgPath
G
Ganlin Zhao 已提交
440 441
        shellCmd += " -y %d -d %s -g %d -r %d -w %s "%(pollDelay, parameterDict["dbName"], showMsg, showRow, cdbName)
        shellCmd += "> /dev/null 2>&1 &"
442
        tdLog.info(shellCmd)
G
Ganlin Zhao 已提交
443
        os.system(shellCmd)
444 445 446 447 448 449 450 451

        # start the second thread to create new child table and insert data
        prepareEnvThread2 = threading.Thread(target=self.prepareEnv, kwargs=parameterDict2)
        prepareEnvThread2.start()

        # wait for data ready
        prepareEnvThread.join()
        prepareEnvThread2.join()
G
Ganlin Zhao 已提交
452

453 454 455 456 457 458 459 460 461 462 463
        tdLog.info("insert process end, and start to check consume result")
        while 1:
            tdSql.query("select * from consumeresult")
            #tdLog.info("row: %d, %l64d, %l64d"%(tdSql.getData(0, 1),tdSql.getData(0, 2),tdSql.getData(0, 3))
            if tdSql.getRows() == 1:
                break
            else:
                time.sleep(5)

        tdSql.checkData(0 , 1, consumerId)
        tdSql.checkData(0 , 3, expectrowcnt)
G
Ganlin Zhao 已提交
464

465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481
        tdSql.query("drop topic %s"%topicFromStb)
        tdSql.query("drop topic %s"%topicFromStb2)

        tdLog.printNoPrefix("======== test case 3 end ...... ")

    def run(self):
        tdSql.prepare()

        buildPath = self.getBuildPath()
        if (buildPath == ""):
            tdLog.exit("taosd not found!")
        else:
            tdLog.info("taosd found in %s" % buildPath)
        cfgPath = buildPath + "/../sim/psim/cfg"
        tdLog.info("cfgPath: %s" % cfgPath)

        #self.tmqCase1(cfgPath, buildPath)
G
Ganlin Zhao 已提交
482
        #self.tmqCase2(cfgPath, buildPath)
483 484 485 486 487 488 489 490
        self.tmqCase3(cfgPath, buildPath)

    def stop(self):
        tdSql.close()
        tdLog.success(f"{__file__} successfully executed")

tdCases.addLinux(__file__, TDTestCase())
tdCases.addWindows(__file__, TDTestCase())