提交 7e13c16b 编写于 作者: haoranc's avatar haoranc

[TD-10551]<test>: add taosdemo testcase that it provides define timestamp...

[TD-10551]<test>: add taosdemo testcase that it provides define timestamp column with stmt in sample.csv
上级 6ca60b70
...@@ -48,171 +48,171 @@ class TDTestCase: ...@@ -48,171 +48,171 @@ class TDTestCase:
tdLog.info("taosd found in %s" % buildPath) tdLog.info("taosd found in %s" % buildPath)
binPath = buildPath+ "/build/bin/" binPath = buildPath+ "/build/bin/"
# # insert: create one or mutiple tables per sql and insert multiple rows per sql # insert: create one or mutiple tables per sql and insert multiple rows per sql
# os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insert-1s1tnt1r-stmt.json -y " % binPath) os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insert-1s1tnt1r-stmt.json -y " % binPath)
# tdSql.execute("use db") tdSql.execute("use db")
# tdSql.query("select count (tbname) from stb0") tdSql.query("select count (tbname) from stb0")
# tdSql.checkData(0, 0, 1000) tdSql.checkData(0, 0, 1000)
# tdSql.query("select count (tbname) from stb1") tdSql.query("select count (tbname) from stb1")
# tdSql.checkData(0, 0, 1000) tdSql.checkData(0, 0, 1000)
# tdSql.query("select count(*) from stb00_0") tdSql.query("select count(*) from stb00_0")
# tdSql.checkData(0, 0, 100) tdSql.checkData(0, 0, 100)
# tdSql.query("select count(*) from stb0") tdSql.query("select count(*) from stb0")
# tdSql.checkData(0, 0, 100000) tdSql.checkData(0, 0, 100000)
# tdSql.query("select count(*) from stb01_1") tdSql.query("select count(*) from stb01_1")
# tdSql.checkData(0, 0, 200) tdSql.checkData(0, 0, 200)
# tdSql.query("select count(*) from stb1") tdSql.query("select count(*) from stb1")
# tdSql.checkData(0, 0, 200000) tdSql.checkData(0, 0, 200000)
# # insert: create mutiple tables per sql and insert one rows per sql . # insert: create mutiple tables per sql and insert one rows per sql .
# os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insert-1s1tntmr-stmt.json -y " % binPath) os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insert-1s1tntmr-stmt.json -y " % binPath)
# tdSql.execute("use db") tdSql.execute("use db")
# tdSql.query("select count (tbname) from stb0") tdSql.query("select count (tbname) from stb0")
# tdSql.checkData(0, 0, 10) tdSql.checkData(0, 0, 10)
# tdSql.query("select count (tbname) from stb1") tdSql.query("select count (tbname) from stb1")
# tdSql.checkData(0, 0, 20) tdSql.checkData(0, 0, 20)
# tdSql.query("select count(*) from stb00_0") tdSql.query("select count(*) from stb00_0")
# tdSql.checkData(0, 0, 10000) tdSql.checkData(0, 0, 10000)
# tdSql.query("select count(*) from stb0") tdSql.query("select count(*) from stb0")
# tdSql.checkData(0, 0, 100000) tdSql.checkData(0, 0, 100000)
# tdSql.query("select count(*) from stb01_0") tdSql.query("select count(*) from stb01_0")
# tdSql.checkData(0, 0, 20000) tdSql.checkData(0, 0, 20000)
# tdSql.query("select count(*) from stb1") tdSql.query("select count(*) from stb1")
# tdSql.checkData(0, 0, 400000) tdSql.checkData(0, 0, 400000)
# # insert: using parament "insert_interval to controls spped of insert. # insert: using parament "insert_interval to controls spped of insert.
# # but We need to have accurate methods to control the speed, such as getting the speed value, checking the count and so on。 # but We need to have accurate methods to control the speed, such as getting the speed value, checking the count and so on。
# os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insert-interval-speed-stmt.json -y" % binPath) os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insert-interval-speed-stmt.json -y" % binPath)
# tdSql.execute("use db") tdSql.execute("use db")
# tdSql.query("show stables") tdSql.query("show stables")
# tdSql.checkData(0, 4, 100) tdSql.checkData(0, 4, 100)
# tdSql.query("select count(*) from stb00_0") tdSql.query("select count(*) from stb00_0")
# tdSql.checkData(0, 0, 20000) tdSql.checkData(0, 0, 20000)
# tdSql.query("select count(*) from stb0") tdSql.query("select count(*) from stb0")
# tdSql.checkData(0, 0, 2000000) tdSql.checkData(0, 0, 2000000)
# tdSql.query("show stables") tdSql.query("show stables")
# tdSql.checkData(1, 4, 100) tdSql.checkData(1, 4, 100)
# tdSql.query("select count(*) from stb01_0") tdSql.query("select count(*) from stb01_0")
# tdSql.checkData(0, 0, 20000) tdSql.checkData(0, 0, 20000)
# tdSql.query("select count(*) from stb1") tdSql.query("select count(*) from stb1")
# tdSql.checkData(0, 0, 2000000) tdSql.checkData(0, 0, 2000000)
# # spend 2min30s for 3 testcases. # spend 2min30s for 3 testcases.
# # insert: drop and child_table_exists combination test # insert: drop and child_table_exists combination test
# # insert: using parament "childtable_offset and childtable_limit" to control table'offset point and offset # insert: using parament "childtable_offset and childtable_limit" to control table'offset point and offset
# os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insert-nodbnodrop-stmt.json -y" % binPath) os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insert-nodbnodrop-stmt.json -y" % binPath)
# tdSql.error("show dbno.stables") tdSql.error("show dbno.stables")
# os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insert-newdb-stmt.json -y" % binPath) os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insert-newdb-stmt.json -y" % binPath)
# tdSql.execute("use db") tdSql.execute("use db")
# tdSql.query("select count (tbname) from stb0") tdSql.query("select count (tbname) from stb0")
# tdSql.checkData(0, 0, 5) tdSql.checkData(0, 0, 5)
# tdSql.query("select count (tbname) from stb1") tdSql.query("select count (tbname) from stb1")
# tdSql.checkData(0, 0, 6) tdSql.checkData(0, 0, 6)
# tdSql.query("select count (tbname) from stb2") tdSql.query("select count (tbname) from stb2")
# tdSql.checkData(0, 0, 7) tdSql.checkData(0, 0, 7)
# tdSql.query("select count (tbname) from stb3") tdSql.query("select count (tbname) from stb3")
# tdSql.checkData(0, 0, 8) tdSql.checkData(0, 0, 8)
# tdSql.query("select count (tbname) from stb4") tdSql.query("select count (tbname) from stb4")
# tdSql.checkData(0, 0, 8) tdSql.checkData(0, 0, 8)
# os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insert-offset-stmt.json -y" % binPath) os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insert-offset-stmt.json -y" % binPath)
# tdSql.execute("use db") tdSql.execute("use db")
# tdSql.query("select count(*) from stb0") tdSql.query("select count(*) from stb0")
# tdSql.checkData(0, 0, 50) tdSql.checkData(0, 0, 50)
# tdSql.query("select count(*) from stb1") tdSql.query("select count(*) from stb1")
# tdSql.checkData(0, 0, 240) tdSql.checkData(0, 0, 240)
# tdSql.query("select count(*) from stb2") tdSql.query("select count(*) from stb2")
# tdSql.checkData(0, 0, 220) tdSql.checkData(0, 0, 220)
# tdSql.query("select count(*) from stb3") tdSql.query("select count(*) from stb3")
# tdSql.checkData(0, 0, 180) tdSql.checkData(0, 0, 180)
# tdSql.query("select count(*) from stb4") tdSql.query("select count(*) from stb4")
# tdSql.checkData(0, 0, 160) tdSql.checkData(0, 0, 160)
# os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insert-newtable-stmt.json -y" % binPath) os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insert-newtable-stmt.json -y" % binPath)
# tdSql.execute("use db") tdSql.execute("use db")
# tdSql.query("select count(*) from stb0") tdSql.query("select count(*) from stb0")
# tdSql.checkData(0, 0, 150) tdSql.checkData(0, 0, 150)
# tdSql.query("select count(*) from stb1") tdSql.query("select count(*) from stb1")
# tdSql.checkData(0, 0, 360) tdSql.checkData(0, 0, 360)
# tdSql.query("select count(*) from stb2") tdSql.query("select count(*) from stb2")
# tdSql.checkData(0, 0, 360) tdSql.checkData(0, 0, 360)
# tdSql.query("select count(*) from stb3") tdSql.query("select count(*) from stb3")
# tdSql.checkData(0, 0, 340) tdSql.checkData(0, 0, 340)
# tdSql.query("select count(*) from stb4") tdSql.query("select count(*) from stb4")
# tdSql.checkData(0, 0, 400) tdSql.checkData(0, 0, 400)
# os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insert-renewdb-stmt.json -y" % binPath) os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insert-renewdb-stmt.json -y" % binPath)
# tdSql.execute("use db") tdSql.execute("use db")
# tdSql.query("select count(*) from stb0") tdSql.query("select count(*) from stb0")
# tdSql.checkData(0, 0, 50) tdSql.checkData(0, 0, 50)
# tdSql.query("select count(*) from stb1") tdSql.query("select count(*) from stb1")
# tdSql.checkData(0, 0, 120) tdSql.checkData(0, 0, 120)
# tdSql.query("select count(*) from stb2") tdSql.query("select count(*) from stb2")
# tdSql.checkData(0, 0, 140) tdSql.checkData(0, 0, 140)
# tdSql.query("select count(*) from stb3") tdSql.query("select count(*) from stb3")
# tdSql.checkData(0, 0, 160) tdSql.checkData(0, 0, 160)
# tdSql.query("select count(*) from stb4") tdSql.query("select count(*) from stb4")
# tdSql.checkData(0, 0, 160) tdSql.checkData(0, 0, 160)
# # insert: let parament in json file is illegal, it'll expect error. # insert: let parament in json file is illegal, it'll expect error.
# tdSql.execute("drop database if exists db") tdSql.execute("drop database if exists db")
# os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertColumnsAndTagNumLarge4096-stmt.json -y " % binPath) os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertColumnsAndTagNumLarge4096-stmt.json -y " % binPath)
# tdSql.error("use db") tdSql.error("use db")
tdSql.execute("drop database if exists db")
os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertSigcolumnsNum4096-stmt.json -y " % binPath)
tdSql.error("select * from db.stb0")
# tdSql.execute("drop database if exists db") # tdSql.execute("drop database if exists db")
# os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertSigcolumnsNum4096-stmt.json -y " % binPath) # os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertColumnsAndTagNum4096-stmt.json -y " % binPath)
# tdSql.error("select * from db.stb0")
# # tdSql.execute("drop database if exists db")
# # os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertColumnsAndTagNum4096-stmt.json -y " % binPath)
# # tdSql.query("select count(*) from db.stb0")
# # tdSql.checkData(0, 0, 10000)
# tdSql.execute("drop database if exists db")
# os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertInterlaceRowsLarge1M-stmt.json -y " % binPath)
# tdSql.query("select count(*) from db.stb0") # tdSql.query("select count(*) from db.stb0")
# tdSql.checkRows(0) # tdSql.checkData(0, 0, 10000)
# tdSql.execute("drop database if exists db") tdSql.execute("drop database if exists db")
# os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertColumnsNum0-stmt.json -y " % binPath) os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertInterlaceRowsLarge1M-stmt.json -y " % binPath)
# tdSql.execute("use db") tdSql.query("select count(*) from db.stb0")
# tdSql.query("show stables like 'stb0%' ") tdSql.checkRows(0)
# tdSql.checkData(0, 2, 11) tdSql.execute("drop database if exists db")
# tdSql.execute("drop database if exists db") os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertColumnsNum0-stmt.json -y " % binPath)
# os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertTagsNumLarge128-stmt.json -y " % binPath) tdSql.execute("use db")
# tdSql.error("use db1") tdSql.query("show stables like 'stb0%' ")
# tdSql.execute("drop database if exists db") tdSql.checkData(0, 2, 11)
# os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertBinaryLenLarge16374AllcolLar49151-stmt.json -y " % binPath) tdSql.execute("drop database if exists db")
# tdSql.query("select count(*) from db.stb0") os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertTagsNumLarge128-stmt.json -y " % binPath)
# tdSql.checkRows(1) tdSql.error("use db1")
# tdSql.query("select count(*) from db.stb1") tdSql.execute("drop database if exists db")
# tdSql.checkRows(1) os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertBinaryLenLarge16374AllcolLar49151-stmt.json -y " % binPath)
# tdSql.error("select * from db.stb4") tdSql.query("select count(*) from db.stb0")
# tdSql.error("select * from db.stb2") tdSql.checkRows(1)
# tdSql.query("select count(*) from db.stb3") tdSql.query("select count(*) from db.stb1")
# tdSql.checkRows(1) tdSql.checkRows(1)
# tdSql.execute("drop database if exists db") tdSql.error("select * from db.stb4")
# os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertNumOfrecordPerReq0-stmt.json -y " % binPath) tdSql.error("select * from db.stb2")
# tdSql.error("select count(*) from db.stb0") tdSql.query("select count(*) from db.stb3")
# tdSql.execute("drop database if exists db") tdSql.checkRows(1)
# os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertNumOfrecordPerReqless0-stmt.json -y " % binPath) tdSql.execute("drop database if exists db")
# tdSql.error("use db") os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertNumOfrecordPerReq0-stmt.json -y " % binPath)
# tdSql.execute("drop database if exists db") tdSql.error("select count(*) from db.stb0")
# os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertChildTab0-stmt.json -y " % binPath) tdSql.execute("drop database if exists db")
# tdSql.error("use db") os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertNumOfrecordPerReqless0-stmt.json -y " % binPath)
# tdSql.execute("drop database if exists db") tdSql.error("use db")
# os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertChildTabLess0-stmt.json -y " % binPath) tdSql.execute("drop database if exists db")
# tdSql.error("use db") os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertChildTab0-stmt.json -y " % binPath)
# tdSql.execute("drop database if exists blf") tdSql.error("use db")
# os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertTimestepMulRowsLargeint16-stmt.json -y " % binPath) tdSql.execute("drop database if exists db")
# tdSql.execute("use blf") os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertChildTabLess0-stmt.json -y " % binPath)
# tdSql.query("select ts from blf.p_0_topics_7 limit 262800,1") tdSql.error("use db")
# tdSql.checkData(0, 0, "2020-03-31 12:00:00.000") tdSql.execute("drop database if exists blf")
# tdSql.query("select first(ts) from blf.p_0_topics_2") os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertTimestepMulRowsLargeint16-stmt.json -y " % binPath)
# tdSql.checkData(0, 0, "2019-10-01 00:00:00") tdSql.execute("use blf")
# tdSql.query("select last(ts) from blf.p_0_topics_6 ") tdSql.query("select ts from blf.p_0_topics_7 limit 262800,1")
# tdSql.checkData(0, 0, "2020-09-29 23:59:00") tdSql.checkData(0, 0, "2020-03-31 12:00:00.000")
# os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertMaxNumPerReq-stmt.json -y " % binPath) tdSql.query("select first(ts) from blf.p_0_topics_2")
# tdSql.execute("use db") tdSql.checkData(0, 0, "2019-10-01 00:00:00")
# tdSql.query("select count(*) from stb0") tdSql.query("select last(ts) from blf.p_0_topics_6 ")
# tdSql.checkData(0, 0, 5000000) tdSql.checkData(0, 0, "2020-09-29 23:59:00")
# tdSql.query("select count(*) from stb1") os.system("%staosdemo -f tools/taosdemoAllTest/stmt/insertMaxNumPerReq-stmt.json -y " % binPath)
# tdSql.checkData(0, 0, 5000000) 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)
# insert: sample json # insert: sample json
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册