test : test case execute

This commit is contained in:
Alex Duan 2023-03-17 17:14:16 +08:00
parent b423314be1
commit f103fec944
2 changed files with 22 additions and 13 deletions

View File

@ -112,11 +112,6 @@ class AutoGen:
sql = f"create table {stbname} (ts timestamp, {cols}) tags({tags})"
tdSql.execute(sql)
# create stream
sql = f"create stream m_{stbname} fill_history 1 into st_{stbname} as select count(*) from {stbname} interval(100a);"
tdLog.info(f" create stable {stbname} ok. column={column_cnt} tag={tag_cnt} ")
# create child table
def create_child(self, stbname, prename, cnt):
self.child_cnt = cnt

View File

@ -11,9 +11,23 @@ import string
import time
class TDTestCase:
def init(self, conn, logSql, replicaVar=1):
tdSql.init(conn.cursor(), logSql)
def run(self):
tdLog.info("hello world.")
def stop(self):
tdSql.close()
tdLog.success("%s successfully executed" % __file__)
#
# Test Main class
#
'''
class TDTestCase:
def init(self, conn, logSql, replicaVar=1):
self.replicaVar = int(replicaVar)
@ -44,13 +58,13 @@ class TDTestCase:
dbname = "test"
stbname = "st"
childname = "d"
child_cnt = 20
insert_rows = 1000
child_cnt = 2
insert_rows = 10
tag_cnt = 15
column_cnt = 25
binary_len = 30
nchar_len = 45
self.autoGen.set_batch_size(500)
column_cnt = 20
binary_len = 10240
nchar_len = 1025
self.autoGen.set_batch_size(1)
# normal
self.test_db(dbname, stbname, childname, tag_cnt, column_cnt, child_cnt, insert_rows, binary_len, nchar_len)
@ -58,7 +72,7 @@ class TDTestCase:
# max
dbname = "test_max_col"
child_cnt = 3
insert_rows = 100
insert_rows = 50
tag_cnt = 128
binary_len = 3
nchar_len = 4
@ -70,7 +84,7 @@ class TDTestCase:
def stop(self):
tdSql.close()
tdLog.success("%s successfully executed" % __file__)
'''
tdCases.addWindows(__file__, TDTestCase())
tdCases.addLinux(__file__, TDTestCase())