################################################################### # 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 os from util.log import * from util.cases import * from util.sql import * from util.dnodes import * class TDTestCase: def init(self, conn, logSql): tdLog.debug("start to execute %s" % __file__) tdSql.init(conn.cursor(), logSql) def getBuildPath(self): selfPath = os.path.dirname(os.path.realpath(__file__)) if ("community" in selfPath): projPath = selfPath[:selfPath.find("community")] else: projPath = selfPath[:selfPath.find("tests")] for root, dirs, files in os.walk(projPath): if ("taosd" in files): rootRealPath = os.path.dirname(os.path.realpath(root)) if ("packaging" not in rootRealPath): buildPath = root[:len(root)-len("/build/bin")] break return buildPath def run(self): buildPath = self.getBuildPath() if (buildPath == ""): tdLog.exit("taosd not found!") else: tdLog.info("taosd found in %s" % buildPath) binPath = buildPath+ "/build/bin/" # insert: let parament in json file is illegal, it'll expect error. tdSql.execute("drop database if exists db") os.system("%staosBenchmark -f 5-taos-tools/taosbenchmark/sml/insertColumnsAndTagNumLarge4096-sml.json -y " % binPath) tdSql.execute("use db") tdSql.error("select * from stb0;") tdSql.execute("drop database if exists db") os.system("%staosBenchmark -f 5-taos-tools/taosbenchmark/sml/insertSigcolumnsNum4096-sml.json -y " % binPath) tdSql.error("select * from db.stb0") # tdSql.execute("drop database if exists db") # os.system("%staosBenchmark -f 5-taos-tools/taosbenchmark/sml/insertColumnsAndTagNum4096-sml.json -y " % binPath) # tdSql.query("select count(*) from db.stb0") # tdSql.checkData(0, 0, 10000) # there is no limit of 4096 columns,so cancels this case # tdSql.execute("drop database if exists db") # os.system("%staosBenchmark -f 5-taos-tools/taosbenchmark/sml/insertInterlaceRowsLarge1M-sml.json -y " % binPath) # tdSql.query("select count(*) from db.stb0") # tdSql.checkRows(0) tdSql.execute("drop database if exists db") os.system("%staosBenchmark -f 5-taos-tools/taosbenchmark/sml/insertColumnsNum0-sml.json -y " % binPath) tdSql.execute("use db") tdSql.query("show stables like 'stb0%' ") tdSql.checkData(0, 2, 11) tdSql.execute("drop database if exists db") os.system("%staosBenchmark -f 5-taos-tools/taosbenchmark/sml/insertTagsNumLarge128-sml.json -y " % binPath) tdSql.execute("use db1") tdSql.error("select * from stb0;") # # too much memory: Estimate memory usage: 44297.13MB # tdSql.execute("drop database if exists db") # os.system("%staosBenchmark -f 5-taos-tools/taosbenchmark/sml/insertBinaryLenLarge16374AllcolLar49151-sml.json -y " % binPath) # tdSql.query("select count(*) from db.stb0") # tdSql.checkRows(1) # tdSql.query("select count(*) from db.stb1") # tdSql.checkRows(1) # tdSql.query("select count(*) from db.stb3") # tdSql.checkRows(1) # tdSql.execute("drop database if exists db") # os.system("%staosBenchmark -f 5-taos-tools/taosbenchmark/sml/insertBinaryLenLarge16374AllcolLar49151-error-sml.json -y " % binPath) # tdSql.error("select * from db.stb4") # tdSql.error("select * from db.stb2") tdSql.execute("drop database if exists db1") tdSql.execute("drop database if exists db") os.system("%staosBenchmark -f 5-taos-tools/taosbenchmark/sml/insertNumOfrecordPerReq0-sml.json -y " % binPath) tdSql.query("select count(*) from db.stb0") tdSql.checkData(0, 0, 1) # # has a core dumped # tdSql.execute("drop database if exists db") # os.system("%staosBenchmark -f 5-taos-tools/taosbenchmark/sml/insertNumOfrecordPerReqless0-sml.json -y " % binPath) # tdSql.error("use db") tdSql.execute("drop database if exists db") os.system("%staosBenchmark -f 5-taos-tools/taosbenchmark/sml/insertChildTab0-sml.json -y " % binPath) tdSql.error("select * from db.stb0") # # has a core dumped # tdSql.execute("drop database if exists db") # os.system("%staosBenchmark -f 5-taos-tools/taosbenchmark/sml/insertChildTabLess0-sml.json -y " % binPath) # tdSql.error("use db") # tdSql.execute("drop database if exists blf") # child table name is invalid reading,so # os.system("%staosBenchmark -f 5-taos-tools/taosbenchmark/sml/insertTimestepMulRowsLargeint16-sml.json -y " % binPath) # tdSql.execute("use blf") # tdSql.query("select ts from blf.p_0_topics_7 limit 262800,1") # tdSql.checkData(0, 0, "2020-03-31 12:00:00.000") # tdSql.query("select first(ts) from blf.p_0_topics_2") # tdSql.checkData(0, 0, "2019-10-01 00:00:00") # tdSql.query("select last(ts) from blf.p_0_topics_6 ") # tdSql.checkData(0, 0, "2020-09-29 23:59:00") # it will be commented in ci because it spend too much time to insert data, but when you can excute it when you want to test this case. # os.system("%staosBenchmark -f 5-taos-tools/taosbenchmark/sml/insertMaxNumPerReq-sml.json -y " % binPath) # tdSql.execute("use db") # tdSql.query("select count(*) from stb0") # tdSql.checkData(0, 0, 5000000) # tdSql.query("select count(*) from stb1") # tdSql.checkData(0, 0, 5000000) # os.system("%staosBenchmark -f 5-taos-tools/taosbenchmark/sml/insertMaxNumPerReq-sml-telnet.json -y " % binPath) # tdSql.execute("use db") # tdSql.query("select count(*) from stb0") # tdSql.checkData(0, 0, 5000000) # tdSql.query("select count(*) from stb1") # tdSql.checkData(0, 0, 5000000) testcaseFilename = os.path.split(__file__)[-1] os.system("rm -rf ./insert_res.txt") os.system("rm -rf 5-taos-tools/taosbenchmark/%s.sql" % testcaseFilename ) def stop(self): tdSql.close() tdLog.success("%s successfully executed" % __file__) tdCases.addWindows(__file__, TDTestCase()) tdCases.addLinux(__file__, TDTestCase())