user_control.py 22.7 KB
Newer Older
C
cpwu 已提交
1 2
import taos
import sys
C
cpwu 已提交
3
import inspect
C
cpwu 已提交
4
import traceback
C
cpwu 已提交
5 6 7 8

from util.log import *
from util.sql import *
from util.cases import *
C
cpwu 已提交
9
from util.dnodes import *
C
cpwu 已提交
10 11 12 13 14

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

C
cpwu 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28
PRIMARY_COL = "ts"

INT_COL     = "c1"
BINT_COL    = "c2"
SINT_COL    = "c3"
TINT_COL    = "c4"
FLOAT_COL   = "c5"
DOUBLE_COL  = "c6"
BOOL_COL    = "c7"

BINARY_COL  = "c8"
NCHAR_COL   = "c9"
TS_COL      = "c10"

C
cpwu 已提交
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
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 已提交
57
        return self
C
cpwu 已提交
58

C
cpwu 已提交
59 60 61 62 63 64
    def error(self, sql):
        expectErrNotOccured = True
        try:
            self.cursor.execute(sql)
        except BaseException:
            expectErrNotOccured = False
C
cpwu 已提交
65

C
cpwu 已提交
66 67
        if expectErrNotOccured:
            caller = inspect.getframeinfo(inspect.stack()[1][0])
C
cpwu 已提交
68
            tdLog.exit(f"{caller.filename}({caller.lineno}) failed: sql:{sql}, expect error not occured" )
C
cpwu 已提交
69 70 71 72 73
        else:
            self.queryRows = 0
            self.queryCols = 0
            self.queryResult = None
            tdLog.info(f"sql:{sql}, expect error occured")
C
cpwu 已提交
74

C
cpwu 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
    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 已提交
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
    def __exit__(self, types, values, trace):
        if self._conn:
            self.cursor.close()
            self._conn.close()

