Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
fa36001c
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看板
提交
fa36001c
编写于
8月 01, 2023
作者:
C
chao.feng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add CI test case for ts-3479 by charles
上级
26375e83
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
126 addition
and
0 deletion
+126
-0
tests/system-test/0-others/user_privilege_multi_users.py
tests/system-test/0-others/user_privilege_multi_users.py
+126
-0
未找到文件。
tests/system-test/0-others/user_privilege_multi_users.py
0 → 100644
浏览文件 @
fa36001c
from
itertools
import
product
import
taos
import
random
from
taos.tmq
import
*
from
util.cases
import
*
from
util.common
import
*
from
util.log
import
*
from
util.sql
import
*
from
util.sqlset
import
*
class
TDTestCase
:
def
init
(
self
,
conn
,
logSql
,
replicaVar
=
1
):
self
.
replicaVar
=
int
(
replicaVar
)
tdLog
.
debug
(
"start to execute %s"
%
__file__
)
# init the tdsql
tdSql
.
init
(
conn
.
cursor
())
self
.
setsql
=
TDSetSql
()
# user info
self
.
userNum
=
100
self
.
basic_username
=
"user"
self
.
password
=
"pwd"
# db info
self
.
dbname
=
"user_privilege_multi_users"
self
.
stbname
=
'stb'
self
.
ctbname_num
=
100
self
.
column_dict
=
{
'ts'
:
'timestamp'
,
'col1'
:
'float'
,
'col2'
:
'int'
,
}
self
.
tag_dict
=
{
'ctbname'
:
'binary(10)'
}
self
.
privilege_list
=
[]
def
prepare_data
(
self
):
"""Create the db and data for test
"""
# create datebase
tdSql
.
execute
(
f
"create database
{
self
.
dbname
}
"
)
tdLog
.
debug
(
"sql:"
+
f
"create database
{
self
.
dbname
}
"
)
tdSql
.
execute
(
f
"use
{
self
.
dbname
}
"
)
tdLog
.
debug
(
"sql:"
+
f
"use
{
self
.
dbname
}
"
)
# create super table
tdSql
.
execute
(
self
.
setsql
.
set_create_stable_sql
(
self
.
stbname
,
self
.
column_dict
,
self
.
tag_dict
))
tdLog
.
debug
(
"Create stable {} successfully"
.
format
(
self
.
stbname
))
for
ctbIndex
in
range
(
self
.
ctbname_num
):
ctname
=
f
"ctb
{
ctbIndex
}
"
tdSql
.
execute
(
f
"create table
{
ctname
}
using
{
self
.
stbname
}
tags('
{
ctname
}
')"
)
tdLog
.
debug
(
"sql:"
+
f
"create table
{
ctname
}
using
{
self
.
stbname
}
tags('
{
ctname
}
')"
)
def
create_multiusers
(
self
):
"""Create the user for test
"""
for
userIndex
in
range
(
self
.
userNum
):
username
=
f
"
{
self
.
basic_username
}{
userIndex
}
"
tdSql
.
execute
(
f
'create user
{
username
}
pass "
{
self
.
password
}
"'
)
tdLog
.
debug
(
"sql:"
+
f
'create user
{
username
}
pass "
{
self
.
password
}
"'
)
def
grant_privilege
(
self
):
"""Add the privilege for the users
"""
try
:
for
userIndex
in
range
(
self
.
userNum
):
username
=
f
"
{
self
.
basic_username
}{
userIndex
}
"
privilege
=
random
.
choice
([
"read"
,
"write"
,
"all"
])
condition
=
f
"ctbname='ctb
{
userIndex
}
'"
self
.
privilege_list
.
append
({
"username"
:
username
,
"privilege"
:
privilege
,
"condition"
:
condition
})
tdSql
.
execute
(
f
'grant
{
privilege
}
on
{
self
.
dbname
}
.
{
self
.
stbname
}
with
{
condition
}
to
{
username
}
'
)
tdLog
.
debug
(
"sql:"
+
f
'grant
{
privilege
}
on
{
self
.
dbname
}
.
{
self
.
stbname
}
with
{
condition
}
to
{
username
}
'
)
except
Exception
as
ex
:
tdLog
.
exit
(
ex
)
def
remove_privilege
(
self
):
"""Remove the privilege for the users
"""
try
:
for
item
in
self
.
privilege_list
:
username
=
item
[
"username"
]
privilege
=
item
[
"privilege"
]
condition
=
item
[
"condition"
]
tdSql
.
execute
(
f
'revoke
{
privilege
}
on
{
self
.
dbname
}
.
{
self
.
stbname
}
with
{
condition
}
from
{
username
}
'
)
tdLog
.
debug
(
"sql:"
+
f
'revoke
{
privilege
}
on
{
self
.
dbname
}
.
{
self
.
stbname
}
with
{
condition
}
from
{
username
}
'
)
except
Exception
as
ex
:
tdLog
.
exit
(
ex
)
def
run
(
self
):
"""
Check the information from information_schema.ins_user_privileges
"""
self
.
create_multiusers
()
self
.
prepare_data
()
# grant privilege to users
self
.
grant_privilege
()
# check information_schema.ins_user_privileges
tdSql
.
query
(
"select * from information_schema.ins_user_privileges;"
)
tdLog
.
debug
(
"Current information_schema.ins_user_privileges values: {}"
.
format
(
tdSql
.
queryResult
))
if
len
(
tdSql
.
queryResult
)
>=
self
.
userNum
:
tdLog
.
debug
(
"case passed"
)
else
:
tdLog
.
exit
(
"The privilege number in information_schema.ins_user_privileges is incorrect"
)
def
stop
(
self
):
# remove the privilege
self
.
remove_privilege
()
# clear env
tdSql
.
execute
(
f
"drop database
{
self
.
dbname
}
"
)
# remove the users
for
userIndex
in
range
(
self
.
userNum
):
username
=
f
"
{
self
.
basic_username
}{
userIndex
}
"
tdSql
.
execute
(
f
'drop user
{
username
}
'
)
# close the connection
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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录