basic5.py 25.1 KB
Newer Older
P
plum-lihui 已提交
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()
wafwerar's avatar
wafwerar 已提交
16 17 18 19 20 21
    if (platform.system().lower() == 'windows' and not tdDnodes.dnodes[0].remoteIP == ""):
        try:
            config = eval(tdDnodes.dnodes[0].remoteIP)
            hostname = config["host"]
        except Exception:
            hostname = tdDnodes.dnodes[0].remoteIP
P
plum-lihui 已提交
22 23 24 25 26 27
    #rpcDebugFlagVal = '143'
    #clientCfgDict = {'serverPort': '', 'firstEp': '', 'secondEp':'', 'rpcDebugFlag':'135', 'fqdn':''}
    #clientCfgDict["rpcDebugFlag"]  = rpcDebugFlagVal
    #updatecfgDict = {'clientCfg': {}, 'serverPort': '', 'firstEp': '', 'secondEp':'', 'rpcDebugFlag':'135', 'fqdn':''}
    #updatecfgDict["rpcDebugFlag"] = rpcDebugFlagVal
    #print ("===================: ", updatecfgDict)
P
plum-lihui 已提交
28

29
    def init(self, conn, logSql, replicaVar=1):
30
        self.replicaVar = int(replicaVar)
P
plum-lihui 已提交
31
        tdLog.debug(f"start to excute {__file__}")
32 33
        tdSql.init(conn.cursor())
        #tdSql.init(conn.cursor(), logSql)  # output sql.txt file
P
plum-lihui 已提交
34 35 36 37 38 39 40 41 42 43

    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 已提交
44
            if ("taosd" in files or "taosd.exe" in files):
P
plum-lihui 已提交
45 46 47 48 49 50
                rootRealPath = os.path.dirname(os.path.realpath(root))
                if ("packaging" not in rootRealPath):
                    buildPath = root[:len(root) - len("/build/bin")]
                    break
        return buildPath

P
plum-lihui 已提交
51 52 53 54 55 56 57 58 59
    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):
60
        tsql.execute("create database if not exists %s vgroups %d wal_retention_period 3600"%(dbName, vgroups))
P
plum-lihui 已提交
61
        tsql.execute("use %s" %dbName)
P
plum-lihui 已提交
62
        tsql.execute("create table  if not exists %s (ts timestamp, c1 bigint, c2 binary(16)) tags(t1 int)"%stbName)
P
plum-lihui 已提交
63 64 65 66 67 68
        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):
P
plum-lihui 已提交
69
                tsql.execute(sql)
P
plum-lihui 已提交
70 71
                sql = pre_create
        if sql != pre_create:
P
plum-lihui 已提交
72
            tsql.execute(sql)
G
Ganlin Zhao 已提交
73

P
plum-lihui 已提交
74 75 76
        tdLog.debug("complete to create database[%s], stable[%s] and %d child tables" %(dbName, stbName, ctbNum))
        return

P
plum-lihui 已提交
77
    def insert_data(self,tsql,dbName,stbName,ctbNum,rowsPerTbl,batchNum,startTs):
P
plum-lihui 已提交
78
        tdLog.debug("start to insert data ............")
P
plum-lihui 已提交
79
        tsql.execute("use %s" %dbName)
P
plum-lihui 已提交
80 81 82 83 84 85 86 87
        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)
P
plum-lihui 已提交
88
                if (j > 0) and ((j%batchNum == 0) or (j == rowsPerTbl - 1)):
P
plum-lihui 已提交
89
                    tsql.execute(sql)
P
plum-lihui 已提交
90 91 92 93
                    if j < rowsPerTbl - 1:
                        sql = "insert into %s_%d values " %(stbName,i)
                    else:
                        sql = "insert into "
P
plum-lihui 已提交
94 95
        #end sql
        if sql != pre_insert:
P
plum-lihui 已提交
96
            #print("insert sql:%s"%sql)
P
plum-lihui 已提交
97
            tsql.execute(sql)
P
plum-lihui 已提交
98 99
        tdLog.debug("insert data ............ [OK]")
        return
G
Ganlin Zhao 已提交
100

P
plum-lihui 已提交
101 102 103
    def prepareEnv(self, **parameterDict):
        print ("input parameters:")
        print (parameterDict)