def taos_connect(
    host    = "127.0.0.1",
    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 已提交
114 115 116 117 118 119
class TDTestCase:

    def init(self, conn, logSql):
        tdLog.debug(f"start to excute {__file__}")
        tdSql.init(conn.cursor())

C
cpwu 已提交
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
    @property
    def __user_list(self):
        return  [f"user_test{i}" for i in range(self.users_count) ]

    @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 已提交
136
    def create_user_current(self):
C
cpwu 已提交
137 138
        users  = self.__user_list
        passwds = self.__passwd_list
C
cpwu 已提交
139
        for i in range(self.users_count):
C
cpwu 已提交
140
            tdSql.execute(f"create user {users[i]} pass '{passwds[i]}' ")
C
cpwu 已提交
141

C
cpwu 已提交
142 143
        tdSql.query("show users")
        tdSql.checkRows(self.users_count + 1)
C
cpwu 已提交
144

C
cpwu 已提交
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
    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 已提交
162 163
            # length of passwd must <= 128
            "create user u1 pass 'u12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678' " ,
C
cpwu 已提交
164 165 166 167 168 169 170 171 172 173 174 175 176 177
            # 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 已提交
178 179
        tdSql.execute("DROP USER u1")

C
cpwu 已提交
180 181
    def __alter_pass_sql(self, user, passwd):
        return f'''ALTER USER {user} PASS '{passwd}' '''
C
cpwu 已提交
182 183 184

    def alter_pass_current(self):
        self.__init_pass = True
C
cpwu 已提交
185
        for count, i in enumerate(range(self.users_count)):
C
cpwu 已提交
186 187
            if self.__init_pass:
                tdSql.query(self.__alter_pass_sql(self.__user_list[i], f"new{self.__passwd_list[i]}"))
C
cpwu 已提交
188
                self.__init_pass = count != self.users_count - 1
C
cpwu 已提交
189 190
            else:
                tdSql.query(self.__alter_pass_sql(self.__user_list[i], self.__passwd_list[i] ) )
C
cpwu 已提交
191
                self.__init_pass = count == self.users_count - 1
C
cpwu 已提交
192

C
cpwu 已提交
193
    def alter_pass_err(self):  # sourcery skip: remove-redundant-fstring
C
cpwu 已提交
194
        sqls = [
C
cpwu 已提交
195 196 197 198 199 200
            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 已提交
201 202 203 204
        ]
        for sql in sqls:
            tdSql.error(sql)

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

C
cpwu 已提交
208
    def grant_check(self, user="root", passwd="taosdata", priv=PRIVILEGES_ALL):
C
cpwu 已提交
209 210 211
        with taos_connect(user=user, passwd=passwd) as user:
            user.query("use db")
            user.query("show tables")
C
cpwu 已提交
212 213 214 215 216 217 218 219
            if priv in [PRIVILEGES_ALL, PRIVILEGES_READ]:
                user.query("select * from ct1")
            else:
                user.error("select * from ct1")
            if priv in [PRIVILEGES_ALL, PRIVILEGES_WRITE]:
                user.query("insert into t1 (ts) values (now())")
            else:
                user.error("insert into t1 (ts) values (now())")
C
cpwu 已提交
220

C
cpwu 已提交
221
    def test_grant_current(self):
C
cpwu 已提交
222
        tdLog.printNoPrefix("==========step 1.0: if do not grant, can not read/write")
C
cpwu 已提交
223
        self.grant_check(user=self.__user_list[0], passwd=self.__passwd_list[0], priv=None)
C
cpwu 已提交
224 225

        tdLog.printNoPrefix("==========step 1.1: grant read, can read, can not write")
C
cpwu 已提交
226
        sql = self.__grant_user_privileges(privilege=PRIVILEGES_READ, user_name=self.__user_list[0])
C
cpwu 已提交
227 228
        tdLog.info(sql)
        tdSql.query(sql)
C
cpwu 已提交
229
        self.grant_check(user=self.__user_list[0], passwd=self.__passwd_list[0], priv=PRIVILEGES_READ)
C
cpwu 已提交
230 231

        tdLog.printNoPrefix("==========step 1.2: grant write, can write, can not read")
C
cpwu 已提交
232
        sql = self.__grant_user_privileges(privilege=PRIVILEGES_WRITE, user_name=self.__user_list[1])
C
cpwu 已提交
233 234
        tdLog.info(sql)
        tdSql.query(sql)
C
cpwu 已提交
235
        self.grant_check(user=self.__user_list[1], passwd=self.__passwd_list[1], priv=PRIVILEGES_WRITE)
C
cpwu 已提交
236 237

        tdLog.printNoPrefix("==========step 1.3: grant all, can write and read")
C
cpwu 已提交
238
        sql = self.__grant_user_privileges(privilege=PRIVILEGES_ALL, user_name=self.__user_list[2])
C
cpwu 已提交
239 240
        tdLog.info(sql)
        tdSql.query(sql)
C
cpwu 已提交
241
        self.grant_check(user=self.__user_list[2], passwd=self.__passwd_list[2], priv=PRIVILEGES_ALL)
C
cpwu 已提交
242 243

        tdLog.printNoPrefix("==========step 1.4: change grant read to write, can write , can not read")
C
cpwu 已提交
244
        sql = self.__grant_user_privileges(privilege=PRIVILEGES_WRITE, user_name=self.__user_list[0])
C
cpwu 已提交
245 246
        tdLog.info(sql)
        tdSql.query(sql)
C
cpwu 已提交
247
        self.grant_check(user=self.__user_list[0], passwd=self.__passwd_list[0], priv=PRIVILEGES_WRITE)
C
cpwu 已提交
248 249

        tdLog.printNoPrefix("==========step 1.5: change grant write to read, can not write , can read")
C
cpwu 已提交
250
        sql = self.__grant_user_privileges(privilege=PRIVILEGES_READ, user_name=self.__user_list[0])
C
cpwu 已提交
251 252
        tdLog.info(sql)
        tdSql.query(sql)
C
cpwu 已提交
253
        self.grant_check(user=self.__user_list[0], passwd=self.__passwd_list[0], priv=PRIVILEGES_READ)
C
cpwu 已提交
254 255

        tdLog.printNoPrefix("==========step 1.6: change grant read to all, can write , can read")
C
cpwu 已提交
256
        sql = self.__grant_user_privileges(privilege=PRIVILEGES_ALL, user_name=self.__user_list[0])
C
cpwu 已提交
257 258
        tdLog.info(sql)
        tdSql.query(sql)
C
cpwu 已提交
259
        self.grant_check(user=self.__user_list[0], passwd=self.__passwd_list[0], priv=PRIVILEGES_ALL)
C
cpwu 已提交
260 261

        tdLog.printNoPrefix("==========step 1.7: change grant all to write, can write , can not read")
C
cpwu 已提交
262
        sql = self.__grant_user_privileges(privilege=PRIVILEGES_WRITE, user_name=self.__user_list[0])
C
cpwu 已提交
263 264
        tdLog.info(sql)
        tdSql.query(sql)
C
cpwu 已提交
265
        self.grant_check(user=self.__user_list[0], passwd=self.__passwd_list[0], priv=PRIVILEGES_WRITE)
C
cpwu 已提交
266 267

        tdLog.printNoPrefix("==========step 1.8: change grant write to all, can write , can read")
C
cpwu 已提交
268
        sql = self.__grant_user_privileges(privilege=PRIVILEGES_ALL, user_name=self.__user_list[0])
C
cpwu 已提交
269 270
        tdLog.info(sql)
        tdSql.query(sql)
C
cpwu 已提交
271
        self.grant_check(user=self.__user_list[0], passwd=self.__passwd_list[0], priv=PRIVILEGES_ALL)
C
cpwu 已提交
272 273

        tdLog.printNoPrefix("==========step 1.9: change grant all to read, can not write , can read")
C
cpwu 已提交
274
        sql = self.__grant_user_privileges(privilege=PRIVILEGES_READ, user_name=self.__user_list[0])
C
cpwu 已提交
275 276
        tdLog.info(sql)
        tdSql.query(sql)
C
cpwu 已提交
277
        self.grant_check(user=self.__user_list[0], passwd=self.__passwd_list[0], priv=PRIVILEGES_READ)
C
cpwu 已提交
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294

    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]}" ,
            f"GRANT {self.__privilege[0]} ON db.t1 TO {self.__user_list[0]}" ,
        ]

    def test_grant_err(self):
        for sql in self.__grant_err():
            tdSql.error(sql)

