Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
38684edd
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
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看板
提交
38684edd
编写于
11月 20, 2021
作者:
haoranc
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-11094]<test>:update insert and query testcase of taosdemo
上级
b55d0864
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
37 addition
and
7 deletion
+37
-7
tests/pytest/tools/taosdemoAllTest/insert-default.json
tests/pytest/tools/taosdemoAllTest/insert-default.json
+16
-0
tests/pytest/tools/taosdemoAllTest/taosdemoTestInsertWithJson.py
...ytest/tools/taosdemoAllTest/taosdemoTestInsertWithJson.py
+11
-1
tests/pytest/tools/taosdemoAllTest/taosdemoTestQueryWithJson.py
...pytest/tools/taosdemoAllTest/taosdemoTestQueryWithJson.py
+10
-6
未找到文件。
tests/pytest/tools/taosdemoAllTest/insert-default.json
0 → 100644
浏览文件 @
38684edd
{
"filetype"
:
"insert"
,
"databases"
:
[{
"dbinfo"
:
{
"name"
:
"db"
},
"super_tables"
:
[{
"name"
:
"stb0"
,
"childtable_count"
:
100
,
"childtable_prefix"
:
"stb00_"
,
"insert_rows"
:
123
,
"columns"
:
[{
"type"
:
"INT"
},
{
"type"
:
"DOUBLE"
,
"count"
:
1
},
{
"type"
:
"BINARY"
,
"len"
:
16
,
"count"
:
1
},
{
"type"
:
"BINARY"
,
"len"
:
32
,
"count"
:
1
}],
"tags"
:
[{
"type"
:
"TINYINT"
,
"count"
:
2
},
{
"type"
:
"BINARY"
,
"len"
:
16
,
"count"
:
1
}]
}]
}]
}
tests/pytest/tools/taosdemoAllTest/taosdemoTestInsertWithJson.py
浏览文件 @
38684edd
...
...
@@ -80,7 +80,17 @@ class TDTestCase:
tdSql
.
query
(
"select count(*) from stb1"
)
tdSql
.
checkData
(
0
,
0
,
200
)
# default values json files
tdSql
.
execute
(
"drop database if exists db"
)
os
.
system
(
"%staosdemo -f tools/taosdemoAllTest/insert-default.json -y "
%
binPath
)
tdSql
.
query
(
"show databases;"
)
for
i
in
range
(
tdSql
.
queryRows
):
if
tdSql
.
queryResult
[
i
][
0
]
==
'db'
:
tdSql
.
checkData
(
i
,
2
,
100
)
tdSql
.
checkData
(
i
,
4
,
1
)
tdSql
.
checkData
(
i
,
6
,
10
)
tdSql
.
checkData
(
i
,
16
,
'ms'
)
# insert: create mutiple tables per sql and insert one rows per sql .
os
.
system
(
"%staosdemo -f tools/taosdemoAllTest/insert-1s1tntmr.json -y "
%
binPath
)
tdSql
.
execute
(
"use db"
)
...
...
tests/pytest/tools/taosdemoAllTest/taosdemoTestQueryWithJson.py
浏览文件 @
38684edd
...
...
@@ -52,8 +52,8 @@ class TDTestCase:
self
.
expectResult
=
expectResult
with
open
(
"%s"
%
filename
,
'r+'
)
as
f1
:
for
line
in
f1
.
readlines
():
queryResult
=
line
.
strip
().
split
()[
0
]
self
.
assertCheck
(
filename
,
queryResult
,
expectResult
)
queryResult
Taosc
=
line
.
strip
().
split
()[
0
]
self
.
assertCheck
(
filename
,
queryResult
Taosc
,
expectResult
)
# 获取restful接口查询的结果文件中的关键内容,目前的关键内容找到第一个key就跳出循,所以就只有一个数据。后续再修改多个结果文件。
def
getfileDataRestful
(
self
,
filename
):
...
...
@@ -65,9 +65,12 @@ class TDTestCase:
pattern
=
re
.
compile
(
"{.*}"
)
contents
=
pattern
.
search
(
contents
).
group
()
contentsDict
=
ast
.
literal_eval
(
contents
)
# 字符串转换为字典
queryResult
=
contentsDict
[
'data'
][
0
][
0
]
queryResult
Rest
=
contentsDict
[
'data'
][
0
][
0
]
break
return
queryResult
else
:
queryResultRest
=
""
return
queryResultRest
# 获取taosc接口查询次数
def
queryTimesTaosc
(
self
,
filename
):
...
...
@@ -185,9 +188,10 @@ class TDTestCase:
os
.
system
(
"%staosdemo -f tools/taosdemoAllTest/queryInsertdata.json"
%
binPath
)
os
.
system
(
exceptcode
=
os
.
system
(
"%staosdemo -f tools/taosdemoAllTest/queryQps.json"
%
binPath
)
assert
exceptcode
==
0
# use illegal or out of range parameters query json file
os
.
system
(
...
...
@@ -228,7 +232,7 @@ class TDTestCase:
os
.
system
(
"rm -rf tools/taosdemoAllTest/*.py.sql"
)
os
.
system
(
"rm -rf ./querySystemInfo*"
)
os
.
system
(
"rm -rf ./query_res*"
)
#
os.system("rm -rf ./all_query*")
# os.system("rm -rf ./all_query*")
os
.
system
(
"rm -rf ./test_query_res0.txt"
)
def
stop
(
self
):
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录