user_control.py 28.8 KB
Newer Older
C
cpwu 已提交
1
import taos
C
cpwu 已提交
2
import time
C
cpwu 已提交
3
import inspect
C
cpwu 已提交
4
import traceback
wafwerar's avatar
wafwerar 已提交
5
import socket
C
cpwu 已提交
6
from dataclasses  import dataclass
C
cpwu 已提交
7
from datetime import datetime
C
cpwu 已提交
8 9 10 11

from util.log import *
from util.sql import *
from util.cases import *
C
cpwu 已提交
12
from util.dnodes import *
C
cpwu 已提交
13
from util.common import *
C
cpwu 已提交
14 15 16 17 18

PRIVILEGES_ALL      = "ALL"
PRIVILEGES_READ     = "READ"
PRIVILEGES_WRITE    = "WRITE"

C
cpwu 已提交
19 20 21 22
WEIGHT_ALL      = 5
WEIGHT_READ     = 2
WEIGHT_WRITE    = 3

C
cpwu 已提交
23 24
PRIMARY_COL = "ts"

C
cpwu 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
INT_COL = "c_int"
BINT_COL = "c_bint"
SINT_COL = "c_sint"
TINT_COL = "c_tint"
FLOAT_COL = "c_float"
DOUBLE_COL = "c_double"
BOOL_COL = "c_bool"
TINT_UN_COL = "c_utint"
SINT_UN_COL = "c_usint"
BINT_UN_COL = "c_ubint"
INT_UN_COL = "c_uint"
BINARY_COL = "c_binary"
NCHAR_COL = "c_nchar"
TS_COL = "c_ts"

NUM_COL = [INT_COL, BINT_COL, SINT_COL, TINT_COL, FLOAT_COL, DOUBLE_COL, ]
CHAR_COL = [BINARY_COL, NCHAR_COL, ]
BOOLEAN_COL = [BOOL_COL, ]
TS_TYPE_COL = [TS_COL, ]

INT_TAG = "t_int"

ALL_COL = [PRIMARY_COL, INT_COL, BINT_COL, SINT_COL, TINT_COL, FLOAT_COL, DOUBLE_COL, BINARY_COL, NCHAR_COL, BOOL_COL, TS_COL]
TAG_COL = [INT_TAG]

# insert data args:
TIME_STEP = 10000
NOW = int(datetime.timestamp(datetime.now()) * 1000)

# init db/table
DBNAME  = "db"
STBNAME = "stb1"
CTBNAME = "ct1"
NTBNAME = "nt1"
C
cpwu 已提交
59

C
cpwu 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
class TDconnect:
    def __init__(self,
                 host       = None,
                 port       = None,
                 user       = None,
                 password   = None,
                 database   = None,
                 config     = None,
        ) -> None:
        self._conn      = None
        self._host      = host
        self._user      = user
        self._password  = password
        self._database  = database
        self._port      = port
        self._config    = config

    def __enter__(self):
        self._conn = taos.connect(
            host    =self._host,
            port    =self._port,
            user    =self._user,
            password=self._password,
            database=self._database,
            config  =self._config
        )

        self.cursor = self._conn.cursor()
C
cpwu 已提交
88
        return self
C
cpwu 已提交
89

C
cpwu 已提交
90 91 92 93 94 95
    def error(self, sql):
        expectErrNotOccured = True
        try:
            self.cursor.execute(sql)
        except BaseException:
            expectErrNotOccured = False
C
cpwu 已提交
96

C
cpwu 已提交
97 98
        if expectErrNotOccured:
            caller = inspect.getframeinfo(inspect.stack()[1][0])
C
cpwu 已提交
99
            tdLog.exit(f"{caller.filename}({caller.lineno}) failed: sql:{sql}, expect error not occured" )
C
cpwu 已提交
100 101 102 103 104
        else:
            self.queryRows = 0
            self.queryCols = 0
            self.queryResult = None
            tdLog.info(f"sql:{sql}, expect error occured")
C
cpwu 已提交
105

C
cpwu 已提交
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
    def query(self, sql, row_tag=None):
        # sourcery skip: raise-from-previous-error, raise-specific-error
        self.sql = sql
        try:
            self.cursor.execute(sql)
            self.queryResult = self.cursor.fetchall()
            self.queryRows = len(self.queryResult)
            self.queryCols = len(self.cursor.description)
        except Exception as e:
            caller = inspect.getframeinfo(inspect.stack()[1][0])
            tdLog.notice(f"{caller.filename}({caller.lineno}) failed: sql:{sql}, {repr(e)}")
            traceback.print_exc()
            raise Exception(repr(e))
        if row_tag:
            return self.queryResult
        return self.queryRows

C
cpwu 已提交
123 124 125 126 127
    def __exit__(self, types, values, trace):
        if self._conn:
            self.cursor.close()
            self._conn.close()

C
cpwu 已提交
128

C
cpwu 已提交
129
def taos_connect(
wafwerar's avatar
wafwerar 已提交
130
    host    = socket.gethostname(),
C
cpwu 已提交
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
    port    = 6030,
    user    = "root",
    passwd  = "taosdata",
    database= None,
    config  = None
):
    return TDconnect(
        host = host,
        port=port,
        user=user,
        password=passwd,
        database=database,
        config=config
    )