P
plum-lihui 已提交
104 105 106 107
        # create new connector for my thread
        tsql=self.newcur(parameterDict['cfg'], 'localhost', 6030)
        self.create_tables(tsql,\
                           parameterDict["dbName"],\
P
plum-lihui 已提交
108 109 110 111 112
                           parameterDict["vgroups"],\
                           parameterDict["stbName"],\
                           parameterDict["ctbNum"],\
                           parameterDict["rowsPerTbl"])

P
plum-lihui 已提交
113 114 115 116 117 118
        self.insert_data(tsql,\
                         parameterDict["dbName"],\
                         parameterDict["stbName"],\
                         parameterDict["ctbNum"],\
                         parameterDict["rowsPerTbl"],\
                         parameterDict["batchNum"],\
G
Ganlin Zhao 已提交
119
                         parameterDict["startTs"])
P
plum-lihui 已提交
120
        return
P
plum-lihui 已提交
121 122


P
plum-lihui 已提交
123
    def tmqCase1(self, cfgPath, buildPath):
124
        tdLog.printNoPrefix("======== test case 1: Produce while consume")
P
plum-lihui 已提交
125 126
        tdLog.info("step 1: create database, stb, ctb and insert data")
        # create and start thread
P
plum-lihui 已提交
127 128
        parameterDict = {'cfg':        '',       \
                         'dbName':     'db',     \
P
plum-lihui 已提交
129 130 131
                         'vgroups':    1,        \
                         'stbName':    'stb',    \
                         'ctbNum':     10,       \
132 133
                         'rowsPerTbl': 1000,     \
                         'batchNum':   100,      \
P
plum-lihui 已提交
134
                         'startTs':    1640966400000}  # 2022-01-01 00:00:00.000
P
plum-lihui 已提交
135
        parameterDict['cfg'] = cfgPath
P
plum-lihui 已提交
136 137
        prepareEnvThread = threading.Thread(target=self.prepareEnv, kwargs=parameterDict)
        prepareEnvThread.start()
wafwerar's avatar
wafwerar 已提交
138
        prepareEnvThread.join()
G
Ganlin Zhao 已提交
139

P
plum-lihui 已提交
140 141
        # wait stb ready
        while 1:
G
Ganlin Zhao 已提交
142 143
            tdSql.query("show %s.stables"%parameterDict['dbName'])
            if tdSql.getRows() == 1:
P
plum-lihui 已提交
144
                break
P
plum-lihui 已提交
145 146
            else:
                time.sleep(1)
P
plum-lihui 已提交
147 148 149

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

152
        tdSql.execute("alter database %s wal_retention_period 3600" % (parameterDict['dbName']))
P
plum-lihui 已提交
153 154
        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 已提交
155

P
plum-lihui 已提交
156
        time.sleep(1)
P
plum-lihui 已提交
157
        tdSql.query("show topics")
P
plum-lihui 已提交
158
        #tdSql.checkRows(2)
P
plum-lihui 已提交
159 160
        topic1 = tdSql.getData(0 , 0)
        topic2 = tdSql.getData(1 , 0)
G
Ganlin Zhao 已提交
161

P
plum-lihui 已提交
162 163
        tdLog.info("show topics: %s, %s"%(topic1, topic2))
        if topic1 != topicFromStb and topic1 != topicFromCtb:
G
Ganlin Zhao 已提交
164
            tdLog.exit("topic error1")
P
plum-lihui 已提交
165
        if topic2 != topicFromStb and topic2 != topicFromCtb:
G
Ganlin Zhao 已提交
166 167
            tdLog.exit("topic error2")

P
plum-lihui 已提交
168
        tdLog.info("create consume info table and consume result table")
P
plum-lihui 已提交
169
        cdbName = parameterDict["dbName"]
P
plum-lihui 已提交
170 171 172 173
        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
P
plum-lihui 已提交
174
        expectrowcnt = parameterDict["rowsPerTbl"] * parameterDict["ctbNum"]
P
plum-lihui 已提交
175 176
        topicList    = topicFromStb
        ifcheckdata  = 0
P
plum-lihui 已提交
177 178 179 180
        keyList      = 'group.id:cgrp1,\
                        enable.auto.commit:false,\
                        auto.commit.interval.ms:6000,\
                        auto.offset.reset:earliest'
P
plum-lihui 已提交
181
        sql = "insert into consumeinfo values "
