Merge pull request #5156 from taosdata/xiaoping/add_test_case2
[TD-2568]<test>: add test case
This commit is contained in:
commit
86feb99db8
|
@ -0,0 +1,54 @@
|
||||||
|
###################################################################
|
||||||
|
# Copyright (c) 2016 by TAOS Technologies, Inc.
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# This file is proprietary and confidential to TAOS Technologies.
|
||||||
|
# No part of this file may be reproduced, stored, transmitted,
|
||||||
|
# disclosed or used in any form or by any means other than as
|
||||||
|
# expressly provided by the written permission from Jianhui Tao
|
||||||
|
#
|
||||||
|
###################################################################
|
||||||
|
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
import sys
|
||||||
|
import random
|
||||||
|
from util.log import *
|
||||||
|
from util.cases import *
|
||||||
|
from util.sql import *
|
||||||
|
from util.dnodes import tdDnodes
|
||||||
|
|
||||||
|
|
||||||
|
class TDTestCase:
|
||||||
|
def init(self, conn, logSql):
|
||||||
|
tdLog.debug("start to execute %s" % __file__)
|
||||||
|
tdSql.init(conn.cursor(), logSql)
|
||||||
|
|
||||||
|
def run(self):
|
||||||
|
tdSql.prepare()
|
||||||
|
|
||||||
|
flagList=["debugflag", "cdebugflag", "tmrDebugFlag", "uDebugFlag", "rpcDebugFlag"]
|
||||||
|
|
||||||
|
for flag in flagList:
|
||||||
|
tdSql.execute("alter local %s 131" % flag)
|
||||||
|
tdSql.execute("alter local %s 135" % flag)
|
||||||
|
tdSql.execute("alter local %s 143" % flag)
|
||||||
|
randomFlag = random.randint(100, 250)
|
||||||
|
if randomFlag != 131 and randomFlag != 135 and randomFlag != 143:
|
||||||
|
tdSql.error("alter local %s %d" % (flag, randomFlag))
|
||||||
|
|
||||||
|
tdSql.query("show dnodes")
|
||||||
|
dnodeId = tdSql.getData(0, 0)
|
||||||
|
|
||||||
|
for flag in flagList:
|
||||||
|
tdSql.execute("alter dnode %d %s 131" % (dnodeId, flag))
|
||||||
|
tdSql.execute("alter dnode %d %s 135" % (dnodeId, flag))
|
||||||
|
tdSql.execute("alter dnode %d %s 143" % (dnodeId, flag))
|
||||||
|
|
||||||
|
def stop(self):
|
||||||
|
tdSql.close()
|
||||||
|
tdLog.success("%s successfully executed" % __file__)
|
||||||
|
|
||||||
|
|
||||||
|
tdCases.addWindows(__file__, TDTestCase())
|
||||||
|
tdCases.addLinux(__file__, TDTestCase())
|
|
@ -126,7 +126,6 @@ class TDTestCase:
|
||||||
for i in range(2, size):
|
for i in range(2, size):
|
||||||
tdSql.checkData(0, i, self.rowNum * (size - i))
|
tdSql.checkData(0, i, self.rowNum * (size - i))
|
||||||
|
|
||||||
tdSql.error("alter local debugflag 143")
|
|
||||||
|
|
||||||
tdSql.execute("create table st(ts timestamp, c1 int) tags(t1 float)")
|
tdSql.execute("create table st(ts timestamp, c1 int) tags(t1 float)")
|
||||||
tdSql.execute("create table t0 using st tags(null)")
|
tdSql.execute("create table t0 using st tags(null)")
|
||||||
|
|
|
@ -193,6 +193,7 @@ python3 ./test.py -f stream/table_n.py
|
||||||
#alter table
|
#alter table
|
||||||
python3 ./test.py -f alter/alter_table_crash.py
|
python3 ./test.py -f alter/alter_table_crash.py
|
||||||
python3 ./test.py -f alter/alter_table.py
|
python3 ./test.py -f alter/alter_table.py
|
||||||
|
python3 ./test.py -f alter/alter_debugFlag.py
|
||||||
|
|
||||||
# client
|
# client
|
||||||
python3 ./test.py -f client/client.py
|
python3 ./test.py -f client/client.py
|
||||||
|
|
Loading…
Reference in New Issue