Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
206163d5
T
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
Star
22015
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
206163d5
编写于
2月 19, 2021
作者:
L
liuyq-617
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add testcase for unsigned
上级
e90db183
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
227 addition
and
11 deletion
+227
-11
tests/examples/python/PYTHONConnectorChecker/PythonChecker.py
...s/examples/python/PYTHONConnectorChecker/PythonChecker.py
+7
-7
tests/pytest/insert/basic_unsigned.py
tests/pytest/insert/basic_unsigned.py
+4
-4
tests/pytest/insert/unsigenedInt.py
tests/pytest/insert/unsigenedInt.py
+108
-0
tests/pytest/insert/unsigenedSmallint.py
tests/pytest/insert/unsigenedSmallint.py
+108
-0
未找到文件。
tests/examples/python/PYTHONConnectorChecker/PythonChecker.py
浏览文件 @
206163d5
...
...
@@ -31,7 +31,7 @@ class ConnectorChecker:
numOfRows
=
self
.
cl
.
rowcount
numOfCols
=
len
(
self
.
cl
.
description
)
for
irow
in
range
(
numOfRows
):
print
(
"Row%d: ts=%s, temperature=%
d, humidity=%f"
%
(
irow
,
data
[
irow
][
0
],
data
[
irow
][
1
],
data
[
irow
][
2
]))
print
(
"Row%d: ts=%s, temperature=%
s"
%
(
irow
,
data
[
irow
][
0
],
data
[
irow
][
1
]))
except
Exception
as
e
:
print
(
"Failure sql: %s,exception: %s"
%
sql
,
str
(
e
))
def
execute
(
self
,
sql
):
...
...
@@ -64,7 +64,7 @@ class ConnectorChecker:
sql
=
"insert into test.weather (ts, temperature, humidity) values(now, 20.5, 34)"
self
.
execute
(
sql
)
def
checkSelect
(
self
):
sql
=
"select * from
test.weather
"
sql
=
"select * from
db.tt
"
self
.
executeQuery
(
sql
)
def
srun
(
self
):
try
:
...
...
@@ -97,11 +97,11 @@ def main(argv):
checker
.
init
()
checker
.
sethdt
(
FQDN
,
dbname
,
tbname
)
checker
.
srun
()
checker
.
createDatabase
()
checker
.
useDatabase
()
checker
.
checkDropTable
()
checker
.
createTable
()
checker
.
checkInsert
()
#
checker.createDatabase()
#
checker.useDatabase()
#
checker.checkDropTable()
#
checker.createTable()
#
checker.checkInsert()
checker
.
checkSelect
()
checker
.
checkDropTable
()
checker
.
close
()
...
...
tests/pytest/insert/basic_unsigned.py
浏览文件 @
206163d5
...
...
@@ -26,7 +26,7 @@ class TDTestCase:
tdSql
.
prepare
()
ret
=
tdSql
.
execute
(
'create table tb (ts timestamp, speed int unsigned)'
)
'create table tb (ts timestamp, speed
big
int unsigned)'
)
insertRows
=
10
tdLog
.
info
(
"insert %d rows"
%
(
insertRows
))
...
...
@@ -36,13 +36,13 @@ class TDTestCase:
(
i
,
i
))
tdLog
.
info
(
"insert earlier data"
)
tdSql
.
execute
(
'insert into tb values (now - 5m ,
10
)'
)
tdSql
.
execute
(
'insert into tb values (now - 5m ,
NULL
)'
)
tdSql
.
execute
(
'insert into tb values (now - 6m , 10)'
)
tdSql
.
execute
(
'insert into tb values (now - 7m , 10)'
)
tdSql
.
execute
(
'insert into tb values (now - 8m ,
429496729
4)'
)
tdSql
.
execute
(
'insert into tb values (now - 8m ,
1844674407370955161
4)'
)
tdSql
.
error
(
'insert into tb values (now - 9m, -1)'
)
tdSql
.
error
(
'insert into tb values (now - 9m, 4294967295)'
)
#
tdSql.error('insert into tb values (now - 9m, 4294967295)')
tdSql
.
query
(
"select * from tb"
)
tdSql
.
checkRows
(
insertRows
+
4
)
...
...
tests/pytest/insert/unsigenedInt.py
0 → 100644
浏览文件 @
206163d5
# -*- coding: utf-8 -*-
import
sys
from
util.log
import
*
from
util.cases
import
*
from
util.sql
import
*
class
TDTestCase
:
def
init
(
self
,
conn
,
logSql
):
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
def
run
(
self
):
tdSql
.
prepare
()
tdLog
.
info
(
'=============== step1'
)
tdLog
.
info
(
'create table tb (ts timestamp, speed int unsigned)'
)
tdSql
.
execute
(
'create table tb (ts timestamp, speed int unsigned)'
)
tdLog
.
info
(
"insert into tb values (now, NULL)"
)
tdSql
.
execute
(
"insert into tb values (now, NULL)"
)
tdLog
.
info
(
'select * from tb order by ts desc'
)
tdSql
.
query
(
'select * from tb order by ts desc'
)
tdLog
.
info
(
'tdSql.checkRow(1)'
)
tdSql
.
checkRows
(
1
)
tdLog
.
info
(
'tdSql.checkData(0, 1, null)'
)
tdSql
.
checkData
(
0
,
1
,
None
)
tdLog
.
info
(
'=============== step2'
)
tdLog
.
info
(
"insert into tb values (now+1m, -1) -x step2"
)
tdSql
.
error
(
"insert into tb values (now+1m, -1) "
)
tdLog
.
info
(
"insert into tb values (now+1m, NULL)"
)
tdSql
.
execute
(
"insert into tb values (now+1m, NULL)"
)
tdLog
.
info
(
'select * from tb order by ts desc'
)
tdSql
.
query
(
'select * from tb order by ts desc'
)
tdLog
.
info
(
'tdSql.checkRow(2)'
)
tdSql
.
checkRows
(
2
)
tdLog
.
info
(
'tdSql.checkData(0, 1, null)'
)
tdSql
.
checkData
(
0
,
1
,
None
)
tdLog
.
info
(
'=============== step3'
)
tdLog
.
info
(
"insert into tb values (now+2m, 4294967294)"
)
tdSql
.
execute
(
"insert into tb values (now+2m, 4294967294)"
)
tdLog
.
info
(
'select * from tb order by ts desc'
)
tdSql
.
query
(
'select * from tb order by ts desc'
)
tdLog
.
info
(
'tdSql.checkRow(3)'
)
tdSql
.
checkRows
(
3
)
tdLog
.
info
(
'tdSql.checkData(0, 1, 254)'
)
tdSql
.
checkData
(
0
,
1
,
254
)
tdLog
.
info
(
'=============== step4'
)
tdLog
.
info
(
"insert into tb values (now+3m, 4294967295) -x step4"
)
tdSql
.
error
(
"insert into tb values (now+3m, 4294967295)"
)
tdLog
.
info
(
"insert into tb values (now+3m, NULL)"
)
tdSql
.
execute
(
"insert into tb values (now+3m, NULL)"
)
tdLog
.
info
(
'select * from tb'
)
tdSql
.
query
(
'select * from tb'
)
tdLog
.
info
(
'tdSql.checkRow(4)'
)
tdSql
.
checkRows
(
4
)
tdLog
.
info
(
'tdSql.checkData(0, 1, null)'
)
tdSql
.
checkData
(
0
,
1
,
None
)
tdLog
.
info
(
'=============== step5'
)
tdLog
.
info
(
"insert into tb values (now+4m, a2)"
)
tdSql
.
error
(
"insert into tb values (now+4m, a2)"
)
tdLog
.
info
(
"insert into tb values (now-4m, -1)"
)
tdSql
.
error
(
"insert into tb values (now-4m, -1)"
)
tdLog
.
info
(
"insert into tb values (now+4m, 0)"
)
tdSql
.
execute
(
"insert into tb values (now+4m, 0)"
)
tdLog
.
info
(
'select * from tb order by ts desc'
)
tdSql
.
query
(
'select * from tb order by ts desc'
)
tdLog
.
info
(
'tdSql.checkRow(5)'
)
tdSql
.
checkRows
(
5
)
tdLog
.
info
(
'tdSql.checkData(0, 1, 0)'
)
tdSql
.
checkData
(
0
,
1
,
0
)
tdLog
.
info
(
'=============== step6'
)
tdLog
.
info
(
"insert into tb values (now+5m, 2a)"
)
tdSql
.
error
(
"insert into tb values (now+5m, 2a)"
)
tdLog
.
info
(
"insert into tb values (now+5m, 2)"
)
tdSql
.
execute
(
"insert into tb values (now+5m, 2)"
)
tdLog
.
info
(
'select * from tb order by ts desc'
)
tdSql
.
query
(
'select * from tb order by ts desc'
)
tdLog
.
info
(
'tdSql.checkRow(6)'
)
tdSql
.
checkRows
(
6
)
tdLog
.
info
(
'tdSql.checkData(0, 1, 2)'
)
tdSql
.
checkData
(
0
,
1
,
2
)
tdLog
.
info
(
'=============== step7'
)
tdLog
.
info
(
"insert into tb values (now+6m, 2a'1)"
)
tdSql
.
error
(
"insert into tb values (now+6m, 2a'1)"
)
tdLog
.
info
(
"insert into tb values (now+6m, 2)"
)
tdSql
.
execute
(
"insert into tb values (now+6m, 2)"
)
tdLog
.
info
(
'select * from tb order by ts desc'
)
tdSql
.
query
(
'select * from tb order by ts desc'
)
tdLog
.
info
(
'tdSql.checkRow(7)'
)
tdSql
.
checkRows
(
7
)
tdLog
.
info
(
'tdSql.checkData(0, 1, 2)'
)
tdSql
.
checkData
(
0
,
1
,
2
)
tdLog
.
info
(
'drop database db'
)
tdSql
.
execute
(
'drop database db'
)
tdLog
.
info
(
'show databases'
)
tdSql
.
query
(
'show databases'
)
tdLog
.
info
(
'tdSql.checkRow(0)'
)
tdSql
.
checkRows
(
0
)
# convert end
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
"%s successfully executed"
%
__file__
)
tdCases
.
addWindows
(
__file__
,
TDTestCase
())
tdCases
.
addLinux
(
__file__
,
TDTestCase
())
tests/pytest/insert/unsigenedSmallint.py
0 → 100644
浏览文件 @
206163d5
# -*- coding: utf-8 -*-
import
sys
from
util.log
import
*
from
util.cases
import
*
from
util.sql
import
*
class
TDTestCase
:
def
init
(
self
,
conn
,
logSql
):
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
def
run
(
self
):
tdSql
.
prepare
()
tdLog
.
info
(
'=============== step1'
)
tdLog
.
info
(
'create table tb (ts timestamp, speed smallint unsigned)'
)
tdSql
.
execute
(
'create table tb (ts timestamp, speed smallint unsigned)'
)
tdLog
.
info
(
"insert into tb values (now, NULL)"
)
tdSql
.
execute
(
"insert into tb values (now, NULL)"
)
tdLog
.
info
(
'select * from tb order by ts desc'
)
tdSql
.
query
(
'select * from tb order by ts desc'
)
tdLog
.
info
(
'tdSql.checkRow(1)'
)
tdSql
.
checkRows
(
1
)
tdLog
.
info
(
'tdSql.checkData(0, 1, null)'
)
tdSql
.
checkData
(
0
,
1
,
None
)
tdLog
.
info
(
'=============== step2'
)
tdLog
.
info
(
"insert into tb values (now+1m, -1) -x step2"
)
tdSql
.
error
(
"insert into tb values (now+1m, -1) "
)
tdLog
.
info
(
"insert into tb values (now+1m, NULL)"
)
tdSql
.
execute
(
"insert into tb values (now+1m, NULL)"
)
tdLog
.
info
(
'select * from tb order by ts desc'
)
tdSql
.
query
(
'select * from tb order by ts desc'
)
tdLog
.
info
(
'tdSql.checkRow(2)'
)
tdSql
.
checkRows
(
2
)
tdLog
.
info
(
'tdSql.checkData(0, 1, null)'
)
tdSql
.
checkData
(
0
,
1
,
None
)
tdLog
.
info
(
'=============== step3'
)
tdLog
.
info
(
"insert into tb values (now+2m, 4294967294)"
)
tdSql
.
execute
(
"insert into tb values (now+2m, 4294967294)"
)
tdLog
.
info
(
'select * from tb order by ts desc'
)
tdSql
.
query
(
'select * from tb order by ts desc'
)
tdLog
.
info
(
'tdSql.checkRow(3)'
)
tdSql
.
checkRows
(
3
)
tdLog
.
info
(
'tdSql.checkData(0, 1, 254)'
)
tdSql
.
checkData
(
0
,
1
,
254
)
tdLog
.
info
(
'=============== step4'
)
tdLog
.
info
(
"insert into tb values (now+3m, 4294967295) -x step4"
)
tdSql
.
error
(
"insert into tb values (now+3m, 4294967295)"
)
tdLog
.
info
(
"insert into tb values (now+3m, NULL)"
)
tdSql
.
execute
(
"insert into tb values (now+3m, NULL)"
)
tdLog
.
info
(
'select * from tb'
)
tdSql
.
query
(
'select * from tb'
)
tdLog
.
info
(
'tdSql.checkRow(4)'
)
tdSql
.
checkRows
(
4
)
tdLog
.
info
(
'tdSql.checkData(0, 1, null)'
)
tdSql
.
checkData
(
0
,
1
,
None
)
tdLog
.
info
(
'=============== step5'
)
tdLog
.
info
(
"insert into tb values (now+4m, a2)"
)
tdSql
.
error
(
"insert into tb values (now+4m, a2)"
)
tdLog
.
info
(
"insert into tb values (now-4m, -1)"
)
tdSql
.
error
(
"insert into tb values (now-4m, -1)"
)
tdLog
.
info
(
"insert into tb values (now+4m, 0)"
)
tdSql
.
execute
(
"insert into tb values (now+4m, 0)"
)
tdLog
.
info
(
'select * from tb order by ts desc'
)
tdSql
.
query
(
'select * from tb order by ts desc'
)
tdLog
.
info
(
'tdSql.checkRow(5)'
)
tdSql
.
checkRows
(
5
)
tdLog
.
info
(
'tdSql.checkData(0, 1, 0)'
)
tdSql
.
checkData
(
0
,
1
,
0
)
tdLog
.
info
(
'=============== step6'
)
tdLog
.
info
(
"insert into tb values (now+5m, 2a)"
)
tdSql
.
error
(
"insert into tb values (now+5m, 2a)"
)
tdLog
.
info
(
"insert into tb values (now+5m, 2)"
)
tdSql
.
execute
(
"insert into tb values (now+5m, 2)"
)
tdLog
.
info
(
'select * from tb order by ts desc'
)
tdSql
.
query
(
'select * from tb order by ts desc'
)
tdLog
.
info
(
'tdSql.checkRow(6)'
)
tdSql
.
checkRows
(
6
)
tdLog
.
info
(
'tdSql.checkData(0, 1, 2)'
)
tdSql
.
checkData
(
0
,
1
,
2
)
tdLog
.
info
(
'=============== step7'
)
tdLog
.
info
(
"insert into tb values (now+6m, 2a'1)"
)
tdSql
.
error
(
"insert into tb values (now+6m, 2a'1)"
)
tdLog
.
info
(
"insert into tb values (now+6m, 2)"
)
tdSql
.
execute
(
"insert into tb values (now+6m, 2)"
)
tdLog
.
info
(
'select * from tb order by ts desc'
)
tdSql
.
query
(
'select * from tb order by ts desc'
)
tdLog
.
info
(
'tdSql.checkRow(7)'
)
tdSql
.
checkRows
(
7
)
tdLog
.
info
(
'tdSql.checkData(0, 1, 2)'
)
tdSql
.
checkData
(
0
,
1
,
2
)
tdLog
.
info
(
'drop database db'
)
tdSql
.
execute
(
'drop database db'
)
tdLog
.
info
(
'show databases'
)
tdSql
.
query
(
'show databases'
)
tdLog
.
info
(
'tdSql.checkRow(0)'
)
tdSql
.
checkRows
(
0
)
# convert end
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
"%s successfully executed"
%
__file__
)
tdCases
.
addWindows
(
__file__
,
TDTestCase
())
tdCases
.
addLinux
(
__file__
,
TDTestCase
())
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录