P
plum-lihui 已提交
182
        sql += "(now, %d, '%s', '%s', %d, %d)"%(consumerId, topicList, keyList, expectrowcnt, ifcheckdata)
P
plum-lihui 已提交
183
        tdSql.query(sql)
G
Ganlin Zhao 已提交
184

P
plum-lihui 已提交
185 186 187 188 189 190 191 192 193 194
        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 已提交
195

P
plum-lihui 已提交
196
        tdLog.info("start consume processor")
P
plum-lihui 已提交
197
        pollDelay = 20
P
plum-lihui 已提交
198 199
        showMsg   = 1
        showRow   = 1
G
Ganlin Zhao 已提交
200

wafwerar's avatar
wafwerar 已提交
201
        if (platform.system().lower() == 'windows'):
wafwerar's avatar
wafwerar 已提交
202
            shellCmd = 'mintty -h never -w hide ' + buildPath + '\\build\\bin\\tmq_sim.exe -c ' + cfgPath
G
Ganlin Zhao 已提交
203 204
            shellCmd += " -y %d -d %s -g %d -r %d -w %s "%(pollDelay, parameterDict["dbName"], showMsg, showRow, cdbName)
            shellCmd += "> nul 2>&1 &"
wafwerar's avatar
wafwerar 已提交
205
        else:
wafwerar's avatar
wafwerar 已提交
206
            shellCmd = 'nohup ' + buildPath + '/build/bin/tmq_sim -c ' + cfgPath
G
Ganlin Zhao 已提交
207 208
            shellCmd += " -y %d -d %s -g %d -r %d -w %s "%(pollDelay, parameterDict["dbName"], showMsg, showRow, cdbName)
            shellCmd += "> /dev/null 2>&1 &"
P
plum-lihui 已提交
209
        tdLog.info(shellCmd)
G
Ganlin Zhao 已提交
210
        os.system(shellCmd)
P
plum-lihui 已提交
211

P
plum-lihui 已提交
212
        # wait for data ready
P
plum-lihui 已提交
213
        # prepareEnvThread.join()
G
Ganlin Zhao 已提交
214

P
plum-lihui 已提交
215
        tdLog.info("insert process end, and start to check consume result")
P
plum-lihui 已提交
216 217 218 219 220
        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
P
plum-lihui 已提交
221 222 223
            else:
                time.sleep(5)

P
plum-lihui 已提交
224
        tdLog.info("consumer result: %d, %d"%(tdSql.getData(0 , 2), tdSql.getData(0 , 3)))
P
plum-lihui 已提交
225
        tdSql.checkData(0 , 1, consumerId)
P
plum-lihui 已提交
226 227
         # mulit rows and mulit tables in one sql, this num of msg is not sure
        #tdSql.checkData(0 , 2, expectmsgcnt)
P
plum-lihui 已提交
228
        tdSql.checkData(0 , 3, expectrowcnt)
P
plum-lihui 已提交
229 230 231

        tdSql.query("drop topic %s"%topicFromStb)
        tdSql.query("drop topic %s"%topicFromCtb)
P
plum-lihui 已提交
232 233

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

P
plum-lihui 已提交
235
    def tmqCase2(self, cfgPath, buildPath):
P
plum-lihui 已提交
236
        tdLog.printNoPrefix("======== test case 2: add child table with consuming ")
P
plum-lihui 已提交
237 238 239 240 241 242 243
        # create and start thread
        parameterDict = {'cfg':        '',       \
                         'dbName':     'db2',    \
                         'vgroups':    1,        \
                         'stbName':    'stb',    \
                         'ctbNum':     10,       \
                         'rowsPerTbl': 10000,   \
244
                         'batchNum':   200,       \
P
plum-lihui 已提交
245 246
                         'startTs':    1640966400000}  # 2022-01-01 00:00:00.000
        parameterDict['cfg'] = cfgPath
P
plum-lihui 已提交
247

P
plum-lihui 已提交
248 249
        prepareEnvThread = threading.Thread(target=self.prepareEnv, kwargs=parameterDict)
        prepareEnvThread.start()
wafwerar's avatar
wafwerar 已提交
250
        prepareEnvThread.join()
G
Ganlin Zhao 已提交
251

P
plum-lihui 已提交
252 253
        # wait db ready
        while 1:
