Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
b66428c3
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看板
提交
b66428c3
编写于
1月 11, 2021
作者:
L
liuyq-617
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
multi-level
上级
3a096cc5
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
95 addition
and
2 deletion
+95
-2
tests/pytest/multilevel/basic.py
tests/pytest/multilevel/basic.py
+50
-0
tests/pytest/util/sql.py
tests/pytest/util/sql.py
+45
-2
未找到文件。
tests/pytest/multilevel/basic.py
0 → 100644
浏览文件 @
b66428c3
###################################################################
# 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
)
cfg
=
{
'dataDir'
:
'/mnt/data1'
,
'dataDir'
:
'/mnt/data2 0 0'
}
tdSql
.
createDir
(
'/mnt/data1'
)
tdSql
.
createDir
(
'/mnt/data2'
)
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/util/sql.py
浏览文件 @
b66428c3
...
...
@@ -16,9 +16,12 @@ import os
import
time
import
datetime
import
inspect
import
psutil
import
shutil
from
util.log
import
*
class
TDSql
:
def
__init__
(
self
):
self
.
queryRows
=
0
...
...
@@ -183,6 +186,46 @@ class TDSql:
tdLog
.
exit
(
"%s(%d) failed: sql:%s, affectedRows:%d != expect:%d"
%
args
)
tdLog
.
info
(
"sql:%s, affectedRows:%d == expect:%d"
%
(
self
.
sql
,
self
.
affectedRows
,
expectAffectedRows
))
def
taosdStatus
(
self
,
state
):
pstate
=
0
loop
=
0
for
i
in
range
(
30
):
pl
=
psutil
.
pids
()
for
pid
in
pl
:
if
psutil
.
Process
(
pid
).
name
==
'taosd'
:
pstate
=
1
loop
=
1
break
if
loop
:
break
time
.
sleep
(
5
)
if
pstate
==
state
:
tdLog
.
info
(
"taosd state is %d == expect:%d"
,
pstate
,
state
)
else
:
tdLog
.
exit
(
"taosd state is %d != expect:%d"
,
pstate
,
state
)
pass
def
haveFile
(
self
,
dir
,
state
):
if
os
.
path
.
exists
(
dir
)
and
os
.
path
.
isdir
(
dir
):
if
not
os
.
listdir
(
dir
):
if
state
:
tdLog
.
exit
(
"dir: %s is empty, expect: not empty"
,
dir
)
else
:
tdLog
.
info
(
"dir: %s is empty, expect: empty"
,
dir
)
else
:
if
state
:
tdLog
.
info
(
"dir: %s is empty, expect: not empty"
,
dir
)
else
:
tdLog
.
exit
(
"dir: %s is empty, expect: empty"
,
dir
)
else
:
tdLog
.
exit
(
"dir: %s doesn't exist"
,
dir
)
def
createDir
(
self
,
dir
):
if
os
.
path
.
exists
(
dir
):
shutil
.
rmtree
(
dir
)
tdLog
.
info
(
"dir: %s is removed"
,
dir
)
os
.
makedirs
(
dir
,
755
)
tdLog
.
info
(
"dir: %s is created"
,
dir
)
pass
tdSql
=
TDSql
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录