C
cpwu 已提交
146 147 148 149 150

@dataclass
class User:
    name        : str   = None
    passwd      : str   = None
C
cpwu 已提交
151
    db_set      : set   = None
C
cpwu 已提交
152 153 154
    priv        : str   = None
    priv_weight : int   = 0

C
cpwu 已提交
155 156
class TDTestCase:

157
    def init(self, conn, logSql, replicaVar=1):
C
cpwu 已提交
158 159 160
        tdLog.debug(f"start to excute {__file__}")
        tdSql.init(conn.cursor())

C
cpwu 已提交
161 162 163 164
    @property
    def __user_list(self):
        return  [f"user_test{i}" for i in range(self.users_count) ]

C
cpwu 已提交
165 166 167 168
    def __users(self):
        self.users = []
        self.root_user = User()
        self.root_user.name = "root"
C
cpwu 已提交
169
        self.root_user.passwd = "taosdata"
C
cpwu 已提交
170
        self.root_user.db_set = set("*")
C
cpwu 已提交
171 172 173 174 175 176
        self.root_user.priv = PRIVILEGES_ALL
        self.root_user.priv_weight = WEIGHT_ALL
        for i in range(self.users_count):
            user = User()
            user.name = f"user_test{i}"
            user.passwd = f"taosdata{i}"
C
cpwu 已提交
177
            user.db_set = set()
C
cpwu 已提交
178 179 180
            self.users.append(user)
        return self.users

C
cpwu 已提交
181 182 183 184 185 186 187 188 189 190 191 192
    @property
    def __passwd_list(self):
        return  [f"taosdata{i}" for i in range(self.users_count) ]

    @property
    def __privilege(self):
        return [ PRIVILEGES_ALL, PRIVILEGES_READ, PRIVILEGES_WRITE ]

    def __priv_level(self, dbname=None):
        return f"{dbname}.*" if dbname else "*.*"


C
cpwu 已提交
193
    def create_user_current(self):
C
cpwu 已提交
194 195
        users  = self.__user_list
        passwds = self.__passwd_list
C
cpwu 已提交
196
        for i in range(self.users_count):
C
cpwu 已提交
197
            tdSql.execute(f"create user {users[i]} pass '{passwds[i]}' ")
C
cpwu 已提交
198

C
cpwu 已提交
199 200
        tdSql.query("show users")
        tdSql.checkRows(self.users_count + 1)
C
cpwu 已提交
201

C
cpwu 已提交
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
    def create_user_err(self):
        sqls = [
            "create users u1 pass 'u1passwd' ",
            "create user '' pass 'u1passwd' ",
            "create user  pass 'u1passwd' ",
            "create user u1 pass u1passwd ",
            "create user u1 password 'u1passwd' ",
            "create user u1 pass u1passwd ",
            "create user u1 pass '' ",
            "create user u1 pass '   ' ",
            "create user u1 pass  ",
            "create user u1 u2 pass 'u1passwd' 'u2passwd' ",
            "create user u1 u2 pass 'u1passwd', 'u2passwd' ",
            "create user u1, u2 pass 'u1passwd', 'u2passwd' ",
            "create user u1, u2 pass 'u1passwd'  'u2passwd' ",
            # length of user_name must <= 23
            "create user u12345678901234567890123 pass 'u1passwd' " ,
C
cpwu 已提交
219 220
            # length of passwd must <= 128
            "create user u1 pass 'u12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678' " ,
C
cpwu 已提交
221 222 223 224 225 226 227 228 229 230 231 232 233 234
            # password must have not " ' ~ ` \
            "create user u1 pass 'u1passwd\\' " ,
            "create user u1 pass 'u1passwd~' " ,
            "create user u1 pass 'u1passwd\"' " ,
            "create user u1 pass 'u1passwd\'' " ,
            "create user u1 pass 'u1passwd`' " ,
            # must after create a user named u1
            "create user u1 pass 'u1passwd' " ,
        ]

        tdSql.execute("create user u1 pass 'u1passwd' ")
        for sql in sqls:
            tdSql.error(sql)

C
cpwu 已提交
235 236
        tdSql.execute("DROP USER u1")

C
cpwu 已提交
237 238
    def __alter_pass_sql(self, user, passwd):
        return f'''ALTER USER {user} PASS '{passwd}' '''
C
cpwu 已提交
239 240 241

    def alter_pass_current(self):
        self.__init_pass = True
C
cpwu 已提交
242
        for count, i in enumerate(range(self.users_count)):
C
cpwu 已提交
243 244
            if self.__init_pass:
                tdSql.query(self.__alter_pass_sql(self.__user_list[i], f"new{self.__passwd_list[i]}"))
C
cpwu 已提交
245
                self.__init_pass = count != self.users_count - 1
C
cpwu 已提交
246 247
            else:
                tdSql.query(self.__alter_pass_sql(self.__user_list[i], self.__passwd_list[i] ) )