X
Xiaoyu Wang 已提交
254
            tdSql.query("select * from information_schema.ins_databases")
255 256 257 258 259
            nrows = tdSql.getRows()
            index = -1
            for i in range(nrows):
                if tdSql.getData(i, 0) == parameterDict['dbName']:
                    index = i
P
plum-lihui 已提交
260
                    break
261 262
            
            if index == -1:
P
plum-lihui 已提交
263
                continue
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
            
            if tdSql.getData(index,15) == 'ready':
                print("******************** index: %d"%index)
                break
            
            time.sleep(1)
                
            # if tdSql.getRows() == 4:
            #     print ('==================================================')
            #     print (tdSql.getData(0,0), tdSql.getData(1,0),tdSql.getData(2,0))
            #     index = 0
            #     if tdSql.getData(0,0) == parameterDict['dbName']:
            #         index = 0
            #     elif tdSql.getData(1,0) == parameterDict['dbName']:
            #         index = 1
            #     elif tdSql.getData(2,0) == parameterDict['dbName']:
            #         index = 2
            #     elif tdSql.getData(3,0) == parameterDict['dbName']:
            #         index = 3
            #     else:
            #         continue

            #     if tdSql.getData(index,15) == 'ready':
            #         print("******************** index: %d"%index)
            #         break

            #     continue
            # else:
            #     time.sleep(1)
G
Ganlin Zhao 已提交
293

P
plum-lihui 已提交
294 295 296 297
        tdSql.query("use %s"%parameterDict['dbName'])
        # wait stb ready
        while 1:
            tdSql.query("show %s.stables"%parameterDict['dbName'])
G
Ganlin Zhao 已提交
298
            if tdSql.getRows() == 1:
P
plum-lihui 已提交
299 300 301
                break
            else:
                time.sleep(1)
P
plum-lihui 已提交
302

P
plum-lihui 已提交
303 304 305
        tdLog.info("create topics from super table")
        topicFromStb = 'topic_stb_column2'
        topicFromCtb = 'topic_ctb_column2'
G
Ganlin Zhao 已提交
306

P
plum-lihui 已提交
307 308
        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 已提交
309

P
plum-lihui 已提交
310 311 312 313 314 315
        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 已提交
316
            tdLog.exit("topic error1")
P
plum-lihui 已提交
317
        if topic2 != topicFromStb and topic2 != topicFromCtb:
G
Ganlin Zhao 已提交
318 319
            tdLog.exit("topic error2")

P
plum-lihui 已提交
320 321 322 323
        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)
P
plum-lihui 已提交
324

P
plum-lihui 已提交
325
        rowsOfNewCtb = 1000
P
plum-lihui 已提交
326
        consumerId   = 0
P
plum-lihui 已提交
327
        expectrowcnt = parameterDict["rowsPerTbl"]  * parameterDict["ctbNum"] + rowsOfNewCtb
P
plum-lihui 已提交
328 329 330 331 332 333 334
        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 "
P
plum-lihui 已提交
335
        sql += "(now, %d, '%s', '%s', %d, %d)"%(consumerId, topicList, keyList, expectrowcnt, ifcheckdata)
P
plum-lihui 已提交
336
        tdSql.query(sql)
G
Ganlin Zhao 已提交
337

P
plum-lihui 已提交
338 339 340 341 342 343 344 345 346 347
        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 已提交
348

P
plum-lihui 已提交
349
        tdLog.info("start consume processor")
350
        pollDelay = 100
P
plum-lihui 已提交
351 352
        showMsg   = 1
        showRow   = 1
wafwerar's avatar
wafwerar 已提交
353
        if (platform.system().lower() == 'windows'):
wafwerar's avatar
wafwerar 已提交
354
            shellCmd = 'mintty -h never -w hide ' + buildPath + '\\build\\bin\\tmq_sim.exe -c ' + cfgPath
G
Ganlin Zhao 已提交
355 356
            shellCmd += " -y %d -d %s -g %d -r %d -w %s "%(pollDelay, parameterDict["dbName"], showMsg, showRow, cdbName)
            shellCmd += "> nul 2>&1 &"
wafwerar's avatar
wafwerar 已提交
357
        else:
wafwerar's avatar
wafwerar 已提交
358
            shellCmd = 'nohup ' + buildPath + '/build/bin/tmq_sim -c ' + cfgPath
