138 lines
4.7 KiB
Python
138 lines
4.7 KiB
Python
import taos
|
|
import sys
|
|
import datetime
|
|
import inspect
|
|
import threading
|
|
|
|
from util.log import *
|
|
from util.sql import *
|
|
from util.cases import *
|
|
from util.common import tdCom
|
|
import random
|
|
|
|
|
|
class TDTestCase:
|
|
|
|
def init(self, conn, logSql, replicaVar=1):
|
|
self.replicaVar = int(replicaVar)
|
|
tdLog.debug(f"start to excute {__file__}")
|
|
tdSql.init(conn.cursor(), True)
|
|
|
|
def case1(self):
|
|
tdSql.execute("create database if not exists dbms precision 'ms'")
|
|
tdSql.execute("create database if not exists dbus precision 'us'")
|
|
tdSql.execute("create database if not exists dbns precision 'ns'")
|
|
|
|
tdSql.execute("create table dbms.ntb (ts timestamp, c1 int, c2 bigint)")
|
|
tdSql.execute("create table dbus.ntb (ts timestamp, c1 int, c2 bigint)")
|
|
tdSql.execute("create table dbns.ntb (ts timestamp, c1 int, c2 bigint)")
|
|
|
|
tdSql.execute("insert into dbms.ntb values ('2022-01-01 08:00:00.001', 1, 2)")
|
|
tdSql.execute("insert into dbms.ntb values ('2022-01-01 08:00:00.002', 3, 4)")
|
|
|
|
tdSql.execute("insert into dbus.ntb values ('2022-01-01 08:00:00.000001', 1, 2)")
|
|
tdSql.execute("insert into dbus.ntb values ('2022-01-01 08:00:00.000002', 3, 4)")
|
|
|
|
tdSql.execute("insert into dbns.ntb values ('2022-01-01 08:00:00.000000001', 1, 2)")
|
|
tdSql.execute("insert into dbns.ntb values ('2022-01-01 08:00:00.000000002', 3, 4)")
|
|
|
|
tdSql.query("select count(c1) from dbms.ntb interval(1a)")
|
|
tdSql.checkRows(2)
|
|
|
|
tdSql.query("select count(c1) from dbus.ntb interval(1u)")
|
|
tdSql.checkRows(2)
|
|
|
|
tdSql.query("select count(c1) from dbns.ntb interval(1b)")
|
|
tdSql.checkRows(2)
|
|
|
|
def case2(self):
|
|
tdSql.query("show variables")
|
|
tdSql.checkRows(9)
|
|
|
|
for i in range(self.replicaVar):
|
|
tdSql.query("show dnode %d variables like 'debugFlag'" % (i + 1))
|
|
tdSql.checkRows(1)
|
|
tdSql.checkData(0, 0, i + 1)
|
|
tdSql.checkData(0, 1, 'debugFlag')
|
|
tdSql.checkData(0, 2, 0)
|
|
|
|
tdSql.query("show dnode 1 variables like '%debugFlag'")
|
|
tdSql.checkRows(25)
|
|
|
|
tdSql.query("show dnode 1 variables like '____debugFlag'")
|
|
tdSql.checkRows(2)
|
|
|
|
tdSql.query("show dnode 1 variables like 's3MigrateEnab%'")
|
|
tdSql.checkRows(1)
|
|
tdSql.checkData(0, 0, 1)
|
|
tdSql.checkData(0, 1, 's3MigrateEnabled')
|
|
tdSql.checkData(0, 2, 0)
|
|
|
|
tdSql.query("show dnode 1 variables like 's3MigrateIntervalSec%'")
|
|
tdSql.checkRows(1)
|
|
tdSql.checkData(0, 0, 1)
|
|
tdSql.checkData(0, 1, 's3MigrateIntervalSec')
|
|
tdSql.checkData(0, 2, 3600)
|
|
|
|
tdSql.query("show dnode 1 variables like 's3PageCacheSize%'")
|
|
tdSql.checkRows(1)
|
|
tdSql.checkData(0, 0, 1)
|
|
tdSql.checkData(0, 1, 's3PageCacheSize')
|
|
tdSql.checkData(0, 2, 4096)
|
|
|
|
tdSql.query("show dnode 1 variables like 's3UploadDelaySec%'")
|
|
tdSql.checkRows(1)
|
|
tdSql.checkData(0, 0, 1)
|
|
tdSql.checkData(0, 1, 's3UploadDelaySec')
|
|
tdSql.checkData(0, 2, 60)
|
|
|
|
def threadTest(self, threadID):
|
|
print(f"Thread {threadID} starting...")
|
|
tdsqln = tdCom.newTdSql()
|
|
for i in range(100):
|
|
tdsqln.query(f"desc db1.stb_1")
|
|
tdsqln.checkRows(3)
|
|
|
|
print(f"Thread {threadID} finished.")
|
|
|
|
def case3(self):
|
|
tdSql.execute("create database db1")
|
|
tdSql.execute("create table db1.stb (ts timestamp, c1 varchar(100)) tags(t1 int)")
|
|
tdSql.execute("create table db1.stb_1 using db1.stb tags(1)")
|
|
|
|
threads = []
|
|
for i in range(10):
|
|
t = threading.Thread(target=self.threadTest, args=(i,))
|
|
threads.append(t)
|
|
t.start()
|
|
|
|
for thread in threads:
|
|
print(f"Thread waitting for finish...")
|
|
thread.join()
|
|
|
|
print(f"Mutithread test finished.")
|
|
|
|
|
|
def run(self): # sourcery skip: extract-duplicate-method, remove-redundant-fstring
|
|
tdSql.prepare(replica = self.replicaVar)
|
|
|
|
tdLog.printNoPrefix("==========start case1 run ...............")
|
|
self.case1()
|
|
tdLog.printNoPrefix("==========end case1 run ...............")
|
|
|
|
tdLog.printNoPrefix("==========start case2 run ...............")
|
|
self.case2()
|
|
tdLog.printNoPrefix("==========end case2 run ...............")
|
|
|
|
tdLog.printNoPrefix("==========start case3 run ...............")
|
|
self.case3()
|
|
tdLog.printNoPrefix("==========end case3 run ...............")
|
|
|
|
def stop(self):
|
|
tdSql.close()
|
|
tdLog.success(f"{__file__} successfully executed")
|
|
|
|
|
|
tdCases.addLinux(__file__, TDTestCase())
|
|
tdCases.addWindows(__file__, TDTestCase())
|