C
cpwu 已提交
295 296 297 298
    def test_grant(self):
        self.test_grant_err()
        self.test_grant_current()

C
cpwu 已提交
299 300 301
    def test_user_create(self):
        self.create_user_current()
        self.create_user_err()
C
cpwu 已提交
302

C
cpwu 已提交
303 304 305 306 307 308 309
    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 已提交
310
            with taos_connect(user=user, passwd=passwd) as conn:
C
cpwu 已提交
311
                cursor = conn.cursor
C
cpwu 已提交
312 313 314 315 316 317 318 319
        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 已提交
320
            tdLog.exit(f"connect failed, user: {user} and pass: {passwd} do not match!")
C
cpwu 已提交
321 322 323
        else:
            tdLog.info("connect successfully, user and pass matched!")

C
cpwu 已提交
324 325 326 327
    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 已提交
328 329
        else:
            tdLog.exit("connect successfully, except error not occrued!")
C
cpwu 已提交
330

C
cpwu 已提交
331 332 333 334 335 336 337 338 339 340 341 342 343 344
    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 已提交
345
            # "DROP user root",
C
cpwu 已提交
346 347 348 349 350 351
            "DROP user abcde",
            "DROP user ALL",
        ]

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

C
cpwu 已提交
353 354 355 356
    def test_drop_user(self):
        # must drop err first
        self.drop_user_error()
        self.drop_user_current()
C
cpwu 已提交
357

