Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
b89d65c9
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看板
提交
b89d65c9
编写于
1月 12, 2021
作者:
P
Ping Xiao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-2722]<test>: add test cases for muliple level storage
上级
02c96a2f
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
390 addition
and
0 deletion
+390
-0
tests/pytest/multilevel/fileDistributionSameLevel.py
tests/pytest/multilevel/fileDistributionSameLevel.py
+71
-0
tests/pytest/multilevel/illegelLevelMountPoint.py
tests/pytest/multilevel/illegelLevelMountPoint.py
+59
-0
tests/pytest/multilevel/middleLevelMissing.py
tests/pytest/multilevel/middleLevelMissing.py
+64
-0
tests/pytest/multilevel/retentionTest.py
tests/pytest/multilevel/retentionTest.py
+82
-0
tests/pytest/multilevel/threeLevelMountPoint.py
tests/pytest/multilevel/threeLevelMountPoint.py
+65
-0
tests/pytest/multilevel/wrongLevelMountPoint.py
tests/pytest/multilevel/wrongLevelMountPoint.py
+49
-0
未找到文件。
tests/pytest/multilevel/fileDistributionSameLevel.py
0 → 100644
浏览文件 @
b89d65c9
###################################################################
# Copyright (c) 2016 by TAOS Technologies, Inc.
# All rights reserved.
#
# This file is proprietary and confidential to TAOS Technologies.
# No part of this file may be reproduced, stored, transmitted,
# disclosed or used in any form or by any means other than as
# expressly provided by the written permission from Jianhui Tao
#
###################################################################
# -*- coding: utf-8 -*-
import
sys
import
taos
from
util.log
import
*
from
util.cases
import
*
from
util.sql
import
*
from
util.dnodes
import
*
class
TDTestCase
:
def
init
(
self
,
conn
,
logSql
):
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
def
run
(
self
):
self
.
ntables
=
10
self
.
rowsPerTable
=
10
self
.
ts
=
1520000010000
tdDnodes
.
stop
(
1
)
# Test1 1 dataDir
cfg
=
{
'10'
:
'maxVgroupsPerDb'
,
'/mnt/data00 0 1'
:
'dataDir'
,
'/mnt/data01 0 0'
:
'dataDir'
,
'/mnt/data02 0 0'
:
'dataDir'
,
'/mnt/data03 1 0'
:
'dataDir'
,
'/mnt/data04 1 0'
:
'dataDir'
}
tdSql
.
createDir
(
'/mnt/data00'
)
tdSql
.
createDir
(
'/mnt/data01'
)
tdSql
.
createDir
(
'/mnt/data02'
)
tdSql
.
createDir
(
'/mnt/data03'
)
tdSql
.
createDir
(
'/mnt/data04'
)
tdDnodes
.
deploy
(
1
,
cfg
)
tdDnodes
.
startWithoutSleep
(
1
)
tdSql
.
execute
(
"create database test days 1"
)
tdSql
.
execute
(
"use test"
)
tdSql
.
execute
(
"create table tb(ts timestamp, c int)"
)
for
i
in
range
(
self
.
rowsPerTable
):
tdSql
.
execute
(
"insert into tb values(%d, 1)"
%
(
self
.
ts
+
i
*
86400000
))
tdDnodes
.
stop
(
1
)
tdDnodes
.
start
(
1
)
tdSql
.
query
(
"select * from test.tb"
)
tdSql
.
checkRows
(
10
)
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
"%s successfully executed"
%
__file__
)
tdCases
.
addWindows
(
__file__
,
TDTestCase
())
tdCases
.
addLinux
(
__file__
,
TDTestCase
())
tests/pytest/multilevel/illegelLevelMountPoint.py
0 → 100644
浏览文件 @
b89d65c9
###################################################################
# Copyright (c) 2016 by TAOS Technologies, Inc.
# All rights reserved.
#
# This file is proprietary and confidential to TAOS Technologies.
# No part of this file may be reproduced, stored, transmitted,
# disclosed or used in any form or by any means other than as
# expressly provided by the written permission from Jianhui Tao
#
###################################################################
# -*- coding: utf-8 -*-
import
sys
import
taos
from
util.log
import
*
from
util.cases
import
*
from
util.sql
import
*
from
util.dnodes
import
*
class
TDTestCase
:
def
init
(
self
,
conn
,
logSql
):
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
def
run
(
self
):
self
.
ntables
=
10
self
.
rowsPerTable
=
10
self
.
startTime
=
1520000010000
tdDnodes
.
stop
(
1
)
# Test1 1 dataDir
cfg
=
{
'/mnt/data1 3 0'
:
'dataDir'
}
tdSql
.
createDir
(
'/mnt/data1'
)
tdDnodes
.
deploy
(
1
,
cfg
)
tdDnodes
.
startWithoutSleep
(
1
)
tdDnodes
.
stop
(
1
)
# Test1 1 dataDir
cfg
=
{
'/mnt/data1 -1 0'
:
'dataDir'
}
tdSql
.
createDir
(
'/mnt/data1'
)
tdDnodes
.
deploy
(
1
,
cfg
)
tdDnodes
.
startWithoutSleep
(
1
)
tdSql
.
taosdStatus
(
0
)
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
"%s successfully executed"
%
__file__
)
tdCases
.
addWindows
(
__file__
,
TDTestCase
())
tdCases
.
addLinux
(
__file__
,
TDTestCase
())
tests/pytest/multilevel/middleLevelMissing.py
0 → 100644
浏览文件 @
b89d65c9
###################################################################
# Copyright (c) 2016 by TAOS Technologies, Inc.
# All rights reserved.
#
# This file is proprietary and confidential to TAOS Technologies.
# No part of this file may be reproduced, stored, transmitted,
# disclosed or used in any form or by any means other than as
# expressly provided by the written permission from Jianhui Tao
#
###################################################################
# -*- coding: utf-8 -*-
import
sys
import
taos
from
util.log
import
*
from
util.cases
import
*
from
util.sql
import
*
from
util.dnodes
import
*
class
TDTestCase
:
def
init
(
self
,
conn
,
logSql
):
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
def
run
(
self
):
self
.
ntables
=
10
self
.
rowsPerTable
=
10
self
.
startTime
=
1520000010000
tdDnodes
.
stop
(
1
)
# Test1 1 dataDir
cfg
=
{
'/mnt/data1 1 0'
:
'dataDir'
}
tdSql
.
createDir
(
'/mnt/data1'
)
tdDnodes
.
deploy
(
1
,
cfg
)
tdDnodes
.
startWithoutSleep
(
1
)
tdSql
.
taosdStatus
(
0
)
tdDnodes
.
stop
(
1
)
# Test2 2 dataDir
cfg
=
{
'/mnt/data1 0 1'
:
'dataDir'
,
'/mnt/data1 2 0'
:
'dataDir'
}
tdSql
.
createDir
(
'/mnt/data1'
)
tdDnodes
.
deploy
(
1
,
cfg
)
tdDnodes
.
startWithoutSleep
(
1
)
tdSql
.
taosdStatus
(
0
)
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
"%s successfully executed"
%
__file__
)
tdCases
.
addWindows
(
__file__
,
TDTestCase
())
tdCases
.
addLinux
(
__file__
,
TDTestCase
())
tests/pytest/multilevel/retentionTest.py
0 → 100644
浏览文件 @
b89d65c9
###################################################################
# Copyright (c) 2016 by TAOS Technologies, Inc.
# All rights reserved.
#
# This file is proprietary and confidential to TAOS Technologies.
# No part of this file may be reproduced, stored, transmitted,
# disclosed or used in any form or by any means other than as
# expressly provided by the written permission from Jianhui Tao
#
###################################################################
# -*- coding: utf-8 -*-
import
sys
import
taos
import
os
from
util.log
import
*
from
util.cases
import
*
from
util.sql
import
*
from
util.dnodes
import
*
class
TDTestCase
:
def
init
(
self
,
conn
,
logSql
):
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
def
run
(
self
):
self
.
ntables
=
10
self
.
rowsPerTable
=
10
self
.
startTime
=
1520000010000
tdDnodes
.
stop
(
1
)
# Test1 1 dataDir
cfg
=
{
'/mnt/data00 0 1'
:
'dataDir'
,
'/mnt/data01 0 0'
:
'dataDir'
,
'/mnt/data02 0 0'
:
'dataDir'
,
'/mnt/data10 1 0'
:
'dataDir'
,
'/mnt/data11 1 0'
:
'dataDir'
,
'/mnt/data12 1 0'
:
'dataDir'
,
'/mnt/data20 2 0'
:
'dataDir'
,
'/mnt/data21 2 0'
:
'dataDir'
,
'/mnt/data22 2 0'
:
'dataDir'
}
tdSql
.
createDir
(
'/mnt/data00'
)
tdSql
.
createDir
(
'/mnt/data01'
)
tdSql
.
createDir
(
'/mnt/data02'
)
tdSql
.
createDir
(
'/mnt/data10'
)
tdSql
.
createDir
(
'/mnt/data11'
)
tdSql
.
createDir
(
'/mnt/data12'
)
tdSql
.
createDir
(
'/mnt/data20'
)
tdSql
.
createDir
(
'/mnt/data21'
)
tdSql
.
createDir
(
'/mnt/data22'
)
tdDnodes
.
deploy
(
1
,
cfg
)
tdDnodes
.
startWithoutSleep
(
1
)
tdSql
.
execute
(
"create database test days 1 keep 15,5,10"
)
tdSql
.
execute
(
"use test"
)
tdSql
.
execute
(
"create table tb(ts timestamp, c int)"
)
count
=
0
os
.
system
(
"sudo timedatectl set-ntp false"
)
for
i
in
range
(
self
.
rowsPerTable
):
tdSql
.
execute
(
"insert into tb values(now, 1)"
)
count
+=
1
tdSql
.
query
(
"select * from tb"
)
tdSql
.
checkRows
(
count
)
tdDnodes
.
stop
(
1
)
os
.
system
(
"sudo date -s $(date -d
\"
${DATE} 1 day
\"
\"
+%Y%m%d
\"
)"
)
tdDnodes
.
start
(
1
)
def
stop
(
self
):
os
.
system
(
"sudo timedatectl set-ntp true"
)
tdSql
.
close
()
tdLog
.
success
(
"%s successfully executed"
%
__file__
)
tdCases
.
addWindows
(
__file__
,
TDTestCase
())
tdCases
.
addLinux
(
__file__
,
TDTestCase
())
tests/pytest/multilevel/threeLevelMountPoint.py
0 → 100644
浏览文件 @
b89d65c9
###################################################################
# Copyright (c) 2016 by TAOS Technologies, Inc.
# All rights reserved.
#
# This file is proprietary and confidential to TAOS Technologies.
# No part of this file may be reproduced, stored, transmitted,
# disclosed or used in any form or by any means other than as
# expressly provided by the written permission from Jianhui Tao
#
###################################################################
# -*- coding: utf-8 -*-
import
sys
import
taos
from
util.log
import
*
from
util.cases
import
*
from
util.sql
import
*
from
util.dnodes
import
*
class
TDTestCase
:
def
init
(
self
,
conn
,
logSql
):
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
def
run
(
self
):
self
.
ntables
=
10
self
.
rowsPerTable
=
10
self
.
startTime
=
1520000010000
tdDnodes
.
stop
(
1
)
# Test1 1 dataDir
cfg
=
{
'/mnt/data00 0 1'
:
'dataDir'
,
'/mnt/data01 0 0'
:
'dataDir'
,
'/mnt/data02 0 0'
:
'dataDir'
,
'/mnt/data10 1 0'
:
'dataDir'
,
'/mnt/data11 1 0'
:
'dataDir'
,
'/mnt/data12 1 0'
:
'dataDir'
,
'/mnt/data20 2 0'
:
'dataDir'
,
'/mnt/data21 2 0'
:
'dataDir'
,
'/mnt/data22 2 0'
:
'dataDir'
}
tdSql
.
createDir
(
'/mnt/data00'
)
tdSql
.
createDir
(
'/mnt/data01'
)
tdSql
.
createDir
(
'/mnt/data02'
)
tdSql
.
createDir
(
'/mnt/data10'
)
tdSql
.
createDir
(
'/mnt/data11'
)
tdSql
.
createDir
(
'/mnt/data12'
)
tdSql
.
createDir
(
'/mnt/data20'
)
tdSql
.
createDir
(
'/mnt/data21'
)
tdSql
.
createDir
(
'/mnt/data22'
)
tdDnodes
.
deploy
(
1
,
cfg
)
tdDnodes
.
startWithoutSleep
(
1
)
tdSql
.
taosdStatus
(
1
)
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
"%s successfully executed"
%
__file__
)
tdCases
.
addWindows
(
__file__
,
TDTestCase
())
tdCases
.
addLinux
(
__file__
,
TDTestCase
())
tests/pytest/multilevel/wrongLevelMountPoint.py
0 → 100644
浏览文件 @
b89d65c9
###################################################################
# Copyright (c) 2016 by TAOS Technologies, Inc.
# All rights reserved.
#
# This file is proprietary and confidential to TAOS Technologies.
# No part of this file may be reproduced, stored, transmitted,
# disclosed or used in any form or by any means other than as
# expressly provided by the written permission from Jianhui Tao
#
###################################################################
# -*- coding: utf-8 -*-
import
sys
import
taos
from
util.log
import
*
from
util.cases
import
*
from
util.sql
import
*
from
util.dnodes
import
*
class
TDTestCase
:
def
init
(
self
,
conn
,
logSql
):
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
def
run
(
self
):
self
.
ntables
=
10
self
.
rowsPerTable
=
10
self
.
startTime
=
1520000010000
tdDnodes
.
stop
(
1
)
# Test1 1 dataDir
cfg
=
{
'/mnt/data1 1 1'
:
'dataDir'
}
tdSql
.
createDir
(
'/mnt/data1'
)
tdDnodes
.
deploy
(
1
,
cfg
)
tdDnodes
.
startWithoutSleep
(
1
)
tdSql
.
taosdStatus
(
0
)
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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录