C
cpwu 已提交
248
                self.__init_pass = count == self.users_count - 1
C
cpwu 已提交
249

C
cpwu 已提交
250
    def alter_pass_err(self):  # sourcery skip: remove-redundant-fstring
C
cpwu 已提交
251
        sqls = [
C
cpwu 已提交
252 253 254 255 256 257
            f"alter users {self.__user_list[0]} pass 'newpass' " ,
            f"alter user {self.__user_list[0]} pass '' " ,
            f"alter user {self.__user_list[0]} pass '  ' " ,
            f"alter user anyuser pass 'newpass' " ,
            f"alter user {self.__user_list[0]} pass  " ,
            f"alter user {self.__user_list[0]} password 'newpass'  " ,
C
cpwu 已提交
258 259 260 261
        ]
        for sql in sqls:
            tdSql.error(sql)

C
cpwu 已提交
262
    def __grant_user_privileges(self, privilege,  dbname=None, user_name="root"):
C
cpwu 已提交
263 264
        return f"GRANT {privilege} ON {self.__priv_level(dbname)} TO {user_name} "

C
cpwu 已提交
265 266 267 268 269 270 271
    def __revoke_user_privileges(self, privilege,  dbname=None, user_name="root"):
        return f"REVOKE {privilege} ON {self.__priv_level(dbname)} FROM {user_name} "

    def __user_check(self, user:User=None, check_priv=PRIVILEGES_ALL):
        if user is None:
            user = self.root_user
        with taos_connect(user=user.name, passwd=user.passwd) as use:
D
dapan1121 已提交
272
            time.sleep(2)
C
cpwu 已提交
273
            if check_priv == PRIVILEGES_ALL:
C
cpwu 已提交
274 275 276 277
                use.query(f"use {DBNAME}")
                use.query(f"show {DBNAME}.tables")
                use.query(f"select * from {DBNAME}.{CTBNAME}")
                use.query(f"insert into {DBNAME}.{CTBNAME} (ts) values (now())")
C
cpwu 已提交
278
            elif check_priv == PRIVILEGES_READ:
C
cpwu 已提交
279 280 281 282
                use.query(f"use {DBNAME}")
                use.query(f"show {DBNAME}.tables")
                use.query(f"select * from {DBNAME}.{CTBNAME}")
                use.error(f"insert into {DBNAME}.{CTBNAME} (ts) values (now())")
C
cpwu 已提交
283
            elif check_priv == PRIVILEGES_WRITE:
C
cpwu 已提交
284
                use.query(f"use {DBNAME}")
285
                use.error(f"show {DBNAME}.tables")
C
cpwu 已提交
286 287
                use.error(f"select * from {DBNAME}.{CTBNAME}")
                use.query(f"insert into {DBNAME}.{CTBNAME} (ts) values (now())")
C
cpwu 已提交
288
            elif check_priv is None:
C
cpwu 已提交
289
                use.error(f"use {DBNAME}")
290
                use.error(f"show {DBNAME}.tables")
C
cpwu 已提交
291
                use.error(f"show tables")
C
cpwu 已提交
292 293
                use.error(f"select * from {DBNAME}.{CTBNAME}")
                use.error(f"insert into {DBNAME}.{CTBNAME} (ts) values (now())")
C
cpwu 已提交
294 295 296 297

    def __change_user_priv(self, user: User, pre_priv, invoke=False):
        if user.priv == pre_priv and invoke :
            return
C
cpwu 已提交
298 299 300
        if user.name == "root":
            return

C
cpwu 已提交
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
        if pre_priv.upper() == PRIVILEGES_ALL:
            pre_weight = -5 if invoke else 5
        elif pre_priv.upper() == PRIVILEGES_READ:
            pre_weight = -2 if invoke else 2
        elif pre_priv.upper() == PRIVILEGES_WRITE:
            pre_weight = -3 if invoke else 3
        else:
            return
        pre_weight += user.priv_weight

        if pre_weight >= 5:
            user.priv = PRIVILEGES_ALL
            user.priv_weight = 5
        elif pre_weight == 3:
            user.priv = PRIVILEGES_WRITE
            user.priv_weight = pre_weight
        elif pre_weight == 2:
            user.priv_weight = pre_weight
            user.priv = PRIVILEGES_READ
        elif pre_weight in [1, -1]:
            return
        elif pre_weight <= 0:
            user.priv_weight = 0
            user.priv = ""

        return user

    def grant_user(self, user: User = None, priv=PRIVILEGES_ALL, dbname=None):
        if not user:
            user = self.root_user
        sql = self.__grant_user_privileges(privilege=priv, dbname=dbname, user_name=user.name)
C
cpwu 已提交
332
        tdLog.info(sql)
C
cpwu 已提交
333
        if (user not in self.users and user.name != "root") or priv not in (PRIVILEGES_ALL, PRIVILEGES_READ, PRIVILEGES_WRITE):
C
cpwu 已提交
334
            tdSql.error(sql)
C
cpwu 已提交
335
        tdSql.query(sql)
C
cpwu 已提交
336
        self.__change_user_priv(user=user, pre_priv=priv)
