mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
* fix: add show connMode string * fix: add stdbool.h to pub.h * fix: remove trash file army/output.txt * fix: caseBase.py modify syntax error * fix: restore -R option for taosdump * fix: taosdumpCommandline.py case * fix: native stmt write normal table failed * fix: taosdumpCommandline.py case passed * fix: restore test.py from main branch * fix: taosCli.py check default conn mode * fix: commandline-sml.py case pass * fix: websiteCase.py case passed * fix: connMode.py case * fix: modify default port is 0 * fix: taos_options with config dir not work * fix: websocket.py delete -D timeout options * fix: default_tmq_json.py context move to default_json.py, so delete * fix python kafka bug * chore: improve taos_init in wrapper * chore: add installation path preparation in build workflow * fix connMode bug * fix: fix tmq conf/consumer new error in wrapperFunc.c * fix: correct the spelling toss -> taosGetInstall... * chore: fix compile error in wrapperFunc.c * fix: createConnect fix memory leak * fix: tsim forbid CHECK ODR * modify userOperTest uuse static lib * reverse userOperTest use static lib --------- Co-authored-by: Alex Duan <417921451@qq.com> Co-authored-by: taos-support <it@taosdata.com> Co-authored-by: “chris <“zk662144@163.com”> Co-authored-by: t_max <1172915550@qq.com> Co-authored-by: sheyanjie-qq <249478495@qq.com>
82 lines
2.5 KiB
Python
82 lines
2.5 KiB
Python
###################################################################
|
|
# 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 os
|
|
import time
|
|
|
|
import frame
|
|
import frame.etool
|
|
from frame.log import *
|
|
from frame.cases import *
|
|
from frame.sql import *
|
|
from frame.caseBase import *
|
|
from frame import *
|
|
|
|
|
|
class TDTestCase(TBase):
|
|
def caseDescription(self):
|
|
"""
|
|
[TD-21932] taosBenchmark sml test cases
|
|
"""
|
|
def run(self):
|
|
binPath = etool.benchMarkFile()
|
|
|
|
cmd = "%s -I sml -t 1 -n 1 -y" % binPath
|
|
tdLog.info("%s" % cmd)
|
|
os.system("%s" % cmd)
|
|
tdSql.query("select count(*) from test.meters")
|
|
tdSql.checkData(0, 0, 1)
|
|
|
|
cmd = "%s -I sml-line -t 1 -n 1 -y" % binPath
|
|
tdLog.info("%s" % cmd)
|
|
os.system("%s" % cmd)
|
|
tdSql.query("select count(*) from test.meters")
|
|
tdSql.checkData(0, 0, 1)
|
|
|
|
cmd = "%s -I sml-telnet -t 1 -n 1 -y" % binPath
|
|
tdLog.info("%s" % cmd)
|
|
os.system("%s" % cmd)
|
|
tdSql.query("select count(*) from test.meters")
|
|
tdSql.checkData(0, 0, 1)
|
|
|
|
cmd = "%s -I sml-json -t 1 -n 1 -y" % binPath
|
|
tdLog.info("%s" % cmd)
|
|
os.system("%s" % cmd)
|
|
tdSql.query("select count(*) from test.meters")
|
|
tdSql.checkData(0, 0, 1)
|
|
|
|
cmd = "%s -I sml-taosjson -t 1 -n 1 -y" % binPath
|
|
tdLog.info("%s" % cmd)
|
|
os.system("%s" % cmd)
|
|
tdSql.query("select count(*) from test.meters")
|
|
tdSql.checkData(0, 0, 1)
|
|
|
|
cmd = "%s -I sml -t 10 -n 10000 -y" % binPath
|
|
tdLog.info("%s" % cmd)
|
|
os.system("%s" % cmd)
|
|
|
|
tdSql.query("select count(*) from test.meters")
|
|
tdSql.checkData(0, 0, 10*10000)
|
|
|
|
# add normal table
|
|
cmd = "-N -I sml -t 2 -n 10000 -y"
|
|
rlist = self.benchmark(cmd, checkRun = False)
|
|
# expect failed
|
|
self.checkListString(rlist, "schemaless cannot work without stable")
|
|
|
|
def stop(self):
|
|
tdSql.close()
|
|
tdLog.success("%s successfully executed" % __file__)
|
|
|
|
|
|
tdCases.addWindows(__file__, TDTestCase())
|
|
tdCases.addLinux(__file__, TDTestCase())
|