last.py 13.1 KB
Newer Older
J
jiacy-jcy 已提交
1 2
import random
import string
J
jiacy-jcy 已提交
3 4 5
from util.log import *
from util.cases import *
from util.sql import *
J
jiacy-jcy 已提交
6
from util.common import *
J
jiacy-jcy 已提交
7 8 9 10 11 12
import numpy as np


class TDTestCase:
    def init(self, conn, logSql):
        tdLog.debug("start to execute %s" % __file__)
J
jiajingbin 已提交
13
        tdSql.init(conn.cursor())
J
jiacy-jcy 已提交
14 15

        self.rowNum = 10
J
jiacy-jcy 已提交
16
        self.tbnum = 20
J
jiacy-jcy 已提交
17
        self.ts = 1537146000000
J
jiacy-jcy 已提交
18 19
        self.binary_str = 'taosdata'
        self.nchar_str = '涛思数据'
J
jiajingbin 已提交
20
        self.cachemodel = None
J
jiacy-jcy 已提交
21

P
Ping Xiao 已提交
22 23 24 25 26 27 28
    def generateString(self, length):
        chars = string.ascii_uppercase + string.ascii_lowercase
        v = ""
        for i in range(length):
            v += random.choice(chars)
        return v

J
update  
jiacy-jcy 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
    def set_create_normaltable_sql(self, ntbname, column_dict):
        column_sql = ''
        for k, v in column_dict.items():
            column_sql += f"{k} {v},"
        create_ntb_sql = f'create table {ntbname} (ts timestamp,{column_sql[:-1]})'
        return create_ntb_sql

    def set_create_stable_sql(self,stbname,column_dict,tag_dict):
        column_sql = ''
        tag_sql = ''
        for k,v in column_dict.items():
            column_sql += f"{k} {v},"
        for k,v in tag_dict.items():
            tag_sql += f"{k} {v},"
        create_stb_sql = f'create table {stbname} (ts timestamp,{column_sql[:-1]}) tags({tag_sql[:-1]})'
        return create_stb_sql
G
Ganlin Zhao 已提交
45

J
jiacy-jcy 已提交
46
    def last_check_stb_tb_base(self):
J
jiajingbin 已提交
47 48
        tdSql.execute(
            f'create database if not exists db cachemodel "{self.cachemodel}"')
J
jiacy-jcy 已提交
49
        stbname = f'db.{tdCom.getLongName(5, "letters")}'
J
update  
jiacy-jcy 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
        column_dict = {
            'col1': 'tinyint',
            'col2': 'smallint',
            'col3': 'int',
            'col4': 'bigint',
            'col5': 'tinyint unsigned',
            'col6': 'smallint unsigned',
            'col7': 'int unsigned',
            'col8': 'bigint unsigned',
            'col9': 'float',
            'col10': 'double',
            'col11': 'bool',
            'col12': 'binary(20)',
            'col13': 'nchar(20)'
        }
        tag_dict = {
            'loc':'nchar(20)'
        }
        tdSql.execute(self.set_create_stable_sql(stbname,column_dict,tag_dict))

        tdSql.execute(f"create table {stbname}_1 using {stbname} tags('beijing')")
        tdSql.execute(f"insert into {stbname}_1(ts) values(%d)" % (self.ts - 1))

J
jiacy-jcy 已提交
73
        for i in [f'{stbname}_1']:
J
jiacy-jcy 已提交
74
            tdSql.query(f"select last(*) from {i}")
J
jiacy-jcy 已提交
75 76
            tdSql.checkRows(1)
            tdSql.checkData(0, 1, None)
J
jiacy-jcy 已提交
77 78 79 80 81
        #!bug TD-16561
        # for i in ['stb','db.stb','stb','db.stb']:
        #     tdSql.query(f"select last(*) from {i}")
        #     tdSql.checkRows(1)
        #     tdSql.checkData(0, 1, None)
J
update  
jiacy-jcy 已提交
82
        for i in column_dict.keys():
J
jiacy-jcy 已提交
83
            for j in [f'{stbname}_1', f'{stbname}']:
J
update  
jiacy-jcy 已提交
84
                tdSql.query(f"select last({i}) from {j}")