G
Ganlin Zhao 已提交
359 360
            shellCmd += " -y %d -d %s -g %d -r %d -w %s "%(pollDelay, parameterDict["dbName"], showMsg, showRow, cdbName)
            shellCmd += "> /dev/null 2>&1 &"
P
plum-lihui 已提交
361
        tdLog.info(shellCmd)
G
Ganlin Zhao 已提交
362
        os.system(shellCmd)
P
plum-lihui 已提交
363 364 365 366 367 368 369 370 371 372 373 374

        # 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 已提交
375

P
plum-lihui 已提交
376 377 378 379 380 381 382 383 384 385 386
        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 已提交
387

P
plum-lihui 已提交
388 389
        tdSql.query("drop topic %s"%topicFromStb)
        tdSql.query("drop topic %s"%topicFromCtb)
P
plum-lihui 已提交
390

P
plum-lihui 已提交
391
        tdLog.printNoPrefix("======== test case 2 end ...... ")
P
plum-lihui 已提交
392

393 394 395 396 397 398
    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':        '',       \
P
plum-lihui 已提交
399
                         'dbName':     'db3',    \
400 401 402
                         'vgroups':    1,        \
                         'stbName':    'stb',    \
                         'ctbNum':     10,       \
403 404
                         'rowsPerTbl': 10000,    \
                         'batchNum':   200,       \
405 406 407 408 409
                         'startTs':    1640966400000}  # 2022-01-01 00:00:00.000
        parameterDict['cfg'] = cfgPath

        prepareEnvThread = threading.Thread(target=self.prepareEnv, kwargs=parameterDict)
        prepareEnvThread.start()
wafwerar's avatar
wafwerar 已提交
410
        prepareEnvThread.join()
G
Ganlin Zhao 已提交
411

412 413
        # wait db ready
        while 1:
X
Xiaoyu Wang 已提交
414
            tdSql.query("select * from information_schema.ins_databases")
415 416 417 418 419
            nrows = tdSql.getRows()
            index = -1
            for i in range(nrows):
                if tdSql.getData(i, 0) == parameterDict['dbName']:
                    index = i
P
plum-lihui 已提交
420
                    break
421 422
                        
            if index == -1:
P
plum-lihui 已提交
423
                continue
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
            
            if tdSql.getData(index,15) == 'ready':
                print("******************** index: %d"%index)
                break
            
            time.sleep(1)            
            
            # if tdSql.getRows() == 5:
            #     print ('==================================================dbname: %s'%parameterDict['dbName'])
            #     print (tdSql.getData(0,0), tdSql.getData(1,0),tdSql.getData(2,0),tdSql.getData(3,0),tdSql.getData(4,0))
            #     index = 0
            #     if tdSql.getData(0,0) == parameterDict['dbName']:
            #         index = 0
            #     elif tdSql.getData(1,0) == parameterDict['dbName']:
            #         index = 1
            #     elif tdSql.getData(2,0) == parameterDict['dbName']:
            #         index = 2
            #     elif tdSql.getData(3,0) == parameterDict['dbName']:
            #         index = 3
            #     elif tdSql.getData(4,0) == parameterDict['dbName']:
            #         index = 4
            #     else:
            #         continue

            #     if tdSql.getData(index,15) == 'ready':
            #         print("******************** index: %d"%index)
            #         break

            #     continue
            # else:
            #     time.sleep(1)
G
Ganlin Zhao 已提交
455

456 457 458 459
        tdSql.query("use %s"%parameterDict['dbName'])
        # wait stb ready
        while 1:
            tdSql.query("show %s.stables"%parameterDict['dbName'])
G
Ganlin Zhao 已提交
460
            if tdSql.getRows() == 1:
461 462 463
                break
            else:
                time.sleep(1)
G
Ganlin Zhao 已提交
464

