Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
74dae495
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看板
未验证
提交
74dae495
编写于
12月 23, 2021
作者:
H
Hui Li
提交者:
GitHub
12月 23, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #9290 from wu-champion/cpwu/TD-12163
[TD-12163] <test> add case for TD-12163
上级
17ade12a
c31fb383
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
122 addition
and
0 deletion
+122
-0
tests/system-test/4-taosAdapter/TD-12163.py
tests/system-test/4-taosAdapter/TD-12163.py
+118
-0
tests/system-test/fulltest-taosAdapter.sh
tests/system-test/fulltest-taosAdapter.sh
+4
-0
未找到文件。
tests/system-test/4-taosAdapter/TD-12163.py
0 → 100644
浏览文件 @
74dae495
###################################################################
# Copyright (c) 2020 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 taosdata
#
###################################################################
# -*- coding: utf-8 -*-
import
taos
import
time
import
requests
from
util.log
import
*
from
util.cases
import
*
from
util.sql
import
*
from
util.dnodes
import
*
class
TDTestCase
:
def
__init__
(
self
):
self
.
err_case
=
0
self
.
curret_case
=
0
self
.
url
=
"http://127.0.0.1:6041/rest/sql"
self
.
header
=
{
'Authorization'
:
'Basic cm9vdDp0YW9zZGF0YQ=='
}
def
caseDescription
(
self
):
'''
case1 <cpwu>: [TD-12163] alter table-schema using restful interface
'''
return
def
init
(
self
,
conn
,
logSql
):
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
tdSql
.
init
(
conn
.
cursor
(),
logSql
)
def
check_td12163
(
self
):
# basetime = int(round(time.time() * 1000))
tdSql
.
prepare
()
tdSql
.
execute
(
f
"create stable stb1(ts timestamp, c1 int) tags (tag1 int)"
)
tdSql
.
execute
(
f
"create table nt1 (nts timestamp, nc1 int)"
)
add_column_stb
=
"alter table db.stb1 add column c2 float"
drop_column_stb
=
"alter table db.stb1 drop column c2 "
add_column_ntb
=
"alter table db.nt1 add column nc2 float"
drop_column_ntb
=
"alter table db.nt1 drop column nc2 "
conn_add_stb
=
requests
.
post
(
url
=
self
.
url
,
headers
=
self
.
header
,
data
=
add_column_stb
)
resp_code_stb_add
=
conn_add_stb
.
status_code
resp_add_stb
=
conn_add_stb
.
json
()
try
:
assert
resp_code_stb_add
//
200
==
1
assert
resp_add_stb
[
"status"
]
==
"succ"
self
.
curret_case
+=
1
tdLog
.
printNoPrefix
(
"the case add column to stable successful"
)
except
:
self
.
err_case
+=
1
tdLog
.
printNoPrefix
(
"the case add column to stable failed"
)
conn_add_ntb
=
requests
.
post
(
url
=
self
.
url
,
headers
=
self
.
header
,
data
=
add_column_ntb
)
resp_code_ntb_add
=
conn_add_ntb
.
status_code
resp_add_ntb
=
conn_add_ntb
.
json
()
try
:
assert
resp_code_ntb_add
//
200
==
1
assert
resp_add_ntb
[
"status"
]
==
"succ"
self
.
curret_case
+=
1
tdLog
.
printNoPrefix
(
"the case add column to normal table successful"
)
except
:
self
.
err_case
+=
1
tdLog
.
printNoPrefix
(
"the case add column to normal table failed"
)
conn_drop_stb
=
requests
.
post
(
url
=
self
.
url
,
headers
=
self
.
header
,
data
=
drop_column_stb
)
resp_code_stb_drop
=
conn_drop_stb
.
status_code
resp_drop_stb
=
conn_drop_stb
.
json
()
try
:
assert
resp_code_stb_drop
//
200
==
1
assert
resp_drop_stb
[
"status"
]
==
"succ"
self
.
curret_case
+=
1
tdLog
.
printNoPrefix
(
"the case drop column to stable successful"
)
except
:
self
.
err_case
+=
1
tdLog
.
printNoPrefix
(
"the case add column to stable failed"
)
conn_drop_ntb
=
requests
.
post
(
url
=
self
.
url
,
headers
=
self
.
header
,
data
=
drop_column_ntb
)
resp_code_ntb_drop
=
conn_drop_ntb
.
status_code
resp_drop_ntb
=
conn_drop_ntb
.
json
()
try
:
assert
resp_code_ntb_drop
//
200
==
1
assert
resp_drop_ntb
[
"status"
]
==
"succ"
self
.
curret_case
+=
1
tdLog
.
printNoPrefix
(
"the case drop column to stable successful"
)
except
:
self
.
err_case
+=
1
tdLog
.
printNoPrefix
(
"the case add column to stable failed"
)
pass
def
run
(
self
):
self
.
check_td12163
()
if
self
.
err_case
>
0
:
tdLog
.
exit
(
f
"
{
self
.
err_case
}
case for TD-12163 run failed"
)
else
:
tdLog
.
success
(
"case for TD-12163 run passed"
)
def
stop
(
self
):
tdSql
.
close
()
tdLog
.
success
(
"%s successfully executed"
%
__file__
)
tdCases
.
addWindows
(
__file__
,
TDTestCase
())
tdCases
.
addLinux
(
__file__
,
TDTestCase
())
\ No newline at end of file
tests/system-test/fulltest-taosAdapter.sh
浏览文件 @
74dae495
python3 test.py
-f
4-taosAdapter/TD-12163.py
python3 ./test.py
-f
4-taosAdapter/taosAdapter_insert.py
python3 ./test.py
-f
4-taosAdapter/taosAdapter_query.py
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录