J
jiacy-jcy 已提交
85
                tdSql.checkRows(0)
J
update  
jiacy-jcy 已提交
86
        tdSql.query(f"select last({list(column_dict.keys())[0]}) from {stbname}_1 group by {list(column_dict.keys())[-1]}")
J
jiacy-jcy 已提交
87
        tdSql.checkRows(1)
J
jiacy-jcy 已提交
88
        for i in range(self.rowNum):
J
update  
jiacy-jcy 已提交
89
            tdSql.execute(f"insert into {stbname}_1 values(%d, %d, %d, %d, %d, %d, %d, %d, %d, %f, %f, %d, '{self.binary_str}%d', '{self.nchar_str}%d')"
J
jiacy-jcy 已提交
90
                          % (self.ts + i, i + 1, i + 1, i + 1, i + 1, i + 1, i + 1, i + 1, i + 1, i + 0.1, i + 0.1, i % 2, i + 1, i + 1))
J
jiacy-jcy 已提交
91
        for i in [f'{stbname}_1',f'{stbname}']:
J
jiacy-jcy 已提交
92 93 94
            tdSql.query(f"select last(*) from {i}")
            tdSql.checkRows(1)
            tdSql.checkData(0, 1, 10)
J
update  
jiacy-jcy 已提交
95
        for k, v in column_dict.items():
J
jiacy-jcy 已提交
96
            for j in [f'{stbname}_1', f'{stbname}']:
J
update  
jiacy-jcy 已提交
97
                tdSql.query(f"select last({k}) from {j}")
J
jiacy-jcy 已提交
98 99
                tdSql.checkRows(1)
                # tinyint,smallint,int,bigint,tinyint unsigned,smallint unsigned,int unsigned,bigint unsigned
J
update  
jiacy-jcy 已提交
100 101
                if v.lower() == 'tinyint' or v.lower() == 'smallint' or v.lower() == 'int' or v.lower() == 'bigint' or v.lower() == 'tinyint unsigned' or v.lower() == 'smallint unsigned'\
                        or v.lower() == 'int unsigned' or v.lower() == 'bigint unsigned':
J
jiacy-jcy 已提交
102 103
                    tdSql.checkData(0, 0, 10)
                # float,double
J
update  
jiacy-jcy 已提交
104
                elif v.lower() == 'float' or v.lower() == 'double':
J
jiacy-jcy 已提交
105 106
                    tdSql.checkData(0, 0, 9.1)
                # bool
J
update  
jiacy-jcy 已提交
107
                elif v.lower() == 'bool':
J
jiacy-jcy 已提交
108 109
                    tdSql.checkData(0, 0, True)
                # binary
J
update  
jiacy-jcy 已提交
110
                elif 'binary' in v.lower():
J
jiacy-jcy 已提交
111 112
                    tdSql.checkData(0, 0, f'{self.binary_str}{self.rowNum}')
                # nchar
J
update  
jiacy-jcy 已提交
113
                elif 'nchar' in v.lower():
J
jiacy-jcy 已提交
114
                    tdSql.checkData(0, 0, f'{self.nchar_str}{self.rowNum}')
J
jiacy-jcy 已提交
115
        for i in [f'{stbname}_1', f'{stbname}']:
J
update  
jiacy-jcy 已提交
116
            tdSql.query(f"select last({list(column_dict.keys())[0]},{list(column_dict.keys())[1]},{list(column_dict.keys())[2]}) from {stbname}_1")
J
jiacy-jcy 已提交
117
            tdSql.checkData(0, 2, 10)
J
jiacy-jcy 已提交
118

J
update  
jiacy-jcy 已提交
119 120
        tdSql.error(f"select {list(column_dict.keys())[0]} from {stbname} where last({list(column_dict.keys())[12]})='涛思数据10'")
        tdSql.error(f"select {list(column_dict.keys())[0]} from {stbname}_1 where last({list(column_dict.keys())[12]})='涛思数据10'")
J
jiacy-jcy 已提交
121
        tdSql.execute('drop database db')
J
update  
jiacy-jcy 已提交
122

J
jiacy-jcy 已提交
123
    def last_check_ntb_base(self):
J
jiajingbin 已提交
124 125
        tdSql.execute(
            f'create database if not exists db cachemodel "{self.cachemodel}"')
