Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
97055df0
T
TDengine
项目概览
taosdata
/
TDengine
接近 2 年 前同步成功
通知
1192
Star
22018
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
97055df0
编写于
12月 13, 2021
作者:
haoranc
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-11399]<test>: add testcase that taosdemo support chinese unicode
上级
818e9136
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
39 addition
and
30 deletion
+39
-30
tests/pytest/tools/taosdemoAllTest/taosdemoTestInsertWithJson.py
...ytest/tools/taosdemoAllTest/taosdemoTestInsertWithJson.py
+39
-30
未找到文件。
tests/pytest/tools/taosdemoAllTest/taosdemoTestInsertWithJson.py
浏览文件 @
97055df0
...
...
@@ -53,7 +53,7 @@ class TDTestCase:
os
.
system
(
"rm -rf tools/taosdemoAllTest/%s.sql"
%
testcaseFilename
)
# insert: create one or mutiple tables per sql and insert multiple rows per sql
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insert-1s1tnt1r.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insert-1s1tnt1r.json -y "
%
binPath
)
tdSql
.
execute
(
"use db"
)
tdSql
.
query
(
"select count (tbname) from stb0"
)
tdSql
.
checkData
(
0
,
0
,
11
)
...
...
@@ -69,7 +69,7 @@ class TDTestCase:
tdSql
.
checkData
(
0
,
0
,
2000
)
# restful connector insert data
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insertRestful.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insertRestful.json -y "
%
binPath
)
tdSql
.
execute
(
"use db"
)
tdSql
.
query
(
"select count (tbname) from stb0"
)
tdSql
.
checkData
(
0
,
0
,
10
)
...
...
@@ -86,7 +86,7 @@ class TDTestCase:
# default values json files
tdSql
.
execute
(
"drop database if exists db"
)
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insert-default.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insert-default.json -y "
%
binPath
)
tdSql
.
query
(
"show databases;"
)
for
i
in
range
(
tdSql
.
queryRows
):
if
tdSql
.
queryResult
[
i
][
0
]
==
'db'
:
...
...
@@ -96,7 +96,7 @@ class TDTestCase:
tdSql
.
checkData
(
i
,
16
,
'ms'
)
# insert: create mutiple tables per sql and insert one rows per sql .
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insert-1s1tntmr.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insert-1s1tntmr.json -y "
%
binPath
)
tdSql
.
execute
(
"use db"
)
tdSql
.
query
(
"select count (tbname) from stb0"
)
tdSql
.
checkData
(
0
,
0
,
10
)
...
...
@@ -113,7 +113,7 @@ class TDTestCase:
# 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。
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insert-interval-speed.json -y"
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insert-interval-speed.json -y"
%
binPath
)
tdSql
.
execute
(
"use db"
)
tdSql
.
query
(
"show stables"
)
tdSql
.
checkData
(
0
,
4
,
100
)
...
...
@@ -131,9 +131,9 @@ class TDTestCase:
# spend 2min30s for 3 testcases.
# insert: drop and child_table_exists combination test
# insert: using parament "childtable_offset and childtable_limit" to control table'offset point and offset
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insert-nodbnodrop.json -y"
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insert-nodbnodrop.json -y"
%
binPath
)
tdSql
.
error
(
"show dbno.stables"
)
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insert-newdb.json -y"
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insert-newdb.json -y"
%
binPath
)
tdSql
.
execute
(
"use db"
)
tdSql
.
query
(
"select count (tbname) from stb0"
)
tdSql
.
checkData
(
0
,
0
,
5
)
...
...
@@ -145,7 +145,7 @@ class TDTestCase:
tdSql
.
checkData
(
0
,
0
,
8
)
tdSql
.
query
(
"select count (tbname) from stb4"
)
tdSql
.
checkData
(
0
,
0
,
8
)
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insert-offset.json -y"
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insert-offset.json -y"
%
binPath
)
tdSql
.
execute
(
"use db"
)
tdSql
.
query
(
"select count(*) from stb0"
)
tdSql
.
checkData
(
0
,
0
,
50
)
...
...
@@ -157,7 +157,7 @@ class TDTestCase:
tdSql
.
checkData
(
0
,
0
,
180
)
tdSql
.
query
(
"select count(*) from stb4"
)
tdSql
.
checkData
(
0
,
0
,
160
)
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insert-newtable.json -y"
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insert-newtable.json -y"
%
binPath
)
tdSql
.
execute
(
"use db"
)
tdSql
.
query
(
"select count(*) from stb0"
)
tdSql
.
checkData
(
0
,
0
,
150
)
...
...
@@ -169,7 +169,7 @@ class TDTestCase:
tdSql
.
checkData
(
0
,
0
,
340
)
tdSql
.
query
(
"select count(*) from stb4"
)
tdSql
.
checkData
(
0
,
0
,
400
)
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insert-renewdb.json -y"
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insert-renewdb.json -y"
%
binPath
)
tdSql
.
execute
(
"use db"
)
tdSql
.
query
(
"select count(*) from stb0"
)
tdSql
.
checkData
(
0
,
0
,
50
)
...
...
@@ -185,30 +185,30 @@ class TDTestCase:
# insert: let parament in json file is illegal, it'll expect error.
tdSql
.
execute
(
"drop database if exists db"
)
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insertColumnsAndTagNumLarge4096.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insertColumnsAndTagNumLarge4096.json -y "
%
binPath
)
tdSql
.
error
(
"use db"
)
tdSql
.
execute
(
"drop database if exists db"
)
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insertSigcolumnsNum4096.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insertSigcolumnsNum4096.json -y "
%
binPath
)
tdSql
.
error
(
"select * from db.stb0"
)
tdSql
.
execute
(
"drop database if exists db"
)
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insertColumnsAndTagNum4096.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insertColumnsAndTagNum4096.json -y "
%
binPath
)
tdSql
.
query
(
"select count(*) from db.stb0"
)
tdSql
.
checkData
(
0
,
0
,
10000
)
tdSql
.
execute
(
"drop database if exists db"
)
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insertInterlaceRowsLarge1M.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insertInterlaceRowsLarge1M.json -y "
%
binPath
)
tdSql
.
query
(
"select count(*) from db.stb0"
)
tdSql
.
checkRows
(
0
)
tdSql
.
execute
(
"drop database if exists db"
)
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insertColumnsNum0.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insertColumnsNum0.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
(
"%staos
demo
-f tools/taosdemoAllTest/insertTagsNumLarge128.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insertTagsNumLarge128.json -y "
%
binPath
)
tdSql
.
error
(
"use db1"
)
tdSql
.
execute
(
"drop database if exists db"
)
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insertBinaryLenLarge16374AllcolLar49151.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insertBinaryLenLarge16374AllcolLar49151.json -y "
%
binPath
)
tdSql
.
query
(
"select count(*) from db.stb0"
)
tdSql
.
checkRows
(
1
)
tdSql
.
query
(
"select count(*) from db.stb1"
)
...
...
@@ -218,19 +218,19 @@ class TDTestCase:
tdSql
.
query
(
"select count(*) from db.stb3"
)
tdSql
.
checkRows
(
1
)
tdSql
.
execute
(
"drop database if exists db"
)
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insertNumOfrecordPerReq0.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insertNumOfrecordPerReq0.json -y "
%
binPath
)
tdSql
.
error
(
"select count(*) from db.stb0"
)
tdSql
.
execute
(
"drop database if exists db"
)
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insertNumOfrecordPerReqless0.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insertNumOfrecordPerReqless0.json -y "
%
binPath
)
tdSql
.
error
(
"use db"
)
tdSql
.
execute
(
"drop database if exists db"
)
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insertChildTab0.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insertChildTab0.json -y "
%
binPath
)
tdSql
.
error
(
"use db"
)
tdSql
.
execute
(
"drop database if exists db"
)
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insertChildTabLess0.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insertChildTabLess0.json -y "
%
binPath
)
tdSql
.
error
(
"use db"
)
tdSql
.
execute
(
"drop database if exists blf"
)
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insertTimestepMulRowsLargeint16.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insertTimestepMulRowsLargeint16.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"
)
...
...
@@ -238,7 +238,7 @@ class TDTestCase:
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"
)
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insertMaxNumPerReq.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insertMaxNumPerReq.json -y "
%
binPath
)
tdSql
.
execute
(
"use db"
)
tdSql
.
query
(
"select count(*) from stb0"
)
tdSql
.
checkData
(
0
,
0
,
5000000
)
...
...
@@ -248,7 +248,7 @@ class TDTestCase:
# insert: timestamp and step
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insert-timestep.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insert-timestep.json -y "
%
binPath
)
tdSql
.
execute
(
"use db"
)
tdSql
.
query
(
"show stables"
)
tdSql
.
query
(
"select count (tbname) from stb0"
)
...
...
@@ -265,7 +265,7 @@ class TDTestCase:
tdSql
.
checkData
(
0
,
0
,
400
)
# # insert: disorder_ratio
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insert-disorder.json -g 2>&1 -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insert-disorder.json -g 2>&1 -y "
%
binPath
)
tdSql
.
execute
(
"use db"
)
tdSql
.
query
(
"select count (tbname) from stb0"
)
tdSql
.
checkData
(
0
,
0
,
1
)
...
...
@@ -277,7 +277,7 @@ class TDTestCase:
tdSql
.
checkData
(
0
,
0
,
10
)
# insert: sample json
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insert-sample-ts.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insert-sample-ts.json -y "
%
binPath
)
tdSql
.
execute
(
"use dbtest123"
)
tdSql
.
query
(
"select c2 from stb0"
)
tdSql
.
checkData
(
0
,
0
,
2147483647
)
...
...
@@ -296,7 +296,7 @@ class TDTestCase:
tdSql
.
checkRows
(
10
)
# insert: sample json
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insert-sample.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insert-sample.json -y "
%
binPath
)
tdSql
.
execute
(
"use dbtest123"
)
tdSql
.
query
(
"select c2 from stb0"
)
tdSql
.
checkData
(
0
,
0
,
2147483647
)
...
...
@@ -309,7 +309,7 @@ class TDTestCase:
# insert: test interlace parament
os
.
system
(
"%staos
demo
-f tools/taosdemoAllTest/insert-interlace-row.json -y "
%
binPath
)
os
.
system
(
"%staos
Benchmark
-f tools/taosdemoAllTest/insert-interlace-row.json -y "
%
binPath
)
tdSql
.
execute
(
"use db"
)
tdSql
.
query
(
"select count (tbname) from stb0"
)
tdSql
.
checkData
(
0
,
0
,
100
)
...
...
@@ -322,7 +322,7 @@ class TDTestCase:
tdSql
.
execute
(
'drop database if exists db'
)
tdSql
.
execute
(
'create database db'
)
tdSql
.
execute
(
'use db'
)
os
.
system
(
"%staos
demo
-y -f tools/taosdemoAllTest/insert-drop-exist-auto-N00.json "
%
binPath
)
# drop = no, child_table_exists, auto_create_table varies
os
.
system
(
"%staos
Benchmark
-y -f tools/taosdemoAllTest/insert-drop-exist-auto-N00.json "
%
binPath
)
# drop = no, child_table_exists, auto_create_table varies
tdSql
.
execute
(
'use db'
)
tdSql
.
query
(
'show tables like
\'
NN123%
\'
'
)
#child_table_exists = no, auto_create_table varies = 123
tdSql
.
checkRows
(
20
)
...
...
@@ -338,7 +338,7 @@ class TDTestCase:
tdSql
.
checkRows
(
0
)
tdSql
.
execute
(
'drop database if exists db'
)
os
.
system
(
"%staos
demo
-y -f tools/taosdemoAllTest/insert-drop-exist-auto-Y00.json "
%
binPath
)
# drop = yes, child_table_exists, auto_create_table varies
os
.
system
(
"%staos
Benchmark
-y -f tools/taosdemoAllTest/insert-drop-exist-auto-Y00.json "
%
binPath
)
# drop = yes, child_table_exists, auto_create_table varies
tdSql
.
execute
(
'use db'
)
tdSql
.
query
(
'show tables like
\'
YN123%
\'
'
)
#child_table_exists = no, auto_create_table varies = 123
tdSql
.
checkRows
(
20
)
...
...
@@ -353,6 +353,15 @@ class TDTestCase:
tdSql
.
query
(
'show tables like
\'
YYY%
\'
'
)
#child_table_exists = yes, auto_create_table varies = yes
tdSql
.
checkRows
(
20
)
# insert: test chinese encoding
os
.
system
(
"%staosBenchmark -f tools/taosdemoAllTest/insert-chinese.json -y "
%
binPath
)
tdSql
.
execute
(
"use db"
)
tdSql
.
query
(
"select count (tbname) from stb0"
)
tdSql
.
checkData
(
0
,
0
,
10
)
tdSql
.
query
(
"select count (*) from stb0"
)
tdSql
.
checkData
(
0
,
0
,
1500
)
# rm useless files
os
.
system
(
"rm -rf ./insert*_res.txt*"
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录