P
plum-lihui 已提交
465 466 467 468 469 470
        tdLog.info("create stable2 for the seconde topic")
        parameterDict2 = {'cfg':        '',       \
                         'dbName':     'db3',    \
                         'vgroups':    1,        \
                         'stbName':    'stb2',    \
                         'ctbNum':     10,       \
471 472
                         'rowsPerTbl': 10000,    \
                         'batchNum':   200,       \
P
plum-lihui 已提交
473 474 475
                         '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 已提交
476

477
        tdLog.info("create topics from super table")
P
plum-lihui 已提交
478 479
        topicFromStb  = 'topic_stb_column3'
        topicFromStb2 = 'topic_stb_column32'
G
Ganlin Zhao 已提交
480

481
        tdSql.execute("create topic %s as select ts, c1, c2 from %s.%s" %(topicFromStb, parameterDict['dbName'], parameterDict['stbName']))
P
plum-lihui 已提交
482
        tdSql.execute("create topic %s as select ts, c1, c2 from %s.%s" %(topicFromStb2, parameterDict2['dbName'], parameterDict2['stbName']))
G
Ganlin Zhao 已提交
483

484 485 486 487
        tdSql.query("show topics")
        topic1 = tdSql.getData(0 , 0)
        topic2 = tdSql.getData(1 , 0)
        tdLog.info("show topics: %s, %s"%(topic1, topic2))
P
plum-lihui 已提交
488
        if topic1 != topicFromStb and topic1 != topicFromStb2:
G
Ganlin Zhao 已提交
489
            tdLog.exit("topic error1")
P
plum-lihui 已提交
490
        if topic2 != topicFromStb and topic2 != topicFromStb2:
G
Ganlin Zhao 已提交
491 492
            tdLog.exit("topic error2")

493 494 495 496 497 498
        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
P
plum-lihui 已提交
499 500
        expectrowcnt = parameterDict["rowsPerTbl"]  * parameterDict["ctbNum"] +  parameterDict2["rowsPerTbl"]  * parameterDict2["ctbNum"]
        topicList    = topicFromStb + ',' + topicFromStb2
501 502 503 504 505 506 507 508
        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 已提交
509

510 511 512 513 514 515 516 517 518 519
        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 已提交
520

521
        tdLog.info("start consume processor")
522
        pollDelay = 100
523 524
        showMsg   = 1
        showRow   = 1
G
Ganlin Zhao 已提交
525

wafwerar's avatar
wafwerar 已提交
526
        if (platform.system().lower() == 'windows'):
wafwerar's avatar
wafwerar 已提交
527
            shellCmd = 'mintty -h never -w hide ' + buildPath + '\\build\\bin\\tmq_sim.exe -c ' + cfgPath
G
Ganlin Zhao 已提交
528 529
            shellCmd += " -y %d -d %s -g %d -r %d -w %s "%(pollDelay, parameterDict["dbName"], showMsg, showRow, cdbName)
            shellCmd += "> nul 2>&1 &"
wafwerar's avatar
wafwerar 已提交
530
        else:
wafwerar's avatar
wafwerar 已提交
531
            shellCmd = 'nohup ' + buildPath + '/build/bin/tmq_sim -c ' + cfgPath
G
Ganlin Zhao 已提交
532 533
            shellCmd += " -y %d -d %s -g %d -r %d -w %s "%(pollDelay, parameterDict["dbName"], showMsg, showRow, cdbName)
            shellCmd += "> /dev/null 2>&1 &"
534
        tdLog.info(shellCmd)
G
Ganlin Zhao 已提交
535
        os.system(shellCmd)
536

P
plum-lihui 已提交
537 538 539
        # start the second thread to create new child table and insert data
        prepareEnvThread2 = threading.Thread(target=self.prepareEnv, kwargs=parameterDict2)
        prepareEnvThread2.start()
540 541 542

        # wait for data ready
        prepareEnvThread.join()
P
plum-lihui 已提交
543
        prepareEnvThread2.join()
G
Ganlin Zhao 已提交
544

545 546 547 548 549 550 551 552 553 554 555
        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 已提交
556

557
        tdSql.query("drop topic %s"%topicFromStb)
P
plum-lihui 已提交
558
        tdSql.query("drop topic %s"%topicFromStb2)
559 560 561

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

P
plum-lihui 已提交
562 563 564 565 566 567 568 569 570 571
    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)
P
plum-lihui 已提交
572

P
plum-lihui 已提交
573
        self.tmqCase1(cfgPath, buildPath)
G
Ganlin Zhao 已提交
574
        self.tmqCase2(cfgPath, buildPath)
P
plum-lihui 已提交
575
        self.tmqCase3(cfgPath, buildPath)
P
plum-lihui 已提交
576 577 578 579 580 581 582

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

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