J
jiacy-jcy 已提交
126
        ntbname = f'db.{tdCom.getLongName(5, "letters")}'
J
update  
jiacy-jcy 已提交
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
        column_dict = {
            'col1': 'tinyint',
            'col2': 'smallint',
            'col3': 'int',
            'col4': 'bigint',
            'col5': 'tinyint unsigned',
            'col6': 'smallint unsigned',
            'col7': 'int unsigned',
            'col8': 'bigint unsigned',
            'col9': 'float',
            'col10': 'double',
            'col11': 'bool',
            'col12': 'binary(20)',
            'col13': 'nchar(20)'
        }
        create_ntb_sql = self.set_create_normaltable_sql(ntbname, column_dict)
        tdSql.execute(create_ntb_sql)
        tdSql.execute(f"insert into {ntbname}(ts) values(%d)" % (self.ts - 1))
        tdSql.query(f"select last(*) from {ntbname}")
J
jiacy-jcy 已提交
146 147
        tdSql.checkRows(1)
        tdSql.checkData(0, 1, None)
J
update  
jiacy-jcy 已提交
148
        for i in column_dict.keys():
J
jiacy-jcy 已提交
149
            for j in [f'{ntbname}']:
J
update  
jiacy-jcy 已提交
150
                tdSql.query(f"select last({i}) from {j}")
J
jiacy-jcy 已提交
151
                tdSql.checkRows(0)
J
jiacy-jcy 已提交
152
        for i in range(self.rowNum):
J
update  
jiacy-jcy 已提交
153
            tdSql.execute(f"insert into {ntbname} values(%d, %d, %d, %d, %d, %d, %d, %d, %d, %f, %f, %d, '{self.binary_str}%d', '{self.nchar_str}%d')"
J
jiacy-jcy 已提交
154
                          % (self.ts + i, i + 1, i + 1, i + 1, i + 1, i + 1, i + 1, i + 1, i + 1, i + 0.1, i + 0.1, i % 2, i + 1, i + 1))
J
update  
jiacy-jcy 已提交
155
        tdSql.query(f"select last(*) from {ntbname}")
J
jiacy-jcy 已提交
156 157
        tdSql.checkRows(1)
        tdSql.checkData(0, 1, 10)
J
update  
jiacy-jcy 已提交
158
        for k, v in column_dict.items():
J
jiacy-jcy 已提交
159
            for j in [f'{ntbname}']:
J
update  
jiacy-jcy 已提交
160
                tdSql.query(f"select last({k}) from {j}")
J
jiacy-jcy 已提交
161 162
                tdSql.checkRows(1)
                # tinyint,smallint,int,bigint,tinyint unsigned,smallint unsigned,int unsigned,bigint unsigned
J
update  
jiacy-jcy 已提交
163 164
                if v.lower() == 'tinyint' or v.lower() == 'smallint' or v.lower() == 'int' or v.lower() == 'bigint' or v.lower() == 'tinyint unsigned' or v.lower() == 'smallint unsigned'\
                        or v.lower() == 'int unsigned' or v.lower() == 'bigint unsigned':
J
jiacy-jcy 已提交
165 166
                    tdSql.checkData(0, 0, 10)
                # float,double
J
update  
jiacy-jcy 已提交
167
                elif v.lower() == 'float' or v.lower() == 'double':
J
jiacy-jcy 已提交
168 169
                    tdSql.checkData(0, 0, 9.1)
                # bool
J
update  
jiacy-jcy 已提交
170
                elif v.lower() == 'bool':
J
jiacy-jcy 已提交
171 172
                    tdSql.checkData(0, 0, True)
                # binary
J
update  
jiacy-jcy 已提交
173
                elif 'binary' in v.lower():
J
jiacy-jcy 已提交
174 175
                    tdSql.checkData(0, 0, f'{self.binary_str}{self.rowNum}')
                # nchar
J
update  
jiacy-jcy 已提交
176
                elif 'nchar' in v.lower():
J
jiacy-jcy 已提交
177
                    tdSql.checkData(0, 0, f'{self.nchar_str}{self.rowNum}')
