fix: taosdump replace TDTestCase

This commit is contained in:
Alex Duan 2024-12-24 18:21:25 +08:00
parent 01ecb5cc55
commit 9550d2f550
45 changed files with 45 additions and 48 deletions

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-18291] taosdump basic test

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-18291] taosdump basic test

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-20506] taosdump dump db with non-root

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TS-3072] taosdump dump escaped db name test

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TS-3102] taosdump in diff type test

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TS-1762] taosdump with many columns

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TS-2769] taosdump start-time end-time test

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TS-2769] taosdump start-time end-time test

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def init(self, conn, logSql):
tdLog.debug("start to execute %s" % __file__)
tdSql.init(conn.cursor(), logSql)

View File

@ -24,7 +24,7 @@ import string
import random
class TDTestCase:
class TDTestCase(TBase):
def init(self, conn, logSql):
tdLog.debug("start to execute %s" % __file__)
tdSql.init(conn.cursor(), logSql)

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-18291] taosdump basic test

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-14544] taosdump data inspect

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-19436] taosdump loose mode test

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def init(self, conn, logSql):
tdLog.debug("start to execute %s" % __file__)
tdSql.init(conn.cursor(), logSql)

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports big int

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports binary

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports bool

View File

@ -22,7 +22,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports double

View File

@ -22,7 +22,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports float

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports int

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12362] taosdump supports JSON

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports small int

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports tiny int

View File

@ -21,15 +21,12 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12655] taosdump supports unsigned big int
"""
def run(self):
tdSql.prepare()

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports unsigned int

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports unsigned small int

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports unsigned tiny int

View File

@ -23,7 +23,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TS-3072] taosdump dump escaped db name test

View File

@ -23,7 +23,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TS-3072] taosdump dump escaped db name test

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TS-3072] taosdump dump escaped db name test

View File

@ -22,7 +22,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TS-3072] taosdump dump escaped db name test

View File

@ -47,7 +47,7 @@ def killTask(stopEvent, taosadapter, presleep, sleep, count):
tdLog.info("kill task exited.\n")
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TS-3072] taosdump dump escaped db name test

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports big int

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports binary

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports bool

View File

@ -22,7 +22,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports double

View File

@ -22,7 +22,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports float

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports int

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12362] taosdump supports JSON

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports small int

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports tiny int

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12655] taosdump supports unsigned big int

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports unsigned int

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports unsigned small int

View File

@ -21,7 +21,7 @@ from frame.caseBase import *
from frame import *
class TDTestCase:
class TDTestCase(TBase):
def caseDescription(self):
"""
case1<sdsang>: [TD-12526] taosdump supports unsigned tiny int