C
cpwu 已提交
337
        user.db_set.add(dbname)
C
cpwu 已提交
338
        time.sleep(1)
C
cpwu 已提交
339

C
cpwu 已提交
340 341
    def revoke_user(self, user: User = None, priv=PRIVILEGES_ALL, dbname=None):
        sql = self.__revoke_user_privileges(privilege=priv, dbname=dbname, user_name=user.name)
C
cpwu 已提交
342
        tdLog.info(sql)
C
cpwu 已提交
343
        if user is None or priv not in (PRIVILEGES_ALL, PRIVILEGES_READ, PRIVILEGES_WRITE):
C
cpwu 已提交
344
            tdSql.error(sql)
C
cpwu 已提交
345
        tdSql.query(sql)
C
cpwu 已提交
346
        self.__change_user_priv(user=user, pre_priv=priv, invoke=True)
C
cpwu 已提交
347
        if user.name != "root":
C
cpwu 已提交
348
            user.db_set.discard(dbname) if dbname else user.db_set.clear()
C
cpwu 已提交
349
        time.sleep(1)
C
cpwu 已提交
350 351 352

    def test_priv_change_current(self):
        tdLog.printNoPrefix("==========step 1.0: if do not grant, can not read/write")
C
cpwu 已提交
353
        self.__user_check(user=self.root_user)
C
cpwu 已提交
354 355 356 357 358 359 360 361 362
        self.__user_check(user=self.users[0], check_priv=None)

        tdLog.printNoPrefix("==========step 1.1: grant read, can read, can not write")
        self.grant_user(user=self.users[0], priv=PRIVILEGES_READ)
        self.__user_check(user=self.users[0], check_priv=PRIVILEGES_READ)

        tdLog.printNoPrefix("==========step 1.2: grant write, can write")
        self.grant_user(user=self.users[1], priv=PRIVILEGES_WRITE)
        self.__user_check(user=self.users[1], check_priv=PRIVILEGES_WRITE)
C
cpwu 已提交
363 364

        tdLog.printNoPrefix("==========step 1.3: grant all, can write and read")
C
cpwu 已提交
365 366
        self.grant_user(user=self.users[2])
        self.__user_check(user=self.users[2], check_priv=PRIVILEGES_ALL)
C
cpwu 已提交
367

C
cpwu 已提交
368 369 370
        tdLog.printNoPrefix("==========step 1.4:  grant read to write = all ")
        self.grant_user(user=self.users[0], priv=PRIVILEGES_WRITE)
        self.__user_check(user=self.users[0], check_priv=PRIVILEGES_ALL)
C
cpwu 已提交
371

C
cpwu 已提交
372
        tdLog.printNoPrefix("==========step 1.5:  revoke write from all = read ")
C
cpwu 已提交
373 374
        self.revoke_user(user=self.users[0], priv=PRIVILEGES_WRITE)
        self.__user_check(user=self.users[0], check_priv=PRIVILEGES_READ)
C
cpwu 已提交
375

C
cpwu 已提交
376
        tdLog.printNoPrefix("==========step 1.6: grant write to read = all")
C
cpwu 已提交
377 378
        self.grant_user(user=self.users[1], priv=PRIVILEGES_READ)
        self.__user_check(user=self.users[1], check_priv=PRIVILEGES_ALL)
C
cpwu 已提交
379

C
cpwu 已提交
380
        tdLog.printNoPrefix("==========step 1.7:  revoke read from all = write ")
C
cpwu 已提交
381 382
        self.revoke_user(user=self.users[1], priv=PRIVILEGES_READ)
        self.__user_check(user=self.users[1], check_priv=PRIVILEGES_WRITE)
C
cpwu 已提交
383

C
cpwu 已提交
384
        tdLog.printNoPrefix("==========step 1.8: grant read to all = all")
C
cpwu 已提交
385 386
        self.grant_user(user=self.users[0], priv=PRIVILEGES_ALL)
        self.__user_check(user=self.users[0], check_priv=PRIVILEGES_ALL)
C
cpwu 已提交
387

C
cpwu 已提交
388
        tdLog.printNoPrefix("==========step 1.9: grant write to all = all")
C
cpwu 已提交
389 390 391
        self.grant_user(user=self.users[1], priv=PRIVILEGES_ALL)
        self.__user_check(user=self.users[1], check_priv=PRIVILEGES_ALL)

C
cpwu 已提交
392
        tdLog.printNoPrefix("==========step 1.10: grant all to read = all")
C
cpwu 已提交
393 394 395
        self.grant_user(user=self.users[0], priv=PRIVILEGES_READ)
        self.__user_check(user=self.users[0], check_priv=PRIVILEGES_ALL)

C
cpwu 已提交
396
        tdLog.printNoPrefix("==========step 1.11: grant all to write = all")
C
cpwu 已提交
397 398 399 400 401 402 403
        self.grant_user(user=self.users[1], priv=PRIVILEGES_WRITE)
        self.__user_check(user=self.users[1], check_priv=PRIVILEGES_ALL)

        ### init user
        self.revoke_user(user=self.users[0], priv=PRIVILEGES_WRITE)
        self.revoke_user(user=self.users[1], priv=PRIVILEGES_READ)