P
Ping Xiao 已提交
178 179
        
        
J
jiacy-jcy 已提交
180

J
update  
jiacy-jcy 已提交
181 182
        tdSql.error(
            f"select {list(column_dict.keys())[0]} from {ntbname} where last({list(column_dict.keys())[9]})='涛思数据10'")
J
jiacy-jcy 已提交
183

J
jiacy-jcy 已提交
184
    def last_check_stb_distribute(self):
J
update  
jiacy-jcy 已提交
185
        # prepare data for vgroup 4
J
jiacy-jcy 已提交
186
        dbname = tdCom.getLongName(10, "letters")
J
jiacy-jcy 已提交
187 188
        stbname = f'{dbname}.{tdCom.getLongName(5, "letters")}'
        vgroup_num = 2
J
update  
jiacy-jcy 已提交
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
        column_dict = {
            'col1': 'tinyint',
            'col2': 'smallint',
            'col3': 'int',
            'col4': 'bigint',
            'col5': 'tinyint unsigned',
            'col6': 'smallint unsigned',
            'col7': 'int unsigned',
            'col8': 'bigint unsigned',
            'col9': 'float',
            'col10': 'double',
            'col11': 'bool',
            'col12': 'binary(20)',
            'col13': 'nchar(20)'
        }
J
update  
jiacy-jcy 已提交
204 205

        tdSql.execute(
J
jiajingbin 已提交
206
            f'create database if not exists {dbname} vgroups {vgroup_num}  cachemodel "{self.cachemodel}"')
J
jiacy-jcy 已提交
207
        tdSql.execute(f'use {dbname}')
J
update  
jiacy-jcy 已提交
208

J
jiacy-jcy 已提交
209
        # build 20 child tables,every table insert 10 rows
G
Ganlin Zhao 已提交
210
        tdSql.execute(f'''create table {stbname}(ts timestamp, col1 tinyint, col2 smallint, col3 int, col4 bigint, col5 tinyint unsigned, col6 smallint unsigned,
J
jiacy-jcy 已提交
211
                    col7 int unsigned, col8 bigint unsigned, col9 float, col10 double, col11 bool, col12 binary(20), col13 nchar(20)) tags(loc nchar(20))''')
J
jiacy-jcy 已提交
212
        for i in range(self.tbnum):
J
update  
jiacy-jcy 已提交
213 214 215 216
            tdSql.execute(
                f"create table {stbname}_{i} using {stbname} tags('beijing')")
            tdSql.execute(
                f"insert into {stbname}_{i}(ts) values(%d)" % (self.ts - 1-i))
X
Xiaoyu Wang 已提交
217
        tdSql.query(f"select * from information_schema.ins_tables where db_name = '{dbname}'")
J
jiacy-jcy 已提交
218 219 220 221 222 223
        vgroup_list = []
        for i in range(len(tdSql.queryResult)):
            vgroup_list.append(tdSql.queryResult[i][6])
        vgroup_list_set = set(vgroup_list)
        for i in vgroup_list_set:
            vgroups_num = vgroup_list.count(i)
J
update  
jiacy-jcy 已提交
224
            if vgroups_num >= 2:
J
jiacy-jcy 已提交
225 226
                tdLog.info(f'This scene with {vgroups_num} vgroups is ok!')
                continue
J
update  
jiacy-jcy 已提交
227

J
jiacy-jcy 已提交
228
        for i in range(self.tbnum):
J
jiacy-jcy 已提交
229 230
            for j in range(self.rowNum):
                tdSql.execute(f"insert into {stbname}_{i} values(%d, %d, %d, %d, %d, %d, %d, %d, %d, %f, %f, %d, '{self.binary_str}%d', '{self.nchar_str}%d')"
J
update  
jiacy-jcy 已提交
231
                              % (self.ts + j + i, j + 1, j + 1, j + 1, j + 1, j + 1, j + 1, j + 1, j + 1, j + 0.1, j + 0.1, j % 2, j + 1, j + 1))
J
jiacy-jcy 已提交
232
        for i in [f'{stbname}']:
J
jiacy-jcy 已提交
233 234 235
            tdSql.query(f"select last(*) from {i}")
            tdSql.checkRows(1)
            tdSql.checkData(0, 1, 10)
