Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
6bdaecb2
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
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看板
提交
6bdaecb2
编写于
4月 29, 2022
作者:
W
wenzhouwww@live.cn
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update case
上级
317242e8
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
190 addition
and
12 deletion
+190
-12
tests/system-test/2-query/abs.py
tests/system-test/2-query/abs.py
+38
-4
tests/system-test/2-query/ceil.py
tests/system-test/2-query/ceil.py
+37
-2
tests/system-test/2-query/floor.py
tests/system-test/2-query/floor.py
+37
-2
tests/system-test/2-query/log.py
tests/system-test/2-query/log.py
+39
-2
tests/system-test/2-query/round.py
tests/system-test/2-query/round.py
+38
-2
tests/system-test/fulltest.sh
tests/system-test/fulltest.sh
+1
-0
未找到文件。
tests/system-test/2-query/abs.py
浏览文件 @
6bdaecb2
...
...
@@ -7,8 +7,6 @@ from util.log import *
from
util.sql
import
*
from
util.cases
import
*
class
TDTestCase
:
updatecfgDict
=
{
'debugFlag'
:
143
,
"cDebugFlag"
:
143
,
"uDebugFlag"
:
143
,
"rpcDebugFlag"
:
143
,
"tmrDebugFlag"
:
143
,
"jniDebugFlag"
:
143
,
"simDebugFlag"
:
143
,
"dDebugFlag"
:
143
,
"dDebugFlag"
:
143
,
"vDebugFlag"
:
143
,
"mDebugFlag"
:
143
,
"qDebugFlag"
:
143
,
...
...
@@ -343,8 +341,40 @@ class TDTestCase:
def
abs_func_filter
(
self
):
pass
tdSql
.
query
(
"select c1, abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1>5 "
)
tdSql
.
checkRows
(
3
)
tdSql
.
checkData
(
0
,
0
,
8
)
tdSql
.
checkData
(
0
,
1
,
8.000000000
)
tdSql
.
checkData
(
0
,
2
,
8.000000000
)
tdSql
.
checkData
(
0
,
3
,
7.900000000
)
tdSql
.
checkData
(
0
,
4
,
3.000000000
)
tdSql
.
query
(
"select c1, abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1=5 "
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
5
)
tdSql
.
checkData
(
0
,
1
,
5.000000000
)
tdSql
.
checkData
(
0
,
2
,
5.000000000
)
tdSql
.
checkData
(
0
,
3
,
4.900000000
)
tdSql
.
checkData
(
0
,
4
,
2.000000000
)
tdSql
.
query
(
"select c1, abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1=5 "
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
5
)
tdSql
.
checkData
(
0
,
1
,
5.000000000
)
tdSql
.
checkData
(
0
,
2
,
5.000000000
)
tdSql
.
checkData
(
0
,
3
,
4.900000000
)
tdSql
.
checkData
(
0
,
4
,
2.000000000
)
tdSql
.
query
(
"select c1,c2 , abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1>log(c1,2) limit 1 "
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
8
)
tdSql
.
checkData
(
0
,
1
,
88888
)
tdSql
.
checkData
(
0
,
2
,
8.000000000
)
tdSql
.
checkData
(
0
,
3
,
8.000000000
)
tdSql
.
checkData
(
0
,
4
,
7.900000000
)
tdSql
.
checkData
(
0
,
5
,
3.000000000
)
def
abs_Arithmetic
(
self
):
pass
...
...
@@ -440,6 +470,10 @@ class TDTestCase:
self
.
check_boundary_values
()
tdLog
.
printNoPrefix
(
"==========step6: abs filter query ============"
)
self
.
abs_func_filter
()
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
f
"
{
__file__
}
successfully executed"
)
...
...
tests/system-test/2-query/ceil.py
浏览文件 @
6bdaecb2
...
...
@@ -339,8 +339,39 @@ class TDTestCase:
tdSql
.
checkData
(
1
,
1
,
8.000000000
)
tdSql
.
checkData
(
1
,
2
,
7.900000000
)
def
ceil_func_filter
(
self
):
pass
def
abs_func_filter
(
self
):
tdSql
.
query
(
"select c1, abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1>5 "
)
tdSql
.
checkRows
(
3
)
tdSql
.
checkData
(
0
,
0
,
8
)
tdSql
.
checkData
(
0
,
1
,
8.000000000
)
tdSql
.
checkData
(
0
,
2
,
8.000000000
)
tdSql
.
checkData
(
0
,
3
,
7.900000000
)
tdSql
.
checkData
(
0
,
4
,
3.000000000
)
tdSql
.
query
(
"select c1, abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1=5 "
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
5
)
tdSql
.
checkData
(
0
,
1
,
5.000000000
)
tdSql
.
checkData
(
0
,
2
,
5.000000000
)
tdSql
.
checkData
(
0
,
3
,
4.900000000
)
tdSql
.
checkData
(
0
,
4
,
2.000000000
)
tdSql
.
query
(
"select c1, abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1=5 "
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
5
)
tdSql
.
checkData
(
0
,
1
,
5.000000000
)
tdSql
.
checkData
(
0
,
2
,
5.000000000
)
tdSql
.
checkData
(
0
,
3
,
4.900000000
)
tdSql
.
checkData
(
0
,
4
,
2.000000000
)
tdSql
.
query
(
"select c1,c2 , abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1>log(c1,2) limit 1 "
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
8
)
tdSql
.
checkData
(
0
,
1
,
88888
)
tdSql
.
checkData
(
0
,
2
,
8.000000000
)
tdSql
.
checkData
(
0
,
3
,
8.000000000
)
tdSql
.
checkData
(
0
,
4
,
7.900000000
)
tdSql
.
checkData
(
0
,
5
,
3.000000000
)
def
ceil_Arithmetic
(
self
):
pass
...
...
@@ -419,6 +450,10 @@ class TDTestCase:
self
.
check_boundary_values
()
tdLog
.
printNoPrefix
(
"==========step6: ceil filter query ============"
)
self
.
abs_func_filter
()
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
f
"
{
__file__
}
successfully executed"
)
...
...
tests/system-test/2-query/floor.py
浏览文件 @
6bdaecb2
...
...
@@ -339,8 +339,39 @@ class TDTestCase:
tdSql
.
checkData
(
1
,
1
,
8.000000000
)
tdSql
.
checkData
(
1
,
2
,
6.900000000
)
def
floor_func_filter
(
self
):
pass
def
abs_func_filter
(
self
):
tdSql
.
query
(
"select c1, abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1>5 "
)
tdSql
.
checkRows
(
3
)
tdSql
.
checkData
(
0
,
0
,
8
)
tdSql
.
checkData
(
0
,
1
,
8.000000000
)
tdSql
.
checkData
(
0
,
2
,
8.000000000
)
tdSql
.
checkData
(
0
,
3
,
7.900000000
)
tdSql
.
checkData
(
0
,
4
,
3.000000000
)
tdSql
.
query
(
"select c1, abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1=5 "
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
5
)
tdSql
.
checkData
(
0
,
1
,
5.000000000
)
tdSql
.
checkData
(
0
,
2
,
5.000000000
)
tdSql
.
checkData
(
0
,
3
,
4.900000000
)
tdSql
.
checkData
(
0
,
4
,
2.000000000
)
tdSql
.
query
(
"select c1, abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1=5 "
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
5
)
tdSql
.
checkData
(
0
,
1
,
5.000000000
)
tdSql
.
checkData
(
0
,
2
,
5.000000000
)
tdSql
.
checkData
(
0
,
3
,
4.900000000
)
tdSql
.
checkData
(
0
,
4
,
2.000000000
)
tdSql
.
query
(
"select c1,c2 , abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1>log(c1,2) limit 1 "
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
8
)
tdSql
.
checkData
(
0
,
1
,
88888
)
tdSql
.
checkData
(
0
,
2
,
8.000000000
)
tdSql
.
checkData
(
0
,
3
,
8.000000000
)
tdSql
.
checkData
(
0
,
4
,
7.900000000
)
tdSql
.
checkData
(
0
,
5
,
3.000000000
)
def
floor_Arithmetic
(
self
):
pass
...
...
@@ -418,6 +449,10 @@ class TDTestCase:
self
.
check_boundary_values
()
tdLog
.
printNoPrefix
(
"==========step6: floor filter query ============"
)
self
.
abs_func_filter
()
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
f
"
{
__file__
}
successfully executed"
)
...
...
tests/system-test/2-query/log.py
浏览文件 @
6bdaecb2
...
...
@@ -506,8 +506,39 @@ class TDTestCase:
tdSql
.
checkData
(
4
,
1
,
None
)
def
log_func_filter
(
self
):
pass
def
abs_func_filter
(
self
):
tdSql
.
query
(
"select c1, abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1>5 "
)
tdSql
.
checkRows
(
3
)
tdSql
.
checkData
(
0
,
0
,
8
)
tdSql
.
checkData
(
0
,
1
,
8.000000000
)
tdSql
.
checkData
(
0
,
2
,
8.000000000
)
tdSql
.
checkData
(
0
,
3
,
7.900000000
)
tdSql
.
checkData
(
0
,
4
,
3.000000000
)
tdSql
.
query
(
"select c1, abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1=5 "
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
5
)
tdSql
.
checkData
(
0
,
1
,
5.000000000
)
tdSql
.
checkData
(
0
,
2
,
5.000000000
)
tdSql
.
checkData
(
0
,
3
,
4.900000000
)
tdSql
.
checkData
(
0
,
4
,
2.000000000
)
tdSql
.
query
(
"select c1, abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1=5 "
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
5
)
tdSql
.
checkData
(
0
,
1
,
5.000000000
)
tdSql
.
checkData
(
0
,
2
,
5.000000000
)
tdSql
.
checkData
(
0
,
3
,
4.900000000
)
tdSql
.
checkData
(
0
,
4
,
2.000000000
)
tdSql
.
query
(
"select c1,c2 , abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1>log(c1,2) limit 1 "
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
8
)
tdSql
.
checkData
(
0
,
1
,
88888
)
tdSql
.
checkData
(
0
,
2
,
8.000000000
)
tdSql
.
checkData
(
0
,
3
,
8.000000000
)
tdSql
.
checkData
(
0
,
4
,
7.900000000
)
tdSql
.
checkData
(
0
,
5
,
3.000000000
)
def
log_Arithmetic
(
self
):
pass
...
...
@@ -606,6 +637,12 @@ class TDTestCase:
self
.
check_boundary_values
()
tdLog
.
printNoPrefix
(
"==========step8: log filter query ============"
)
self
.
abs_func_filter
()
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
f
"
{
__file__
}
successfully executed"
)
...
...
tests/system-test/2-query/round.py
浏览文件 @
6bdaecb2
...
...
@@ -343,8 +343,40 @@ class TDTestCase:
tdSql
.
checkData
(
1
,
1
,
8.000000000
)
tdSql
.
checkData
(
1
,
2
,
7.900000000
)
def
round_func_filter
(
self
):
pass
def
abs_func_filter
(
self
):
tdSql
.
query
(
"select c1, abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1>5 "
)
tdSql
.
checkRows
(
3
)
tdSql
.
checkData
(
0
,
0
,
8
)
tdSql
.
checkData
(
0
,
1
,
8.000000000
)
tdSql
.
checkData
(
0
,
2
,
8.000000000
)
tdSql
.
checkData
(
0
,
3
,
7.900000000
)
tdSql
.
checkData
(
0
,
4
,
3.000000000
)
tdSql
.
query
(
"select c1, abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1=5 "
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
5
)
tdSql
.
checkData
(
0
,
1
,
5.000000000
)
tdSql
.
checkData
(
0
,
2
,
5.000000000
)
tdSql
.
checkData
(
0
,
3
,
4.900000000
)
tdSql
.
checkData
(
0
,
4
,
2.000000000
)
tdSql
.
query
(
"select c1, abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) from ct4 where c1=5 "
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
5
)
tdSql
.
checkData
(
0
,
1
,
5.000000000
)
tdSql
.
checkData
(
0
,
2
,
5.000000000
)
tdSql
.
checkData
(
0
,
3
,
4.900000000
)
tdSql
.
checkData
(
0
,
4
,
2.000000000
)
tdSql
.
query
(
"select c1,c2 , abs(c1) -0 ,ceil(c1-0.1)-0 ,floor(c1+0.1)-0.1 ,ceil(log(c1,2)-0.5) , round(abs(c1))-0.5 from ct4 where c1>log(c1,2) limit 1 "
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkData
(
0
,
0
,
8
)
tdSql
.
checkData
(
0
,
1
,
88888
)
tdSql
.
checkData
(
0
,
2
,
8.000000000
)
tdSql
.
checkData
(
0
,
3
,
8.000000000
)
tdSql
.
checkData
(
0
,
4
,
7.900000000
)
tdSql
.
checkData
(
0
,
5
,
3.000000000
)
tdSql
.
checkData
(
0
,
6
,
7.500000000
)
def
round_Arithmetic
(
self
):
pass
...
...
@@ -422,6 +454,10 @@ class TDTestCase:
self
.
check_boundary_values
()
tdLog
.
printNoPrefix
(
"==========step6: round filter query ============"
)
self
.
abs_func_filter
()
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
f
"
{
__file__
}
successfully executed"
)
...
...
tests/system-test/fulltest.sh
浏览文件 @
6bdaecb2
...
...
@@ -20,3 +20,4 @@ python3 ./test.py -f 2-query/abs.py
python3 ./test.py
-f
2-query/ceil.py
python3 ./test.py
-f
2-query/floor.py
python3 ./test.py
-f
2-query/round.py
python3 ./test.py
-f
2-query/log.py
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录