C
cpwu 已提交
404
        tdLog.printNoPrefix("==========step 1.12: revoke read from write = no change")
C
cpwu 已提交
405 406 407
        self.revoke_user(user=self.users[1], priv=PRIVILEGES_READ)
        self.__user_check(user=self.users[1], check_priv=PRIVILEGES_WRITE)

C
cpwu 已提交
408
        tdLog.printNoPrefix("==========step 1.13: revoke write from read = no change")
C
cpwu 已提交
409 410 411
        self.revoke_user(user=self.users[0], priv=PRIVILEGES_WRITE)
        self.__user_check(user=self.users[0], check_priv=PRIVILEGES_READ)

C
cpwu 已提交
412
        tdLog.printNoPrefix("==========step 1.14: revoke read from read = nothing")
C
cpwu 已提交
413 414 415
        self.revoke_user(user=self.users[0], priv=PRIVILEGES_READ)
        self.__user_check(user=self.users[0], check_priv=None)

C
cpwu 已提交
416
        tdLog.printNoPrefix("==========step 1.15: revoke write from write = nothing")
C
cpwu 已提交
417 418 419 420 421 422 423
        self.revoke_user(user=self.users[1], priv=PRIVILEGES_WRITE)
        self.__user_check(user=self.users[1], check_priv=None)

        ### init user
        self.grant_user(user=self.users[0], priv=PRIVILEGES_READ)
        self.revoke_user(user=self.users[1], priv=PRIVILEGES_WRITE)

C
cpwu 已提交
424
        tdLog.printNoPrefix("==========step 1.16: revoke all from write = nothing")
C
cpwu 已提交
425 426 427
        self.revoke_user(user=self.users[1], priv=PRIVILEGES_ALL)
        self.__user_check(user=self.users[1], check_priv=None)

C
cpwu 已提交
428
        tdLog.printNoPrefix("==========step 1.17: revoke all from read = nothing")
C
cpwu 已提交
429 430 431
        self.revoke_user(user=self.users[0], priv=PRIVILEGES_ALL)
        self.__user_check(user=self.users[0], check_priv=None)

C
cpwu 已提交
432
        tdLog.printNoPrefix("==========step 1.18: revoke all from all = nothing")
C
cpwu 已提交
433
        self.revoke_user(user=self.users[2], priv=PRIVILEGES_ALL)
D
dapan1121 已提交
434
        time.sleep(3)
C
cpwu 已提交
435
        self.__user_check(user=self.users[2], check_priv=None)
C
cpwu 已提交
436 437 438 439 440 441 442 443 444 445

    def __grant_err(self):
        return [
            self.__grant_user_privileges(privilege=self.__privilege[0], user_name="") ,
            self.__grant_user_privileges(privilege=self.__privilege[0], user_name="*") ,
            self.__grant_user_privileges(privilege=self.__privilege[1], dbname="not_exist_db", user_name=self.__user_list[0]),
            self.__grant_user_privileges(privilege="any_priv", user_name=self.__user_list[0]),
            self.__grant_user_privileges(privilege="", dbname="db", user_name=self.__user_list[0]) ,
            self.__grant_user_privileges(privilege=" ".join(self.__privilege), user_name=self.__user_list[0]) ,
            f"GRANT {self.__privilege[0]} ON * TO {self.__user_list[0]}" ,
C
cpwu 已提交
446
            f"GRANT {self.__privilege[0]} ON {DBNAME}.{NTBNAME} TO {self.__user_list[0]}" ,
C
cpwu 已提交
447 448
        ]

C
cpwu 已提交
449 450 451 452 453 454 455 456 457
    def __revoke_err(self):
        return [
            self.__revoke_user_privileges(privilege=self.__privilege[0], user_name="") ,
            self.__revoke_user_privileges(privilege=self.__privilege[0], user_name="*") ,
            self.__revoke_user_privileges(privilege=self.__privilege[1], dbname="not_exist_db", user_name=self.__user_list[0]),
            self.__revoke_user_privileges(privilege="any_priv", user_name=self.__user_list[0]),
            self.__revoke_user_privileges(privilege="", dbname="db", user_name=self.__user_list[0]) ,
            self.__revoke_user_privileges(privilege=" ".join(self.__privilege), user_name=self.__user_list[0]) ,
            f"REVOKE {self.__privilege[0]} ON * FROM {self.__user_list[0]}" ,
C
cpwu 已提交
458
            f"REVOKE {self.__privilege[0]} ON {DBNAME}.{NTBNAME} FROM {self.__user_list[0]}" ,
C
cpwu 已提交
459 460
        ]

C
cpwu 已提交
461 462 463 464
    def test_grant_err(self):
        for sql in self.__grant_err():
            tdSql.error(sql)

C
cpwu 已提交
465 466 467 468 469
    def test_revoke_err(self):
        for sql in self.__revoke_err():
            tdSql.error(sql)

    def test_change_priv(self):
C
cpwu 已提交
470
        self.test_grant_err()
