TD-1287: fix failed test case
This commit is contained in:
parent
a030ea4f65
commit
f80f4324b7
|
@ -26,7 +26,6 @@ class TDTestCase:
|
|||
|
||||
def run(self):
|
||||
rowNum = 200
|
||||
totalNum = 200
|
||||
tdSql.prepare()
|
||||
|
||||
tdLog.info("=============== step1")
|
||||
|
@ -42,7 +41,9 @@ class TDTestCase:
|
|||
tdSql.execute("create table st as select count(*), count(tbcol), count(tbcol2) from mt interval(10s)")
|
||||
|
||||
tdLog.info("=============== step3")
|
||||
start = time.time()
|
||||
tdSql.waitedQuery("select * from st", 1, 120)
|
||||
delay = int(time.time() - start) + 20
|
||||
v = tdSql.getData(0, 3)
|
||||
if v >= 51:
|
||||
tdLog.exit("value is %d, which is larger than 51" % v)
|
||||
|
@ -54,11 +55,18 @@ class TDTestCase:
|
|||
tdSql.execute("insert into tb%d values(now + %ds, %d, %d)" % (i, j, j, j))
|
||||
|
||||
tdLog.info("=============== step5")
|
||||
tdLog.sleep(40)
|
||||
tdSql.waitedQuery("select * from st order by ts desc", 1, 120)
|
||||
maxValue = 0
|
||||
for i in range(delay):
|
||||
time.sleep(1)
|
||||
tdSql.query("select * from st order by ts desc")
|
||||
v = tdSql.getData(0, 3)
|
||||
if v <= 51:
|
||||
tdLog.exit("value is %d, which is smaller than 51" % v)
|
||||
if v > maxValue:
|
||||
maxValue = v
|
||||
if v > 51:
|
||||
break
|
||||
|
||||
if maxValue <= 51:
|
||||
tdLog.exit("value is %d, which is smaller than 51" % maxValue)
|
||||
|
||||
def stop(self):
|
||||
tdSql.close()
|
||||
|
|
Loading…
Reference in New Issue