155 lines
6.7 KiB
Python
155 lines
6.7 KiB
Python
|
|
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 *
|
|
from util.common import *
|
|
sys.path.append("./7-tmq")
|
|
from tmqCommon import *
|
|
|
|
class TDTestCase:
|
|
def init(self, conn, logSql, replicaVar=1):
|
|
self.replicaVar = int(replicaVar)
|
|
tdLog.debug(f"start to excute {__file__}")
|
|
tdSql.init(conn.cursor())
|
|
#tdSql.init(conn.cursor(), logSql) # output sql.txt file
|
|
|
|
def tmqCase1(self):
|
|
tdLog.printNoPrefix("======== test case 1: ")
|
|
paraDict = {'dbName': 'db1',
|
|
'dropFlag': 1,
|
|
'event': '',
|
|
'vgroups': 4,
|
|
'stbName': 'stb',
|
|
'colPrefix': 'c',
|
|
'tagPrefix': 't',
|
|
'colSchema': [{'type': 'INT', 'count':1}, {'type': 'binary', 'len':20, 'count':1}],
|
|
'tagSchema': [{'type': 'INT', 'count':1}, {'type': 'binary', 'len':20, 'count':1}],
|
|
'ctbPrefix': 'ctb',
|
|
'ctbNum': 1,
|
|
'rowsPerTbl': 10000,
|
|
'batchNum': 10,
|
|
'startTs': 1640966400000, # 2022-01-01 00:00:00.000
|
|
'pollDelay': 10,
|
|
'showMsg': 1,
|
|
'showRow': 1}
|
|
|
|
topicNameList = ['topic1', 'topic2', 'topic3']
|
|
expectRowsList = []
|
|
tmqCom.initConsumerTable()
|
|
tdCom.create_database(tdSql, paraDict["dbName"],paraDict["dropFlag"], vgroups=4,replica=1)
|
|
tdLog.info("create stb")
|
|
tdCom.create_stable(tdSql, dbname=paraDict["dbName"],stbname=paraDict["stbName"], column_elm_list=paraDict['colSchema'], tag_elm_list=paraDict['tagSchema'])
|
|
tdLog.info("create ctb")
|
|
tdCom.create_ctable(tdSql, dbname=paraDict["dbName"],stbname=paraDict["stbName"],tag_elm_list=paraDict['tagSchema'],count=paraDict["ctbNum"], default_ctbname_prefix=paraDict['ctbPrefix'])
|
|
tdLog.info("insert data")
|
|
tmqCom.insert_data(tdSql,paraDict["dbName"],paraDict["ctbPrefix"],paraDict["ctbNum"],paraDict["rowsPerTbl"],paraDict["batchNum"],paraDict["startTs"])
|
|
tdSql.execute("insert into ctb0 values(now,1,'');")
|
|
|
|
tdLog.info("create topics from stb with filter")
|
|
queryString = "select ts,c1,c2 from %s.%s" %(paraDict['dbName'], paraDict['stbName'])
|
|
sqlString = "create topic %s as stable %s.%s" %(topicNameList[0], paraDict["dbName"],paraDict["stbName"])
|
|
tdLog.info("create topic sql: %s"%sqlString)
|
|
tdSql.execute(sqlString)
|
|
tdSql.query(queryString)
|
|
expectRowsList.append(tdSql.getRows())
|
|
|
|
# init consume info, and start tmq_sim, then check consume result
|
|
tdLog.info("insert consume info to consume processor")
|
|
consumerId = 0
|
|
expectrowcnt = paraDict["rowsPerTbl"] * paraDict["ctbNum"]
|
|
topicList = topicNameList[0]
|
|
ifcheckdata = 1
|
|
ifManualCommit = 1
|
|
keyList = 'group.id:cgrp1, enable.auto.commit:false, auto.commit.interval.ms:6000, auto.offset.reset:earliest'
|
|
tmqCom.insertConsumerInfo(consumerId, expectrowcnt,topicList,keyList,ifcheckdata,ifManualCommit)
|
|
|
|
tdLog.info("start consume processor")
|
|
tmqCom.startTmqSimProcess(paraDict['pollDelay'],paraDict["dbName"],paraDict['showMsg'], paraDict['showRow'])
|
|
|
|
tdLog.info("wait the consume result")
|
|
expectRows = 1
|
|
resultList = tmqCom.selectConsumeResult(expectRows)
|
|
|
|
if expectRowsList[0] != resultList[0]:
|
|
tdLog.info("expect consume rows: %d, act consume rows: %d"%(expectRowsList[0], resultList[0]))
|
|
tdLog.exit("0 tmq consume rows error!")
|
|
|
|
tmqCom.checkFileContent(consumerId, queryString)
|
|
|
|
# reinit consume info, and start tmq_sim, then check consume result
|
|
tmqCom.initConsumerTable()
|
|
queryString = "select ts, c1, c2 from %s.%s"%(paraDict['dbName'], paraDict['stbName'])
|
|
sqlString = "create topic %s as database %s" %(topicNameList[1], paraDict['dbName'])
|
|
tdLog.info("create topic sql: %s"%sqlString)
|
|
tdSql.execute(sqlString)
|
|
tdSql.query(queryString)
|
|
expectRowsList.append(tdSql.getRows())
|
|
|
|
consumerId = 1
|
|
topicList = topicNameList[1]
|
|
tmqCom.insertConsumerInfo(consumerId, expectrowcnt,topicList,keyList,ifcheckdata,ifManualCommit)
|
|
|
|
tdLog.info("start consume processor")
|
|
tmqCom.startTmqSimProcess(paraDict['pollDelay'],paraDict["dbName"],paraDict['showMsg'], paraDict['showRow'])
|
|
|
|
tdLog.info("wait the consume result")
|
|
expectRows = 1
|
|
resultList = tmqCom.selectConsumeResult(expectRows)
|
|
if expectRowsList[1] != resultList[0]:
|
|
tdLog.info("expect consume rows: %d, act consume rows: %d"%(expectRowsList[1], resultList[0]))
|
|
tdLog.exit("1 tmq consume rows error!")
|
|
|
|
tmqCom.checkFileContent(consumerId, queryString)
|
|
|
|
# reinit consume info, and start tmq_sim, then check consume result
|
|
tmqCom.initConsumerTable()
|
|
queryString = "select * from %s.%s"%(paraDict['dbName'], paraDict['stbName'])
|
|
sqlString = "create topic %s as %s" %(topicNameList[2], queryString)
|
|
tdLog.info("create topic sql: %s"%sqlString)
|
|
tdSql.execute(sqlString)
|
|
tdSql.query(queryString)
|
|
expectRowsList.append(tdSql.getRows())
|
|
|
|
consumerId = 2
|
|
topicList = topicNameList[2]
|
|
tmqCom.insertConsumerInfo(consumerId, expectrowcnt,topicList,keyList,ifcheckdata,ifManualCommit)
|
|
|
|
tdLog.info("start consume processor")
|
|
tmqCom.startTmqSimProcess(paraDict['pollDelay'],paraDict["dbName"],paraDict['showMsg'], paraDict['showRow'])
|
|
|
|
tdLog.info("wait the consume result")
|
|
expectRows = 1
|
|
resultList = tmqCom.selectConsumeResult(expectRows)
|
|
if expectRowsList[2] != resultList[0]:
|
|
tdLog.info("expect consume rows: %d, act consume rows: %d"%(expectRowsList[2], resultList[0]))
|
|
tdLog.exit("2 tmq consume rows error!")
|
|
|
|
tmqCom.checkFileContent(consumerId, queryString)
|
|
|
|
time.sleep(10)
|
|
for i in range(len(topicNameList)):
|
|
tdSql.query("drop topic %s"%topicNameList[i])
|
|
|
|
tdLog.printNoPrefix("======== test case 1 end ...... ")
|
|
|
|
def run(self):
|
|
tdSql.prepare()
|
|
self.tmqCase1()
|
|
|
|
def stop(self):
|
|
tdSql.close()
|
|
tdLog.success(f"{__file__} successfully executed")
|
|
|
|
event = threading.Event()
|
|
|
|
tdCases.addLinux(__file__, TDTestCase())
|
|
tdCases.addWindows(__file__, TDTestCase())
|