J
update  
jiacy-jcy 已提交
236
        for k, v in column_dict.items():
J
jiacy-jcy 已提交
237
            for j in [f'{stbname}']:
J
update  
jiacy-jcy 已提交
238
                tdSql.query(f"select last({k}) from {j}")
J
jiacy-jcy 已提交
239 240
                tdSql.checkRows(1)
                # tinyint,smallint,int,bigint,tinyint unsigned,smallint unsigned,int unsigned,bigint unsigned
J
update  
jiacy-jcy 已提交
241 242
                if v.lower() == 'tinyint' or v.lower() == 'smallint' or v.lower() == 'int' or v.lower() == 'bigint' or v.lower() == 'tinyint unsigned' or v.lower() == 'smallint unsigned'\
                        or v.lower() == 'int unsigned' or v.lower() == 'bigint unsigned':
J
jiacy-jcy 已提交
243 244
                    tdSql.checkData(0, 0, 10)
                # float,double
J
update  
jiacy-jcy 已提交
245
                elif v.lower() == 'float' or v.lower() == 'double':
J
jiacy-jcy 已提交
246 247
                    tdSql.checkData(0, 0, 9.1)
                # bool
J
update  
jiacy-jcy 已提交
248
                elif v.lower() == 'bool':
J
jiacy-jcy 已提交
249 250
                    tdSql.checkData(0, 0, True)
                # binary
J
update  
jiacy-jcy 已提交
251
                elif 'binary' in v.lower():
J
jiacy-jcy 已提交
252 253
                    tdSql.checkData(0, 0, f'{self.binary_str}{self.rowNum}')
                # nchar
J
update  
jiacy-jcy 已提交
254
                elif 'nchar' in v.lower():
J
jiacy-jcy 已提交
255 256
                    tdSql.checkData(0, 0, f'{self.nchar_str}{self.rowNum}')
        tdSql.execute(f'drop database {dbname}')
J
update  
jiacy-jcy 已提交
257

P
Ping Xiao 已提交
258 259 260 261 262 263
    def last_file_check(self):
        dbname = tdCom.getLongName(10, "letters")
        stbname = f'{dbname}.{tdCom.getLongName(5, "letters")}'
        vgroup_num = 10
        buffer_size = 3
        tables = 100
P
Ping Xiao 已提交
264
        rows = 50
P
Ping Xiao 已提交
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
        str = self.generateString(1024)
        column_dict = {
            'c1': 'int',
            'c2': 'binary(1024)',
            'c3': 'nchar(1024)'
        }
        tag_dict = {
            't1':'int'
        }                
        
        tdSql.execute(
            f"create database if not exists {dbname} vgroups {vgroup_num} buffer {buffer_size}")
        tdSql.execute(f'use {dbname}')

        create_ntb_sql = self.set_create_stable_sql(stbname, column_dict, tag_dict)
        tdSql.execute(create_ntb_sql)

        for i in range(tables):
P
Ping Xiao 已提交
283
            sql = f"create table {dbname}.sub_tb{i} using {stbname} tags({i})"
P
Ping Xiao 已提交
284 285
            tdSql.execute(sql)
            for j in range(rows):
P
Ping Xiao 已提交
286
                tdSql.execute(f"insert into {dbname}.sub_tb{i} values(%d, %d, '%s', '%s')" % (self.ts + j, i, str, str))
P
Ping Xiao 已提交
287 288 289 290 291
                
        tdSql.query(f"select * from {stbname}")
        tdSql.checkRows(tables * rows)


J
jiacy-jcy 已提交
292
    def run(self):
P
Ping Xiao 已提交
293 294 295 296
        self.last_check_stb_tb_base()
        self.last_check_ntb_base()
        self.last_check_stb_distribute()
        self.last_file_check()
J
jiacy-jcy 已提交
297

J
jiacy-jcy 已提交
298 299 300 301
    def stop(self):
        tdSql.close()
        tdLog.success("%s successfully executed" % __file__)

J
jiacy-jcy 已提交
302

J
jiacy-jcy 已提交
303
tdCases.addWindows(__file__, TDTestCase())
J
jiacy-jcy 已提交
304
tdCases.addLinux(__file__, TDTestCase())