C
cpwu 已提交
471 472
        self.test_revoke_err()
        self.test_priv_change_current()
C
cpwu 已提交
473

C
cpwu 已提交
474 475 476
    def test_user_create(self):
        self.create_user_current()
        self.create_user_err()
C
cpwu 已提交
477

C
cpwu 已提交
478 479 480 481 482 483 484
    def test_alter_pass(self):
        self.alter_pass_current()
        self.alter_pass_err()

    def user_login(self, user, passwd):
        login_except = False
        try:
C
cpwu 已提交
485
            with taos_connect(user=user, passwd=passwd) as conn:
C
cpwu 已提交
486
                cursor = conn.cursor
C
cpwu 已提交
487 488 489 490 491 492 493 494
        except BaseException:
            login_except = True
            cursor = None
        return login_except, cursor

    def login_currrent(self, user, passwd):
        login_except, _ = self.user_login(user, passwd)
        if login_except:
C
cpwu 已提交
495
            tdLog.exit(f"connect failed, user: {user} and pass: {passwd} do not match!")
C
cpwu 已提交
496 497 498
        else:
            tdLog.info("connect successfully, user and pass matched!")

C
cpwu 已提交
499 500 501 502
    def login_err(self, user, passwd):
        login_except, _ = self.user_login(user, passwd)
        if login_except:
            tdLog.info("connect failed, except error occured!")
C
cpwu 已提交
503 504
        else:
            tdLog.exit("connect successfully, except error not occrued!")
C
cpwu 已提交
505

C
cpwu 已提交
506 507 508 509 510 511 512 513 514 515 516 517 518 519
    def __drop_user(self, user):
        return f"DROP USER {user}"

    def drop_user_current(self):
        for user in self.__user_list:
            tdSql.query(self.__drop_user(user))

    def drop_user_error(self):
        sqls = [
            f"DROP {self.__user_list[0]}",
            f"DROP user {self.__user_list[0]}  {self.__user_list[1]}",
            f"DROP user {self.__user_list[0]} , {self.__user_list[1]}",
            f"DROP users {self.__user_list[0]}  {self.__user_list[1]}",
            f"DROP users {self.__user_list[0]} , {self.__user_list[1]}",
C
cpwu 已提交
520
            # "DROP user root",
C
cpwu 已提交
521 522 523 524 525 526
            "DROP user abcde",
            "DROP user ALL",
        ]

        for sql in sqls:
            tdSql.error(sql)
C
cpwu 已提交
527

C
cpwu 已提交
528 529 530 531
    def test_drop_user(self):
        # must drop err first
        self.drop_user_error()
        self.drop_user_current()
C
cpwu 已提交
532

C
cpwu 已提交
533 534 535 536 537 538 539 540 541
    def __create_tb(self, stb=STBNAME, ctb_num=20, ntbnum=1, dbname=DBNAME):
        tdLog.printNoPrefix("==========step: create table")
        create_stb_sql = f'''create table {dbname}.{stb}(
                {PRIMARY_COL} timestamp, {INT_COL} int, {BINT_COL} bigint, {SINT_COL} smallint, {TINT_COL} tinyint,
                {FLOAT_COL} float, {DOUBLE_COL} double, {BOOL_COL} bool,
                {BINARY_COL} binary(16), {NCHAR_COL} nchar(32), {TS_COL} timestamp,
                {TINT_UN_COL} tinyint unsigned, {SINT_UN_COL} smallint unsigned,
                {INT_UN_COL} int unsigned, {BINT_UN_COL} bigint unsigned
            ) tags ({INT_TAG} int)
C
cpwu 已提交
542 543 544
            '''
        tdSql.execute(create_stb_sql)

C
cpwu 已提交
545 546 547 548 549 550 551
        for i in range(ntbnum):
            create_ntb_sql = f'''create table {dbname}.nt{i+1}(
                    {PRIMARY_COL} timestamp, {INT_COL} int, {BINT_COL} bigint, {SINT_COL} smallint, {TINT_COL} tinyint,
                    {FLOAT_COL} float, {DOUBLE_COL} double, {BOOL_COL} bool,
                    {BINARY_COL} binary(16), {NCHAR_COL} nchar(32), {TS_COL} timestamp,
                    {TINT_UN_COL} tinyint unsigned, {SINT_UN_COL} smallint unsigned,
                    {INT_UN_COL} int unsigned, {BINT_UN_COL} bigint unsigned
C
cpwu 已提交
552
                )
C
cpwu 已提交
553 554
                '''
            tdSql.execute(create_ntb_sql)
C
cpwu 已提交
555

C
cpwu 已提交
556 557 558 559 560 561 562 563
        for i in range(ctb_num):
            tdSql.execute(f'create table {dbname}.ct{i+1} using {dbname}.{stb} tags ( {i+1} )')

    def __insert_data(self, rows, ctb_num=20, dbname=DBNAME, star_time=NOW):
        tdLog.printNoPrefix("==========step: start inser data into tables now.....")
        # from ...pytest.util.common import DataSet
        data = DataSet()
        data.get_order_set(rows)
C
cpwu 已提交
564 565

        for i in range(rows):