C
cpwu 已提交
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
    def __create_tb(self):

        tdLog.printNoPrefix("==========step1:create table")
        create_stb_sql  =  f'''create table stb1(
                ts 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
            ) tags (t1 int)
            '''
        create_ntb_sql = f'''create table t1(
                ts 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
            )
            '''
        tdSql.execute(create_stb_sql)
        tdSql.execute(create_ntb_sql)

        for i in range(4):
            tdSql.execute(f'create table ct{i+1} using stb1 tags ( {i+1} )')
            { i % 32767 }, { i % 127}, { i * 1.11111 }, { i * 1000.1111 }, { i % 2}

    def __insert_data(self, rows):
        now_time = int(datetime.datetime.timestamp(datetime.datetime.now()) * 1000)
        for i in range(rows):
            tdSql.execute(
                f"insert into ct1 values ( { now_time - i * 1000 }, {i}, {11111 * i}, {111 * i % 32767 }, {11 * i % 127}, {1.11*i}, {1100.0011*i}, {i%2}, 'binary{i}', 'nchar_测试_{i}', { now_time + 1 * i } )"
            )
            tdSql.execute(
                f"insert into ct4 values ( { now_time - i * 7776000000 }, {i}, {11111 * i}, {111 * i % 32767 }, {11 * i % 127}, {1.11*i}, {1100.0011*i}, {i%2}, 'binary{i}', 'nchar_测试_{i}', { now_time + 1 * i } )"
            )
            tdSql.execute(
                f"insert into ct2 values ( { now_time - i * 7776000000 }, {-i},  {-11111 * i}, {-111 * i % 32767 }, {-11 * i % 127}, {-1.11*i}, {-1100.0011*i}, {i%2}, 'binary{i}', 'nchar_测试_{i}', { now_time + 1 * i } )"
            )
        tdSql.execute(
            f'''insert into ct1 values
            ( { now_time - rows * 5 }, 0, 0, 0, 0, 0, 0, 0, 'binary0', 'nchar_测试_0', { now_time + 8 } )
            ( { now_time + 10000 }, { rows }, -99999, -999, -99, -9.99, -99.99, 1, 'binary9', 'nchar_测试_9', { now_time + 9 } )
            '''
        )

        tdSql.execute(
            f'''insert into ct4 values
            ( { now_time - rows * 7776000000 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            ( { now_time - rows * 3888000000 + 10800000 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            ( { now_time +  7776000000 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            (
                { now_time + 5184000000}, {pow(2,31)-pow(2,15)}, {pow(2,63)-pow(2,30)}, 32767, 127,
                { 3.3 * pow(10,38) }, { 1.3 * pow(10,308) }, { rows % 2 }, "binary_limit-1", "nchar_测试_limit-1", { now_time - 86400000}
                )
            (
                { now_time + 2592000000 }, {pow(2,31)-pow(2,16)}, {pow(2,63)-pow(2,31)}, 32766, 126,
                { 3.2 * pow(10,38) }, { 1.2 * pow(10,308) }, { (rows-1) % 2 }, "binary_limit-2", "nchar_测试_limit-2", { now_time - 172800000}
                )
            '''
        )

        tdSql.execute(
            f'''insert into ct2 values
            ( { now_time - rows * 7776000000 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            ( { now_time - rows * 3888000000 + 10800000 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            ( { now_time + 7776000000 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            (
                { now_time + 5184000000 }, { -1 * pow(2,31) + pow(2,15) }, { -1 * pow(2,63) + pow(2,30) }, -32766, -126,
                { -1 * 3.2 * pow(10,38) }, { -1.2 * pow(10,308) }, { rows % 2 }, "binary_limit-1", "nchar_测试_limit-1", { now_time - 86400000 }
                )
            (
                { now_time + 2592000000 }, { -1 * pow(2,31) + pow(2,16) }, { -1 * pow(2,63) + pow(2,31) }, -32767, -127,
                { - 3.3 * pow(10,38) }, { -1.3 * pow(10,308) }, { (rows-1) % 2 }, "binary_limit-2", "nchar_测试_limit-2", { now_time - 172800000 }
                )
            '''
        )

        for i in range(rows):
            insert_data = f'''insert into t1 values
                ( { now_time - i * 3600000 }, {i}, {i * 11111}, { i % 32767 }, { i % 127}, { i * 1.11111 }, { i * 1000.1111 }, { i % 2},
                "binary_{i}", "nchar_测试_{i}", { now_time - 1000 * i } )
                '''
            tdSql.execute(insert_data)
        tdSql.execute(
            f'''insert into t1 values
            ( { now_time + 10800000 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            ( { now_time - (( rows // 2 ) * 60 + 30) * 60000 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            ( { now_time - rows * 3600000 }, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL )
            ( { now_time + 7200000 }, { pow(2,31) - pow(2,15) }, { pow(2,63) - pow(2,30) }, 32767, 127,
                { 3.3 * pow(10,38) }, { 1.3 * pow(10,308) }, { rows % 2 },
                "binary_limit-1", "nchar_测试_limit-1", { now_time - 86400000 }
                )
            (
                { now_time + 3600000 } , { pow(2,31) - pow(2,16) }, { pow(2,63) - pow(2,31) }, 32766, 126,
                { 3.2 * pow(10,38) }, { 1.2 * pow(10,308) }, { (rows-1) % 2 },
                "binary_limit-2", "nchar_测试_limit-2", { now_time - 172800000 }
                )
            '''
        )

