Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
1c0f981c
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看板
未验证
提交
1c0f981c
编写于
7月 07, 2020
作者:
S
Shengliang Guan
提交者:
GitHub
7月 07, 2020
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #2584 from taosdata/feature/sangshuduo/add-pytest-to-test-client
add python test to cover "alter dnode"
上级
8292c490
7c667191
变更
12
显示空白变更内容
内联
并排
Showing
12 changed file
with
214 addition
and
73 deletion
+214
-73
tests/pytest/alter/alter_table_crash.py
tests/pytest/alter/alter_table_crash.py
+1
-0
tests/pytest/client/client.py
tests/pytest/client/client.py
+3
-0
tests/pytest/fulltest.sh
tests/pytest/fulltest.sh
+3
-1
tests/pytest/insert/writeDBNonStop.py
tests/pytest/insert/writeDBNonStop.py
+3
-2
tests/pytest/query/filterAllIntTypes.py
tests/pytest/query/filterAllIntTypes.py
+29
-15
tests/pytest/query/queryJoin.py
tests/pytest/query/queryJoin.py
+2
-2
tests/pytest/query/queryMetaData.py
tests/pytest/query/queryMetaData.py
+63
-15
tests/pytest/query/queryMetaPerformace.py
tests/pytest/query/queryMetaPerformace.py
+101
-29
tests/pytest/query/select_last_crash.py
tests/pytest/query/select_last_crash.py
+3
-2
tests/pytest/random-test/random-test-multi-threading-3.py
tests/pytest/random-test/random-test-multi-threading-3.py
+0
-1
tests/pytest/regressiontest.sh
tests/pytest/regressiontest.sh
+2
-2
tests/pytest/smoketest.sh
tests/pytest/smoketest.sh
+4
-4
未找到文件。
tests/pytest/alter/alter_table_crash.py
浏览文件 @
1c0f981c
...
@@ -78,5 +78,6 @@ class TDTestCase:
...
@@ -78,5 +78,6 @@ class TDTestCase:
tdSql
.
close
()
tdSql
.
close
()
tdLog
.
success
(
"%s successfully executed"
%
__file__
)
tdLog
.
success
(
"%s successfully executed"
%
__file__
)
tdCases
.
addWindows
(
__file__
,
TDTestCase
())
tdCases
.
addWindows
(
__file__
,
TDTestCase
())
tdCases
.
addLinux
(
__file__
,
TDTestCase
())
tdCases
.
addLinux
(
__file__
,
TDTestCase
())
tests/pytest/client/client.py
浏览文件 @
1c0f981c
...
@@ -40,6 +40,9 @@ class TDTestCase:
...
@@ -40,6 +40,9 @@ class TDTestCase:
ret
=
tdSql
.
query
(
'select server_status() as result'
)
ret
=
tdSql
.
query
(
'select server_status() as result'
)
tdSql
.
checkData
(
0
,
0
,
1
)
tdSql
.
checkData
(
0
,
0
,
1
)
ret
=
tdSql
.
execute
(
'alter dnode 127.0.0.1 debugFlag 135'
)
tdLog
.
info
(
"alter dnode ret: %d"
%
ret
)
def
stop
(
self
):
def
stop
(
self
):
tdSql
.
close
()
tdSql
.
close
()
tdLog
.
success
(
"%s successfully executed"
%
__file__
)
tdLog
.
success
(
"%s successfully executed"
%
__file__
)
...
...
tests/pytest/fulltest.sh
浏览文件 @
1c0f981c
#!/bin/bash
#!/bin/bash
ulimit
-c
unlimited
ulimit
-c
unlimited
python3 ./test.py
-f
client/client.py
python3 ./test.py
-f
insert/basic.py
python3 ./test.py
-f
insert/basic.py
python3 ./test.py
-f
insert/int.py
python3 ./test.py
-f
insert/int.py
python3 ./test.py
-f
insert/float.py
python3 ./test.py
-f
insert/float.py
...
@@ -151,3 +150,6 @@ python3 ./test.py -f stream/stream2.py
...
@@ -151,3 +150,6 @@ python3 ./test.py -f stream/stream2.py
#alter table
#alter table
python3 ./test.py
-f
alter/alter_table_crash.py
python3 ./test.py
-f
alter/alter_table_crash.py
# client
python3 ./test.py
-f
client/client.py
tests/pytest/insert/writeDBNonStop.py
浏览文件 @
1c0f981c
...
@@ -75,6 +75,7 @@ class DBWriteNonStop:
...
@@ -75,6 +75,7 @@ class DBWriteNonStop:
self
.
cursor
.
close
()
self
.
cursor
.
close
()
self
.
conn
.
close
()
self
.
conn
.
close
()
test
=
DBWriteNonStop
()
test
=
DBWriteNonStop
()
test
.
connectDB
()
test
.
connectDB
()
test
.
createTable
()
test
.
createTable
()
...
...
tests/pytest/query/filterAllIntTypes.py
浏览文件 @
1c0f981c
...
@@ -89,16 +89,24 @@ class TDTestCase:
...
@@ -89,16 +89,24 @@ class TDTestCase:
tdSql
.
checkRows
(
101
)
tdSql
.
checkRows
(
101
)
# range for int type on column
# range for int type on column
tdSql
.
query
(
"select * from st%s where num > 50 and num < 100"
%
curType
)
tdSql
.
query
(
"select * from st%s where num > 50 and num < 100"
%
curType
)
tdSql
.
checkRows
(
49
)
tdSql
.
checkRows
(
49
)
tdSql
.
query
(
"select * from st%s where num >= 50 and num < 100"
%
curType
)
tdSql
.
query
(
"select * from st%s where num >= 50 and num < 100"
%
curType
)
tdSql
.
checkRows
(
50
)
tdSql
.
checkRows
(
50
)
tdSql
.
query
(
"select * from st%s where num > 50 and num <= 100"
%
curType
)
tdSql
.
query
(
"select * from st%s where num > 50 and num <= 100"
%
curType
)
tdSql
.
checkRows
(
50
)
tdSql
.
checkRows
(
50
)
tdSql
.
query
(
"select * from st%s where num >= 50 and num <= 100"
%
curType
)
tdSql
.
query
(
"select * from st%s where num >= 50 and num <= 100"
%
curType
)
tdSql
.
checkRows
(
51
)
tdSql
.
checkRows
(
51
)
# > for int type on tag
# > for int type on tag
...
@@ -137,13 +145,19 @@ class TDTestCase:
...
@@ -137,13 +145,19 @@ class TDTestCase:
tdSql
.
query
(
"select * from st%s where id > 5 and id < 7"
%
curType
)
tdSql
.
query
(
"select * from st%s where id > 5 and id < 7"
%
curType
)
tdSql
.
checkRows
(
10
)
tdSql
.
checkRows
(
10
)
tdSql
.
query
(
"select * from st%s where id >= 5 and id < 7"
%
curType
)
tdSql
.
query
(
"select * from st%s where id >= 5 and id < 7"
%
curType
)
tdSql
.
checkRows
(
20
)
tdSql
.
checkRows
(
20
)
tdSql
.
query
(
"select * from st%s where id > 5 and id <= 7"
%
curType
)
tdSql
.
query
(
"select * from st%s where id > 5 and id <= 7"
%
curType
)
tdSql
.
checkRows
(
20
)
tdSql
.
checkRows
(
20
)
tdSql
.
query
(
"select * from st%s where id >= 5 and id <= 7"
%
curType
)
tdSql
.
query
(
"select * from st%s where id >= 5 and id <= 7"
%
curType
)
tdSql
.
checkRows
(
30
)
tdSql
.
checkRows
(
30
)
print
(
print
(
...
...
tests/pytest/query/queryJoin.py
浏览文件 @
1c0f981c
tests/pytest/query/queryMetaData.py
浏览文件 @
1c0f981c
...
@@ -57,7 +57,7 @@ class MetadataQuery:
...
@@ -57,7 +57,7 @@ class MetadataQuery:
cursor
=
self
.
connectDB
()
cursor
=
self
.
connectDB
()
cursor
.
execute
(
"use test"
)
cursor
.
execute
(
"use test"
)
tablesPerThread
=
int
(
self
.
tables
/
self
.
numOfTherads
)
tablesPerThread
=
int
(
self
.
tables
/
self
.
numOfTherads
)
base
=
threadID
*
tablesPerThread
base
=
threadID
*
tablesPerThread
for
i
in
range
(
tablesPerThread
):
for
i
in
range
(
tablesPerThread
):
cursor
.
execute
(
cursor
.
execute
(
...
@@ -68,13 +68,61 @@ class MetadataQuery:
...
@@ -68,13 +68,61 @@ class MetadataQuery:
%d, %d, %d, %d, %f, %f, %d, 'taosdata%d', '涛思数据%d',
%d, %d, %d, %d, %f, %f, %d, 'taosdata%d', '涛思数据%d',
%d, %d, %d, %d, %f, %f, %d, 'taosdata%d', '涛思数据%d',
%d, %d, %d, %d, %f, %f, %d, 'taosdata%d', '涛思数据%d',
%d, %d, %d, %d, %f, %f, %d, 'taosdata%d', '涛思数据%d')'''
%
%d, %d, %d, %d, %f, %f, %d, 'taosdata%d', '涛思数据%d')'''
%
(
base
+
i
+
1
,
(
base
+
i
+
1
,
(
base
+
i
)
%
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
100
,
(
base
+
i
)
%
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
10000
,
(
base
+
i
)
%
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
1000000
,
(
base
+
i
)
%
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
100000000
,
(
base
+
i
)
%
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
100
*
1.1
,
(
base
+
i
)
%
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
))
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
))
cursor
.
execute
(
cursor
.
execute
(
"insert into t%d values(%d, 1) (%d, 2) (%d, 3) (%d, 4) (%d, 5)"
%
"insert into t%d values(%d, 1) (%d, 2) (%d, 3) (%d, 4) (%d, 5)"
%
...
...
tests/pytest/query/queryMetaPerformace.py
浏览文件 @
1c0f981c
...
@@ -19,6 +19,7 @@ import time
...
@@ -19,6 +19,7 @@ import time
from
datetime
import
datetime
from
datetime
import
datetime
import
numpy
as
np
import
numpy
as
np
class
MyThread
(
threading
.
Thread
):
class
MyThread
(
threading
.
Thread
):
def
__init__
(
self
,
func
,
args
=
()):
def
__init__
(
self
,
func
,
args
=
()):
...
@@ -35,17 +36,23 @@ class MyThread(threading.Thread):
...
@@ -35,17 +36,23 @@ class MyThread(threading.Thread):
except
Exception
:
except
Exception
:
return
None
return
None
class
MetadataQuery
:
class
MetadataQuery
:
def
initConnection
(
self
):
def
initConnection
(
self
):
self
.
tables
=
100
self
.
tables
=
100
self
.
records
=
10
self
.
records
=
10
self
.
numOfTherads
=
5
self
.
numOfTherads
=
5
self
.
ts
=
1537146000000
self
.
ts
=
1537146000000
self
.
host
=
"127.0.0.1"
self
.
host
=
"127.0.0.1"
self
.
user
=
"root"
self
.
user
=
"root"
self
.
password
=
"taosdata"
self
.
password
=
"taosdata"
self
.
config
=
"/etc/taos"
self
.
config
=
"/etc/taos"
self
.
conn
=
taos
.
connect
(
self
.
host
,
self
.
user
,
self
.
password
,
self
.
config
)
self
.
conn
=
taos
.
connect
(
self
.
host
,
self
.
user
,
self
.
password
,
self
.
config
)
def
connectDB
(
self
):
def
connectDB
(
self
):
return
self
.
conn
.
cursor
()
return
self
.
conn
.
cursor
()
...
@@ -69,7 +76,7 @@ class MetadataQuery:
...
@@ -69,7 +76,7 @@ class MetadataQuery:
cursor
.
execute
(
"use test"
)
cursor
.
execute
(
"use test"
)
base
=
threadID
*
self
.
tables
base
=
threadID
*
self
.
tables
tablesPerThread
=
int
(
self
.
tables
/
self
.
numOfTherads
)
tablesPerThread
=
int
(
self
.
tables
/
self
.
numOfTherads
)
for
i
in
range
(
tablesPerThread
):
for
i
in
range
(
tablesPerThread
):
cursor
.
execute
(
cursor
.
execute
(
'''create table t%d using meters tags(
'''create table t%d using meters tags(
...
@@ -79,20 +86,69 @@ class MetadataQuery:
...
@@ -79,20 +86,69 @@ class MetadataQuery:
%d, %d, %d, %d, %f, %f, %d, 'taosdata%d', '涛思数据%d',
%d, %d, %d, %d, %f, %f, %d, 'taosdata%d', '涛思数据%d',
%d, %d, %d, %d, %f, %f, %d, 'taosdata%d', '涛思数据%d',
%d, %d, %d, %d, %f, %f, %d, 'taosdata%d', '涛思数据%d',
%d, %d, %d, %d, %f, %f, %d, 'taosdata%d', '涛思数据%d')'''
%
%d, %d, %d, %d, %f, %f, %d, 'taosdata%d', '涛思数据%d')'''
%
(
base
+
i
+
1
,
(
base
+
i
+
1
,
(
base
+
i
)
%
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
100
,
(
base
+
i
)
%
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
10000
,
(
base
+
i
)
%
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
1000000
,
(
base
+
i
)
%
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
100000000
,
(
base
+
i
)
%
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
100
*
1.1
,
(
base
+
i
)
%
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
))
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
10000
,
(
base
+
i
)
%
1000000
,
(
base
+
i
)
%
100000000
,
(
base
+
i
)
%
100
*
1.1
,
(
base
+
i
)
%
100
*
2.3
,
(
base
+
i
)
%
2
,
(
base
+
i
)
%
100
,
(
base
+
i
)
%
100
))
for
j
in
range
(
self
.
records
):
for
j
in
range
(
self
.
records
):
cursor
.
execute
(
cursor
.
execute
(
"insert into t%d values(%d, %d)"
%
"insert into t%d values(%d, %d)"
%
(
base
+
i
+
1
,
self
.
ts
+
j
,
j
))
(
base
+
i
+
1
,
self
.
ts
+
j
,
j
))
cursor
.
close
()
cursor
.
close
()
def
queryWithTagId
(
self
,
threadId
,
tagId
,
queryNum
):
def
queryWithTagId
(
self
,
threadId
,
tagId
,
queryNum
):
print
(
"---------thread%d start-----------"
%
threadId
)
print
(
"---------thread%d start-----------"
%
threadId
)
query
=
'''select tgcol1, tgcol2, tgcol3, tgcol4, tgcol5, tgcol6, tgcol7, tgcol8, tgcol9,
query
=
'''select tgcol1, tgcol2, tgcol3, tgcol4, tgcol5, tgcol6, tgcol7, tgcol8, tgcol9,
tgcol10, tgcol11, tgcol12, tgcol13, tgcol14, tgcol15, tgcol16, tgcol17, tgcol18,
tgcol10, tgcol11, tgcol12, tgcol13, tgcol14, tgcol15, tgcol16, tgcol17, tgcol18,
tgcol19, tgcol20, tgcol21, tgcol22, tgcol23, tgcol24, tgcol25, tgcol26, tgcol27,
tgcol19, tgcol20, tgcol21, tgcol22, tgcol23, tgcol24, tgcol25, tgcol26, tgcol27,
...
@@ -105,11 +161,12 @@ class MetadataQuery:
...
@@ -105,11 +161,12 @@ class MetadataQuery:
cursor
.
execute
(
"use test"
)
cursor
.
execute
(
"use test"
)
for
i
in
range
(
queryNum
):
for
i
in
range
(
queryNum
):
startTime
=
time
.
time
()
startTime
=
time
.
time
()
cursor
.
execute
(
query
.
format
(
id
=
tagId
,
condition
=
i
))
cursor
.
execute
(
query
.
format
(
id
=
tagId
,
condition
=
i
))
cursor
.
fetchall
()
cursor
.
fetchall
()
latancy
.
append
((
time
.
time
()
-
startTime
))
latancy
.
append
((
time
.
time
()
-
startTime
))
print
(
"---------thread%d end-----------"
%
threadId
)
print
(
"---------thread%d end-----------"
%
threadId
)
return
latancy
return
latancy
def
queryData
(
self
,
query
):
def
queryData
(
self
,
query
):
cursor
=
self
.
connectDB
()
cursor
=
self
.
connectDB
()
cursor
.
execute
(
"use test"
)
cursor
.
execute
(
"use test"
)
...
@@ -124,7 +181,7 @@ class MetadataQuery:
...
@@ -124,7 +181,7 @@ class MetadataQuery:
(
endTime
-
startTime
).
seconds
)
(
endTime
-
startTime
).
seconds
)
cursor
.
close
()
cursor
.
close
()
#self.conn.close()
#
self.conn.close()
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
...
@@ -137,13 +194,28 @@ if __name__ == '__main__':
...
@@ -137,13 +194,28 @@ if __name__ == '__main__':
tagId
=
1
tagId
=
1
queryNum
=
1000
queryNum
=
1000
for
i
in
range
(
t
.
numOfTherads
):
for
i
in
range
(
t
.
numOfTherads
):
thread
=
MyThread
(
t
.
queryWithTagId
,
args
=
(
i
,
tagId
,
queryNum
))
thread
=
MyThread
(
t
.
queryWithTagId
,
args
=
(
i
,
tagId
,
queryNum
))
threads
.
append
(
thread
)
threads
.
append
(
thread
)
thread
.
start
()
thread
.
start
()
for
i
in
range
(
t
.
numOfTherads
):
for
i
in
range
(
t
.
numOfTherads
):
threads
[
i
].
join
()
threads
[
i
].
join
()
latancys
.
extend
(
threads
[
i
].
get_result
())
latancys
.
extend
(
threads
[
i
].
get_result
())
print
(
"Total query: %d"
%
(
queryNum
*
t
.
numOfTherads
))
print
(
"Total query: %d"
%
(
queryNum
*
t
.
numOfTherads
))
print
(
"statistic(s): mean= %f, P50 = %f, P75 = %f, P95 = %f, P99 = %f"
print
(
%
(
sum
(
latancys
)
/
(
queryNum
*
t
.
numOfTherads
),
np
.
percentile
(
latancys
,
50
),
np
.
percentile
(
latancys
,
75
),
np
.
percentile
(
latancys
,
95
),
np
.
percentile
(
latancys
,
99
)))
"statistic(s): mean= %f, P50 = %f, P75 = %f, P95 = %f, P99 = %f"
%
(
sum
(
latancys
)
/
(
queryNum
*
t
.
numOfTherads
),
np
.
percentile
(
latancys
,
50
),
np
.
percentile
(
latancys
,
75
),
np
.
percentile
(
latancys
,
95
),
np
.
percentile
(
latancys
,
99
)))
tests/pytest/query/select_last_crash.py
浏览文件 @
1c0f981c
...
@@ -23,7 +23,6 @@ class TDTestCase:
...
@@ -23,7 +23,6 @@ class TDTestCase:
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
())
tdSql
.
init
(
conn
.
cursor
())
self
.
rowNum
=
5000
self
.
rowNum
=
5000
self
.
ts
=
1537146000000
self
.
ts
=
1537146000000
...
@@ -36,7 +35,9 @@ class TDTestCase:
...
@@ -36,7 +35,9 @@ class TDTestCase:
"create table t1 using st tags('dev_001')"
)
"create table t1 using st tags('dev_001')"
)
for
i
in
range
(
self
.
rowNum
):
for
i
in
range
(
self
.
rowNum
):
tdSql
.
execute
(
"insert into t1 values(%d, 'taosdata%d', %d)"
%
(
self
.
ts
+
i
,
i
+
1
,
i
+
1
))
tdSql
.
execute
(
"insert into t1 values(%d, 'taosdata%d', %d)"
%
(
self
.
ts
+
i
,
i
+
1
,
i
+
1
))
tdSql
.
query
(
"select last(*) from st"
)
tdSql
.
query
(
"select last(*) from st"
)
tdSql
.
checkRows
(
1
)
tdSql
.
checkRows
(
1
)
...
...
tests/pytest/random-test/random-test-multi-threading-3.py
浏览文件 @
1c0f981c
...
@@ -330,7 +330,6 @@ class Test (Thread):
...
@@ -330,7 +330,6 @@ class Test (Thread):
self
.
q
.
put
(
-
1
)
self
.
q
.
put
(
-
1
)
tdLog
.
exit
(
"second thread failed, first thread exit too"
)
tdLog
.
exit
(
"second thread failed, first thread exit too"
)
elif
(
self
.
threadId
==
2
):
elif
(
self
.
threadId
==
2
):
while
True
:
while
True
:
self
.
dbEvent
.
wait
()
self
.
dbEvent
.
wait
()
...
...
tests/pytest/regressiontest.sh
浏览文件 @
1c0f981c
#!/bin/bash
#!/bin/bash
ulimit
-c
unlimited
ulimit
-c
unlimited
python3 ./test.py
-f
client/client.py
python3 ./test.py
-f
insert/basic.py
python3 ./test.py
-f
insert/basic.py
python3 ./test.py
-f
insert/int.py
python3 ./test.py
-f
insert/int.py
python3 ./test.py
-f
insert/float.py
python3 ./test.py
-f
insert/float.py
...
@@ -146,4 +145,5 @@ python3 ./test.py -f stream/stream2.py
...
@@ -146,4 +145,5 @@ python3 ./test.py -f stream/stream2.py
#alter table
#alter table
python3 ./test.py
-f
alter/alter_table_crash.py
python3 ./test.py
-f
alter/alter_table_crash.py
# client
python3 ./test.py
-f
client/client.py
tests/pytest/smoketest.sh
浏览文件 @
1c0f981c
#!/bin/bash
#!/bin/bash
ulimit
-c
unlimited
ulimit
-c
unlimited
# client
python3 ./test.py
$1
-f
client/client.py
python3 ./test.py
$1
-s
&&
sleep
1
# insert
# insert
python3 ./test.py
$1
-f
insert/basic.py
python3 ./test.py
$1
-f
insert/basic.py
python3 ./test.py
$1
-s
&&
sleep
1
python3 ./test.py
$1
-s
&&
sleep
1
...
@@ -35,3 +31,7 @@ python3 ./test.py $1 -s && sleep 1
...
@@ -35,3 +31,7 @@ python3 ./test.py $1 -s && sleep 1
python3 ./test.py
$1
-f
query/filter.py
python3 ./test.py
$1
-f
query/filter.py
python3 ./test.py
$1
-s
&&
sleep
1
python3 ./test.py
$1
-s
&&
sleep
1
# client
python3 ./test.py
$1
-f
client/client.py
python3 ./test.py
$1
-s
&&
sleep
1
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录