C
cpwu 已提交
566 567 568 569
            row_data = f'''
                {data.int_data[i]}, {data.bint_data[i]}, {data.sint_data[i]}, {data.tint_data[i]}, {data.float_data[i]}, {data.double_data[i]},
                {data.bool_data[i]}, '{data.vchar_data[i]}', '{data.nchar_data[i]}', {data.ts_data[i]}, {data.utint_data[i]},
                {data.usint_data[i]}, {data.uint_data[i]}, {data.ubint_data[i]}
C
cpwu 已提交
570
            '''
C
cpwu 已提交
571 572 573 574
            tdSql.execute( f"insert into {dbname}.{NTBNAME} values ( {star_time - i * int(TIME_STEP * 1.2)}, {row_data} )" )

            for j in range(ctb_num):
                tdSql.execute( f"insert into {dbname}.ct{j+1} values ( {star_time - j * i * TIME_STEP}, {row_data} )" )
C
cpwu 已提交
575

C
cpwu 已提交
576
    def run(self):
C
cpwu 已提交
577 578 579
        tdSql.prepare()
        self.__create_tb()
        self.rows = 10
C
cpwu 已提交
580
        self.users_count = 5
C
cpwu 已提交
581
        self.__insert_data(self.rows)
C
cpwu 已提交
582
        self.users = self.__users()
C
cpwu 已提交
583 584 585

        tdDnodes.stop(1)
        tdDnodes.start(1)
C
cpwu 已提交
586 587 588 589 590

        # 默认只有 root 用户
        tdLog.printNoPrefix("==========step0: init, user list only has root account")
        tdSql.query("show users")
        tdSql.checkData(0, 0, "root")
591
        tdSql.checkData(0, 1, "1")
C
cpwu 已提交
592 593 594 595 596 597 598 599 600

        # root用户权限
        # 创建用户测试
        tdLog.printNoPrefix("==========step1: create user test")
        self.test_user_create()

        # 查看用户
        tdLog.printNoPrefix("==========step2: show user test")
        tdSql.query("show users")
C
cpwu 已提交
601
        tdSql.checkRows(self.users_count + 1)
C
cpwu 已提交
602

C
cpwu 已提交
603 604 605 606
        # 密码登录认证
        self.login_currrent(self.__user_list[0], self.__passwd_list[0])
        self.login_err(self.__user_list[0], f"new{self.__passwd_list[0]}")

C
cpwu 已提交
607
        # 用户权限设置
C
cpwu 已提交
608
        self.test_change_priv()
C
cpwu 已提交
609

C
cpwu 已提交
610
        # 修改密码
C
cpwu 已提交
611 612 613
        tdLog.printNoPrefix("==========step3: alter user pass test")
        self.test_alter_pass()

C
cpwu 已提交
614
        # 密码修改后的登录认证
C
cpwu 已提交
615
        tdLog.printNoPrefix("==========step4: check login test")
C
cpwu 已提交
616
        self.login_err(self.__user_list[0], self.__passwd_list[0])
C
cpwu 已提交
617
        self.login_currrent(self.__user_list[0], f"new{self.__passwd_list[0]}")
C
cpwu 已提交
618

C
cpwu 已提交
619 620 621
        tdDnodes.stop(1)
        tdDnodes.start(1)

C
cpwu 已提交
622
        tdSql.query("show users")
C
cpwu 已提交
623
        tdSql.checkRows(self.users_count + 1)
C
cpwu 已提交
624

C
cpwu 已提交
625
        # 普通用户权限
C
cpwu 已提交
626
        # 密码登录
C
cpwu 已提交
627
        # _, user = self.user_login(self.__user_list[0], f"new{self.__passwd_list[0]}")
C
cpwu 已提交
628 629 630
        with taos_connect(user=self.__user_list[0], passwd=f"new{self.__passwd_list[0]}") as user:
            # user = conn
            # 不能创建用户
C
cpwu 已提交
631
            tdLog.printNoPrefix("==========step4.1: normal user can not create user")
C
cpwu 已提交
632 633
            user.error("create use utest1 pass 'utest1pass'")
            # 可以查看用户
C
cpwu 已提交
634
            tdLog.printNoPrefix("==========step4.2: normal user can show user")
C
cpwu 已提交
635
            user.query("show users")
C
cpwu 已提交
636
            assert user.queryRows == self.users_count + 1
C
cpwu 已提交
637
            # 不可以修改其他用户的密码
C
cpwu 已提交
638
            tdLog.printNoPrefix("==========step4.3: normal user can not alter other user pass")
C
cpwu 已提交
639
            user.error(self.__alter_pass_sql(self.__user_list[1], self.__passwd_list[1] ))
C
cpwu 已提交
640
            user.error(self.__alter_pass_sql("root", "taosdata_root" ))
C
cpwu 已提交
641
            # 可以修改自己的密码
C
cpwu 已提交
642
            tdLog.printNoPrefix("==========step4.4: normal user can alter owner pass")
C
cpwu 已提交
643 644
            user.query(self.__alter_pass_sql(self.__user_list[0], self.__passwd_list[0]))
            # 不可以删除用户,包括自己