C
cpwu 已提交
454
    def run(self):
C
cpwu 已提交
455 456 457 458 459 460 461
        tdSql.prepare()
        self.__create_tb()
        self.rows = 10
        self.__insert_data(self.rows)

        tdDnodes.stop(1)
        tdDnodes.start(1)
C
cpwu 已提交
462 463 464 465 466 467 468 469 470 471

        # 默认只有 root 用户
        tdLog.printNoPrefix("==========step0: init, user list only has root account")
        tdSql.query("show users")
        tdSql.checkData(0, 0, "root")
        tdSql.checkData(0, 1, "super")

        # root用户权限
        # 创建用户测试
        tdLog.printNoPrefix("==========step1: create user test")
C
cpwu 已提交
472
        self.users_count = 5
C
cpwu 已提交
473 474 475 476 477
        self.test_user_create()

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

C
cpwu 已提交
480 481 482 483
        # 密码登录认证
        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 已提交
484 485 486
        # 用户权限设置
        self.test_grant()

C
cpwu 已提交
487
        # 修改密码
C
cpwu 已提交
488 489 490
        tdLog.printNoPrefix("==========step3: alter user pass test")
        self.test_alter_pass()

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

C
cpwu 已提交
496 497 498
        tdDnodes.stop(1)
        tdDnodes.start(1)

C
cpwu 已提交
499
        tdSql.query("show users")
C
cpwu 已提交
500
        tdSql.checkRows(self.users_count + 1)
C
cpwu 已提交
501

C
cpwu 已提交
502
        # 普通用户权限
C
cpwu 已提交
503
        # 密码登录
C
cpwu 已提交
504
        # _, user = self.user_login(self.__user_list[0], f"new{self.__passwd_list[0]}")
C
cpwu 已提交
505 506 507 508 509 510 511 512
        with taos_connect(user=self.__user_list[0], passwd=f"new{self.__passwd_list[0]}") as user:
            # user = conn
            # 不能创建用户
            tdLog.printNoPrefix("==========step5: normal user can not create user")
            user.error("create use utest1 pass 'utest1pass'")
            # 可以查看用户
            tdLog.printNoPrefix("==========step6: normal user can show user")
            user.query("show users")
C
cpwu 已提交
513
            assert user.queryRows == self.users_count + 1
C
cpwu 已提交
514 515 516
            # 不可以修改其他用户的密码
            tdLog.printNoPrefix("==========step7: normal user can not alter other user pass")
            user.error(self.__alter_pass_sql(self.__user_list[1], self.__passwd_list[1] ))
C
cpwu 已提交
517
            user.error(self.__alter_pass_sql("root", "taosdata_root" ))
C
cpwu 已提交
518 519 520 521 522 523 524 525
            # 可以修改自己的密码
            tdLog.printNoPrefix("==========step8: normal user can alter owner pass")
            user.query(self.__alter_pass_sql(self.__user_list[0], self.__passwd_list[0]))
            # 不可以删除用户,包括自己
            tdLog.printNoPrefix("==========step9: normal user can not drop any user ")
            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 已提交
526 527 528 529

        # root删除用户测试
        tdLog.printNoPrefix("==========step10: super user drop normal user")
        self.test_drop_user()
C
cpwu 已提交
530

C
cpwu 已提交
531 532 533 534
        tdSql.query("show users")
        tdSql.checkRows(1)
        tdSql.checkData(0, 0, "root")
        tdSql.checkData(0, 1, "super")
C
cpwu 已提交
535

C
cpwu 已提交
536 537 538 539 540
        tdDnodes.stop(1)
        tdDnodes.start(1)

        # 删除后无法登录
        self.login_err(self.__user_list[0], self.__passwd_list[0])
C
cpwu 已提交
541
        self.login_err(self.__user_list[0], f"new{self.__passwd_list[0]}")
C
cpwu 已提交
542
        self.login_err(self.__user_list[1], self.__passwd_list[1])
C
cpwu 已提交
543
        self.login_err(self.__user_list[1], f"new{self.__passwd_list[1]}")
C
cpwu 已提交
544 545 546 547 548 549

        tdSql.query("show users")
        tdSql.checkRows(1)
        tdSql.checkData(0, 0, "root")
        tdSql.checkData(0, 1, "super")

C
cpwu 已提交
550 551 552 553 554 555 556

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

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