Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
6eeddb4b
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
Star
22015
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
6eeddb4b
编写于
12月 30, 2022
作者:
A
Alex Duan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add case feature function with loop check data
上级
ac67b69c
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
70 addition
and
9 deletion
+70
-9
tests/pytest/util/sql.py
tests/pytest/util/sql.py
+64
-0
tests/system-test/6-cluster/5dnode1mnode.py
tests/system-test/6-cluster/5dnode1mnode.py
+6
-9
未找到文件。
tests/pytest/util/sql.py
浏览文件 @
6eeddb4b
...
...
@@ -261,6 +261,70 @@ class TDSql:
tdLog
.
info
(
f
"sql:
{
self
.
sql
}
, row:
{
row
}
col:
{
col
}
data:
{
self
.
queryResult
[
row
][
col
]
}
== expect:
{
data
}
"
)
# return true or false replace exit, no print out
def
checkRowColNoExit
(
self
,
row
,
col
):
caller
=
inspect
.
getframeinfo
(
inspect
.
stack
()[
2
][
0
])
if
row
<
0
:
args
=
(
caller
.
filename
,
caller
.
lineno
,
self
.
sql
,
row
)
return
False
if
col
<
0
:
args
=
(
caller
.
filename
,
caller
.
lineno
,
self
.
sql
,
row
)
return
False
if
row
>
self
.
queryRows
:
args
=
(
caller
.
filename
,
caller
.
lineno
,
self
.
sql
,
row
,
self
.
queryRows
)
return
False
if
col
>
self
.
queryCols
:
args
=
(
caller
.
filename
,
caller
.
lineno
,
self
.
sql
,
col
,
self
.
queryCols
)
return
False
return
True
# return true or false replace exit, no print out
def
checkDataNoExit
(
self
,
row
,
col
,
data
):
if
self
.
checkRowColNoExit
(
row
,
col
)
==
False
:
return
False
if
self
.
queryResult
[
row
][
col
]
!=
data
:
if
self
.
cursor
.
istype
(
col
,
"TIMESTAMP"
):
# suppose user want to check nanosecond timestamp if a longer data passed
if
(
len
(
data
)
>=
28
):
if
pd
.
to_datetime
(
self
.
queryResult
[
row
][
col
])
==
pd
.
to_datetime
(
data
):
return
True
else
:
if
self
.
queryResult
[
row
][
col
]
==
_parse_datetime
(
data
):
return
True
return
False
if
str
(
self
.
queryResult
[
row
][
col
])
==
str
(
data
):
return
True
elif
isinstance
(
data
,
float
):
if
abs
(
data
)
>=
1
and
abs
((
self
.
queryResult
[
row
][
col
]
-
data
)
/
data
)
<=
0.000001
:
return
True
elif
abs
(
data
)
<
1
and
abs
(
self
.
queryResult
[
row
][
col
]
-
data
)
<=
0.000001
:
return
True
else
:
return
False
else
:
return
False
return
True
# loop execute sql then sleep(waitTime) , if checkData ok break loop
def
checkDataLoop
(
self
,
row
,
col
,
data
,
sql
,
loopCount
,
waitTime
):
# loop check util checkData return true
for
i
in
range
(
loopCount
):
self
.
query
(
sql
)
if
self
.
checkDataNoExit
(
row
,
col
,
data
)
:
self
.
checkData
(
row
,
col
,
data
)
return
time
.
sleep
(
waitTime
)
# last check
self
.
query
(
sql
)
self
.
checkData
(
row
,
col
,
data
)
def
getData
(
self
,
row
,
col
):
self
.
checkRowCol
(
row
,
col
)
return
self
.
queryResult
[
row
][
col
]
...
...
tests/system-test/6-cluster/5dnode1mnode.py
浏览文件 @
6eeddb4b
...
...
@@ -140,24 +140,21 @@ class TDTestCase:
def
check_alive
(
self
):
# check cluster alive
tdLog
.
printNoPrefix
(
"======== test cluster alive: "
)
tdSql
.
query
(
"show cluster alive;"
)
tdSql
.
checkData
(
0
,
0
,
1
)
tdSql
.
checkDataLoop
(
0
,
0
,
1
,
"show cluster alive;"
,
10
,
0.5
)
tdSql
.
query
(
"show db.alive;"
)
tdSql
.
checkData
(
0
,
0
,
1
)
# stop 5 dnode
self
.
TDDnodes
[
4
].
stoptaosd
()
tdSql
.
query
(
"show cluster alive;"
)
tdSql
.
checkData
(
0
,
0
,
2
)
self
.
TDDnodes
.
stoptaosd
(
5
)
tdSql
.
checkDataLoop
(
0
,
0
,
2
,
"show cluster alive;"
,
10
,
0.5
)
tdSql
.
query
(
"show db.alive;"
)
tdSql
.
checkData
(
0
,
0
,
2
)
# stop 2 dnode
self
.
TDDnodes
[
1
].
stoptaosd
()
tdSql
.
query
(
"show cluster alive;"
)
tdSql
.
checkData
(
0
,
0
,
0
)
self
.
TDDnodes
.
stoptaosd
(
2
)
tdSql
.
checkDataLoop
(
0
,
0
,
0
,
"show cluster alive;"
,
10
,
0.5
)
tdSql
.
query
(
"show db.alive;"
)
tdSql
.
checkData
(
0
,
0
,
0
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录