C
cpwu 已提交
645
            tdLog.printNoPrefix("==========step4.5: normal user can not drop any user ")
C
cpwu 已提交
646 647 648
            user.error(f"drop user {self.__user_list[0]}")
            user.error(f"drop user {self.__user_list[1]}")
            user.error("drop user root")
C
cpwu 已提交
649

C
cpwu 已提交
650 651
        tdLog.printNoPrefix("==========step5: enable info")
        taos1_conn = taos.connect(user=self.__user_list[1], password=f"new{self.__passwd_list[1]}")
C
cpwu 已提交
652
        taos1_conn.query(f"show databases")
C
cpwu 已提交
653
        tdSql.execute(f"alter user {self.__user_list[1]} enable 0")
C
cpwu 已提交
654
        tdSql.execute(f"alter user {self.__user_list[2]} enable 0")
C
cpwu 已提交
655 656 657 658 659 660 661 662 663
        taos1_except = True
        try:
            taos1_conn.query("show databases")
        except BaseException:
            taos1_except = False
        if taos1_except:
            tdLog.exit("taos 1 connect except error not occured,  when enable == 0, should not r/w ")
        else:
            tdLog.info("taos 1 connect except error occured,  enable == 0")
C
cpwu 已提交
664

C
cpwu 已提交
665 666 667
        taos2_except = True
        try:
            taos.connect(user=self.__user_list[2], password=f"new{self.__passwd_list[2]}")
C
cpwu 已提交
668
        except BaseException:
C
cpwu 已提交
669 670 671 672 673 674
            taos2_except = False
        if taos2_except:
            tdLog.exit("taos 2 connect except error not occured,  when enable == 0, should not connect")
        else:
            tdLog.info("taos 2 connect except error occured,  enable == 0, can not login")

C
cpwu 已提交
675 676 677 678
        tdLog.printNoPrefix("==========step6: sysinfo info")
        taos3_conn = taos.connect(user=self.__user_list[3], password=f"new{self.__passwd_list[3]}")
        taos3_conn.query(f"show dnodes")
        taos3_conn.query(f"show {DBNAME}.vgroups")
C
cpwu 已提交
679 680
        tdSql.execute(f"alter user {self.__user_list[3]} sysinfo 0")
        tdSql.execute(f"alter user {self.__user_list[4]} sysinfo 0")
C
cpwu 已提交
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696
        taos3_except = True
        try:
            taos3_conn.query(f"show dnodes")
            taos3_conn.query(f"show {DBNAME}.vgroups")
        except BaseException:
            taos3_except = False
        if taos3_except:
            tdLog.exit("taos 3 query except error not occured,  when sysinfo == 0, should not show info:dnode/monde/qnode ")
        else:
            tdLog.info("taos 3 query except error occured,  sysinfo == 0, can not show dnode/vgroups")

        taos4_conn = taos.connect(user=self.__user_list[4], password=f"new{self.__passwd_list[4]}")
        taos4_except = True
        try:
            taos4_conn.query(f"show mnodes")
            taos4_conn.query(f"show {DBNAME}.vgroups")
C
cpwu 已提交
697
        except BaseException:
C
cpwu 已提交
698 699 700 701 702
            taos4_except = False
        if taos4_except:
            tdLog.exit("taos 4 query except error not occured,  when sysinfo == 0, when enable == 0, should not show info:dnode/monde/qnode")
        else:
            tdLog.info("taos 4 query except error occured,  sysinfo == 0, can not show dnode/vgroups")
C
cpwu 已提交
703

C
cpwu 已提交
704
        # root删除用户测试
C
cpwu 已提交
705
        tdLog.printNoPrefix("==========step7: super user drop normal user")
C
cpwu 已提交
706
        self.test_drop_user()
C
cpwu 已提交
707

C
cpwu 已提交
708 709 710
        tdSql.query("show users")
        tdSql.checkRows(1)
        tdSql.checkData(0, 0, "root")
711
        tdSql.checkData(0, 1, "1")
C
cpwu 已提交
712

C
cpwu 已提交
713 714 715 716 717
        tdDnodes.stop(1)
        tdDnodes.start(1)

        # 删除后无法登录
        self.login_err(self.__user_list[0], self.__passwd_list[0])
C
cpwu 已提交
718
        self.login_err(self.__user_list[0], f"new{self.__passwd_list[0]}")
C
cpwu 已提交
719
        self.login_err(self.__user_list[1], self.__passwd_list[1])
C
cpwu 已提交
720
        self.login_err(self.__user_list[1], f"new{self.__passwd_list[1]}")
C
cpwu 已提交
721 722 723 724

        tdSql.query("show users")
        tdSql.checkRows(1)
        tdSql.checkData(0, 0, "root")
725
        tdSql.checkData(0, 1, "1")
C
cpwu 已提交
726

C
cpwu 已提交
727 728 729 730 731 732 733

    def stop(self):
        tdSql.close()
        tdLog.success(f"{__file__} successfully executed")

tdCases.addLinux(__file__, TDTestCase())
tdCases.addWindows(__file__, TDTestCase())