Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
f103fec9
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看板
提交
f103fec9
编写于
3月 17, 2023
作者:
A
Alex Duan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
test : test case execute
上级
b423314b
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
22 addition
and
13 deletion
+22
-13
tests/pytest/util/autogen.py
tests/pytest/util/autogen.py
+0
-5
tests/system-test/1-insert/insert_wide_coulum.py
tests/system-test/1-insert/insert_wide_coulum.py
+22
-8
未找到文件。
tests/pytest/util/autogen.py
浏览文件 @
f103fec9
...
...
@@ -112,11 +112,6 @@ class AutoGen:
sql
=
f
"create table
{
stbname
}
(ts timestamp,
{
cols
}
) tags(
{
tags
}
)"
tdSql
.
execute
(
sql
)
# create stream
sql
=
f
"create stream m_
{
stbname
}
fill_history 1 into st_
{
stbname
}
as select count(*) from
{
stbname
}
interval(100a);"
tdLog
.
info
(
f
" create stable
{
stbname
}
ok. column=
{
column_cnt
}
tag=
{
tag_cnt
}
"
)
# create child table
def
create_child
(
self
,
stbname
,
prename
,
cnt
):
self
.
child_cnt
=
cnt
...
...
tests/system-test/1-insert/insert_wide_coulum.py
浏览文件 @
f103fec9
...
...
@@ -11,9 +11,23 @@ import string
import
time
class
TDTestCase
:
def
init
(
self
,
conn
,
logSql
,
replicaVar
=
1
):
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
def
run
(
self
):
tdLog
.
info
(
"hello world."
)
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
"%s successfully executed"
%
__file__
)
#
# Test Main class
#
'''
class TDTestCase:
def init(self, conn, logSql, replicaVar=1):
self.replicaVar = int(replicaVar)
...
...
@@ -44,13 +58,13 @@ class TDTestCase:
dbname = "test"
stbname = "st"
childname = "d"
child_cnt
=
2
0
insert_rows
=
10
00
child_cnt = 2
insert_rows = 10
tag_cnt = 15
column_cnt
=
2
5
binary_len
=
3
0
nchar_len
=
4
5
self
.
autoGen
.
set_batch_size
(
500
)
column_cnt = 2
0
binary_len =
1024
0
nchar_len =
102
5
self.autoGen.set_batch_size(
1
)
# normal
self.test_db(dbname, stbname, childname, tag_cnt, column_cnt, child_cnt, insert_rows, binary_len, nchar_len)
...
...
@@ -58,7 +72,7 @@ class TDTestCase:
# max
dbname = "test_max_col"
child_cnt = 3
insert_rows
=
10
0
insert_rows =
5
0
tag_cnt = 128
binary_len = 3
nchar_len = 4
...
...
@@ -70,7 +84,7 @@ class TDTestCase:
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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录