schemalessInsert.py 60.0 KB
Newer Older
J
jiajingbin 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
###################################################################
#           Copyright (c) 2021 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 Jianhui Tao
#
###################################################################

# -*- coding: utf-8 -*-

14
import traceback
J
jiajingbin 已提交
15 16
import random
import string
17
from taos.error import SchemalessError
J
jiajingbin 已提交
18 19 20 21 22 23
import time
from copy import deepcopy
import numpy as np
from util.log import *
from util.cases import *
from util.sql import *
J
save  
jiajingbin 已提交
24
import threading
J
jiajingbin 已提交
25 26 27 28 29 30 31 32


class TDTestCase:
    def init(self, conn, logSql):
        tdLog.debug("start to execute %s" % __file__)
        tdSql.init(conn.cursor(), logSql)
        self._conn = conn 

J
jiajingbin 已提交
33 34 35 36 37 38 39 40 41
    def createDb(self, name="test", db_update_tag=0):
        if db_update_tag == 0:
            tdSql.execute(f"drop database if exists {name}")
            tdSql.execute(f"create database if not exists {name} precision 'us'")
        else:
            tdSql.execute(f"drop database if exists {name}")
            tdSql.execute(f"create database if not exists {name} precision 'us' update 1")
        tdSql.execute(f'use {name}')

J
jiajingbin 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
    def getLongName(self, len, mode = "mixed"):
        """
            generate long name
            mode could be numbers/letters/mixed
        """    
        if mode is "numbers": 
            chars = ''.join(random.choice(string.digits) for i in range(len))
        elif mode is "letters": 
            chars = ''.join(random.choice(string.ascii_letters.lower()) for i in range(len))
        else:
            chars = ''.join(random.choice(string.ascii_letters.lower() + string.digits) for i in range(len))
        return chars

    def timeTrans(self, time_value):
        if time_value.endswith("ns"):
            ts = int(''.join(list(filter(str.isdigit, time_value))))/1000000000
        elif time_value.endswith("us") or time_value.isdigit() and int(time_value) != 0:
            ts = int(''.join(list(filter(str.isdigit, time_value))))/1000000
        elif time_value.endswith("ms"):
            ts = int(''.join(list(filter(str.isdigit, time_value))))/1000
        elif time_value.endswith("s") and list(time_value)[-1] not in "num":
            ts = int(''.join(list(filter(str.isdigit, time_value))))/1
        elif int(time_value) == 0:
            ts = time.time()
        else:
            print("input ts maybe not right format")
        ulsec = repr(ts).split('.')[1][:6]
        if len(ulsec) < 6 and int(ulsec) != 0:
            ulsec = int(ulsec) * (10 ** (6 - len(ulsec)))
        elif int(ulsec) == 0:
            ulsec *= 6
73
            # * follow two rows added for tsCheckCase
J
jiajingbin 已提交
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
            td_ts = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(ts))
            return td_ts
        #td_ts = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(ts))
        td_ts = time.strftime("%Y-%m-%d %H:%M:%S.{}".format(ulsec), time.localtime(ts))
        return td_ts
        #return repr(datetime.datetime.strptime(td_ts, "%Y-%m-%d %H:%M:%S.%f"))
    
    def dateToTs(self, datetime_input):
        return int(time.mktime(time.strptime(datetime_input, "%Y-%m-%d %H:%M:%S.%f")))

    def getTdTypeValue(self, value):
        if value.endswith("i8"):
            td_type = "TINYINT"
            td_tag_value = ''.join(list(value)[:-2])
        elif value.endswith("i16"):
            td_type = "SMALLINT"
            td_tag_value = ''.join(list(value)[:-3])
        elif value.endswith("i32"):
            td_type = "INT"
            td_tag_value = ''.join(list(value)[:-3])
        elif value.endswith("i64"):
            td_type = "BIGINT"
            td_tag_value = ''.join(list(value)[:-3])
        elif value.endswith("u64"):
            td_type = "BIGINT UNSIGNED"
            td_tag_value = ''.join(list(value)[:-3])
        elif value.endswith("f32"):
            td_type = "FLOAT"
            td_tag_value = ''.join(list(value)[:-3])
            td_tag_value = '{}'.format(np.float32(td_tag_value))
        elif value.endswith("f64"):
            td_type = "DOUBLE"
            td_tag_value = ''.join(list(value)[:-3])
        elif value.startswith('L"'):
            td_type = "NCHAR"
            td_tag_value = ''.join(list(value)[2:-1])
        elif value.startswith('"') and value.endswith('"'):
            td_type = "BINARY"
            td_tag_value = ''.join(list(value)[1:-1])
        elif value.lower() == "t" or value == "true" or value == "True":
            td_type = "BOOL"
            td_tag_value = "True"
        elif value.lower() == "f" or value == "false" or value == "False":
            td_type = "BOOL"
            td_tag_value = "False"
        else:
            td_type = "FLOAT"
            td_tag_value = value
        return td_type, td_tag_value

    def typeTrans(self, type_list):
        type_num_list = []
        for tp in type_list:
            if tp.upper() == "TIMESTAMP":
                type_num_list.append(9)
            elif tp.upper() == "BOOL":
                type_num_list.append(1)
            elif tp.upper() == "TINYINT":
                type_num_list.append(2)
            elif tp.upper() == "SMALLINT":
                type_num_list.append(3)
            elif tp.upper() == "INT":
                type_num_list.append(4)
            elif tp.upper() == "BIGINT":
                type_num_list.append(5)
            elif tp.upper() == "FLOAT":
                type_num_list.append(6)
            elif tp.upper() == "DOUBLE":
                type_num_list.append(7)
            elif tp.upper() == "BINARY":
                type_num_list.append(8)
            elif tp.upper() == "NCHAR":
                type_num_list.append(10)
            elif tp.upper() == "BIGINT UNSIGNED":
                type_num_list.append(14)
        return type_num_list

    def inputHandle(self, input_sql):
        input_sql_split_list = input_sql.split(" ")

        stb_tag_list = input_sql_split_list[0].split(',')
        stb_col_list = input_sql_split_list[1].split(',')
        ts_value = self.timeTrans(input_sql_split_list[2])

        stb_name = stb_tag_list[0]
        stb_tag_list.pop(0)

        tag_name_list = []
        tag_value_list = []
        td_tag_value_list = []
        td_tag_type_list = []

        col_name_list = []
        col_value_list = []
        td_col_value_list = []
        td_col_type_list = []

        for elm in stb_tag_list:
            if "id=" in elm.lower():
                tb_name = elm.split('=')[1]
            else:
                tag_name_list.append(elm.split("=")[0])
                tag_value_list.append(elm.split("=")[1])
                tb_name = ""
                td_tag_value_list.append(self.getTdTypeValue(elm.split("=")[1])[1])
                td_tag_type_list.append(self.getTdTypeValue(elm.split("=")[1])[0])
        
        for elm in stb_col_list:
            col_name_list.append(elm.split("=")[0])
            col_value_list.append(elm.split("=")[1])
            td_col_value_list.append(self.getTdTypeValue(elm.split("=")[1])[1])
            td_col_type_list.append(self.getTdTypeValue(elm.split("=")[1])[0])

        final_field_list = []
        final_field_list.extend(col_name_list)
        final_field_list.extend(tag_name_list)

        final_type_list = []
        final_type_list.append("TIMESTAMP")
        final_type_list.extend(td_col_type_list)
        final_type_list.extend(td_tag_type_list)
        final_type_list = self.typeTrans(final_type_list)

        final_value_list = []
        final_value_list.append(ts_value)
        final_value_list.extend(td_col_value_list)
        final_value_list.extend(td_tag_value_list)
        return final_value_list, final_field_list, final_type_list, stb_name, tb_name

    def genFullTypeSql(self, stb_name="", tb_name="", t0="", t1="127i8", t2="32767i16", t3="2147483647i32",
                        t4="9223372036854775807i64", t5="11.12345f32", t6="22.123456789f64", t7="\"binaryTagValue\"",
                        t8="L\"ncharTagValue\"", c0="", c1="127i8", c2="32767i16", c3="2147483647i32",
                        c4="9223372036854775807i64", c5="11.12345f32", c6="22.123456789f64", c7="\"binaryColValue\"", 
J
save  
jiajingbin 已提交
207 208 209
                        c8="L\"ncharColValue\"", c9="7u64", ts="1626006833639000000ns",
                        id_noexist_tag=None, id_change_tag=None, id_upper_tag=None, id_double_tag=None,
                        ct_add_tag=None, ct_am_tag=None, ct_ma_tag=None, ct_min_tag=None):
J
jiajingbin 已提交
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
        if stb_name == "":
            stb_name = self.getLongName(len=6, mode="letters")
        if tb_name == "":
            tb_name = f'{stb_name}_{random.randint(0, 65535)}_{random.randint(0, 65535)}'
        if t0 == "":
            t0 = random.choice(["f", "F", "false", "False", "t", "T", "true", "True"])
        if c0 == "":
            c0 = random.choice(["f", "F", "false", "False", "t", "T", "true", "True"])
        #sql_seq = f'{stb_name},id=\"{tb_name}\",t0={t0},t1=127i8,t2=32767i16,t3=125.22f64,t4=11.321f32,t5=11.12345f32,t6=22.123456789f64,t7=\"binaryTagValue\",t8=L\"ncharTagValue\" c0={bool_value},c1=127i8,c2=32767i16,c3=2147483647i32,c4=9223372036854775807i64,c5=11.12345f32,c6=22.123456789f64,c7=\"binaryValue\",c8=L\"ncharValue\" 1626006833639000000ns'
        if id_upper_tag is not None:
            id = "ID"
        else:
            id = "id"
        sql_seq = f'{stb_name},{id}=\"{tb_name}\",t0={t0},t1={t1},t2={t2},t3={t3},t4={t4},t5={t5},t6={t6},t7={t7},t8={t8} c0={c0},c1={c1},c2={c2},c3={c3},c4={c4},c5={c5},c6={c6},c7={c7},c8={c8},c9={c9} {ts}'
        if id_noexist_tag is not None:
            sql_seq = f'{stb_name},t0={t0},t1={t1},t2={t2},t3={t3},t4={t4},t5={t5},t6={t6},t7={t7},t8={t8} c0={c0},c1={c1},c2={c2},c3={c3},c4={c4},c5={c5},c6={c6},c7={c7},c8={c8},c9={c9} {ts}'
J
save  
jiajingbin 已提交
226
            if ct_add_tag is not None:
J
jiajingbin 已提交
227 228 229 230 231
                sql_seq = f'{stb_name},t0={t0},t1={t1},t2={t2},t3={t3},t4={t4},t5={t5},t6={t6},t7={t7},t8={t8},t9={t8} c0={c0},c1={c1},c2={c2},c3={c3},c4={c4},c5={c5},c6={c6},c7={c7},c8={c8},c9={c9} {ts}'
        if id_change_tag is not None:
            sql_seq = f'{stb_name},t0={t0},t1={t1},{id}=\"{tb_name}\",t2={t2},t3={t3},t4={t4},t5={t5},t6={t6},t7={t7},t8={t8} c0={c0},c1={c1},c2={c2},c3={c3},c4={c4},c5={c5},c6={c6},c7={c7},c8={c8},c9={c9} {ts}'
        if id_double_tag is not None:
            sql_seq = f'{stb_name},{id}=\"{tb_name}_1\",t0={t0},t1={t1},{id}=\"{tb_name}_2\",t2={t2},t3={t3},t4={t4},t5={t5},t6={t6},t7={t7},t8={t8} c0={c0},c1={c1},c2={c2},c3={c3},c4={c4},c5={c5},c6={c6},c7={c7},c8={c8},c9={c9} {ts}'
J
save  
jiajingbin 已提交
232
        if ct_add_tag is not None:
J
jiajingbin 已提交
233
            sql_seq = f'{stb_name},{id}=\"{tb_name}\",t0={t0},t1={t1},t2={t2},t3={t3},t4={t4},t5={t5},t6={t6},t7={t7},t8={t8},t11={t1},t10={t8} c0={c0},c1={c1},c2={c2},c3={c3},c4={c4},c5={c5},c6={c6},c7={c7},c8={c8},c9={c9},c11={c8},c10={t0} {ts}'
J
save  
jiajingbin 已提交
234 235
        if ct_am_tag is not None:
            sql_seq = f'{stb_name},{id}=\"{tb_name}\",t0={t0},t1={t1},t2={t2},t3={t3},t4={t4},t5={t5},t6={t6} c0={c0},c1={c1},c2={c2},c3={c3},c4={c4},c5={c5},c6={c6},c7={c7},c8={c8},c9={c9},c11={c8},c10={t0} {ts}'
J
jiajingbin 已提交
236 237
            if id_noexist_tag is not None:
                    sql_seq = f'{stb_name},t0={t0},t1={t1},t2={t2},t3={t3},t4={t4},t5={t5},t6={t6} c0={c0},c1={c1},c2={c2},c3={c3},c4={c4},c5={c5},c6={c6},c7={c7},c8={c8},c9={c9},c11={c8},c10={t0} {ts}'
J
save  
jiajingbin 已提交
238 239
        if ct_ma_tag is not None:
            sql_seq = f'{stb_name},{id}=\"{tb_name}\",t0={t0},t1={t1},t2={t2},t3={t3},t4={t4},t5={t5},t6={t6},t7={t7},t8={t8},t11={t1},t10={t8} c0={c0},c1={c1},c2={c2},c3={c3},c4={c4},c5={c5},c6={c6} {ts}'
J
jiajingbin 已提交
240 241
            if id_noexist_tag is not None:
                sql_seq = f'{stb_name},t0={t0},t1={t1},t2={t2},t3={t3},t4={t4},t5={t5},t6={t6},t7={t7},t8={t8},t11={t1},t10={t8} c0={c0},c1={c1},c2={c2},c3={c3},c4={c4},c5={c5},c6={c6} {ts}'
J
save  
jiajingbin 已提交
242 243
        if ct_min_tag is not None:
            sql_seq = f'{stb_name},{id}=\"{tb_name}\",t0={t0},t1={t1},t2={t2},t3={t3},t4={t4},t5={t5},t6={t6} c0={c0},c1={c1},c2={c2},c3={c3},c4={c4},c5={c5},c6={c6} {ts}'
J
jiajingbin 已提交
244
        return sql_seq, stb_name
J
jiajingbin 已提交
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
    
    def genMulTagColStr(self, genType, count):
        """
            genType must be tag/col
        """
        tag_str = ""
        col_str = ""
        if genType == "tag":
            for i in range(0, count):
                if i < (count-1):
                    tag_str += f't{i}=f,'
                else:
                    tag_str += f't{i}=f '
            return tag_str
        if genType == "col":
            for i in range(0, count):
                if i < (count-1):
                    col_str += f'c{i}=t,'
                else:
                    col_str += f'c{i}=t '
            return col_str

    def genLongSql(self, tag_count, col_count):
        stb_name = self.getLongName(7, mode="letters")
        tb_name = f'{stb_name}_1'
        tag_str = self.genMulTagColStr("tag", tag_count)
        col_str = self.genMulTagColStr("col", col_count)
        ts = "1626006833640000000ns"
        long_sql = stb_name + ',' + f'id=\"{tb_name}\"' + ',' + tag_str + col_str + ts
        return long_sql, stb_name

    def getNoIdTbName(self, stb_name):
        query_sql = f"select tbname from {stb_name}"
        tb_name = self.resHandle(query_sql, True)[0][0]
        return tb_name

    def resHandle(self, query_sql, query_tag):
282
        tdSql.execute('reset query cache')
J
jiajingbin 已提交
283 284 285 286 287 288 289 290 291 292 293 294 295 296
        row_info = tdSql.query(query_sql, query_tag)
        col_info = tdSql.getColNameList(query_sql, query_tag)
        res_row_list = []
        sub_list = []
        for row_mem in row_info:
            for i in row_mem:
                sub_list.append(str(i))
            res_row_list.append(sub_list)
        res_field_list_without_ts = col_info[0][1:]
        res_type_list = col_info[1]
        return res_row_list, res_field_list_without_ts, res_type_list

    def resCmp(self, input_sql, stb_name, query_sql="select * from", condition="", ts=None, id=True, none_check_tag=None):
        expect_list = self.inputHandle(input_sql)
297
        self._conn.schemaless_insert([input_sql], 0)
J
jiajingbin 已提交
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
        query_sql = f"{query_sql} {stb_name} {condition}"
        res_row_list, res_field_list_without_ts, res_type_list = self.resHandle(query_sql, True)
        if ts == 0:
            res_ts = self.dateToTs(res_row_list[0][0])
            current_time = time.time()
            if current_time - res_ts < 60:
                tdSql.checkEqual(res_row_list[0][1:], expect_list[0][1:])
            else:
                print("timeout")
                tdSql.checkEqual(res_row_list[0], expect_list[0])
        else:
            if none_check_tag is not None:
                none_index_list = [i for i,x in enumerate(res_row_list[0]) if x=="None"]
                none_index_list.reverse()
                for j in none_index_list:
                    res_row_list[0].pop(j)
                    expect_list[0].pop(j)
            tdSql.checkEqual(res_row_list[0], expect_list[0])
        tdSql.checkEqual(res_field_list_without_ts, expect_list[1])
317 318 319
        for i in range(len(res_type_list)):
            tdSql.checkEqual(res_type_list[i], expect_list[2][i])
        # tdSql.checkEqual(res_type_list, expect_list[2])
J
jiajingbin 已提交
320

J
jiajingbin 已提交
321 322
    def cleanStb(self):
        query_sql = "show stables"
J
jiajingbin 已提交
323 324 325
        res_row_list = tdSql.query(query_sql, True)
        stb_list = map(lambda x: x[0], res_row_list)
        for stb in stb_list:
J
jiajingbin 已提交
326 327
            tdSql.execute(f'drop table if exists {stb}')

J
jiajingbin 已提交
328 329 330 331
    def initCheckCase(self):
        """
            normal tags and cols, one for every elm
        """
J
jiajingbin 已提交
332
        self.cleanStb()
J
jiajingbin 已提交
333
        input_sql, stb_name = self.genFullTypeSql()
J
jiajingbin 已提交
334 335 336 337 338 339
        self.resCmp(input_sql, stb_name)

    def boolTypeCheckCase(self):
        """
            check all normal type
        """
J
jiajingbin 已提交
340
        self.cleanStb()
J
jiajingbin 已提交
341 342
        full_type_list = ["f", "F", "false", "False", "t", "T", "true", "True"]
        for t_type in full_type_list:
J
jiajingbin 已提交
343
            input_sql, stb_name = self.genFullTypeSql(c0=t_type, t0=t_type)
J
jiajingbin 已提交
344 345 346 347 348 349 350 351 352 353
            self.resCmp(input_sql, stb_name)
        
    def symbolsCheckCase(self):
        """
            check symbols = `~!@#$%^&*()_-+={[}]\|:;'\",<.>/? 
        """
        '''
            please test :
            binary_symbols = '\"abcd`~!@#$%^&*()_-{[}]|:;<.>?lfjal"\'\'"\"'
        '''
J
jiajingbin 已提交
354
        self.cleanStb()
J
jiajingbin 已提交
355 356
        binary_symbols = '\"abcd`~!@#$%^&*()_-{[}]|:;<.>?lfjal"\"'
        nchar_symbols = f'L{binary_symbols}'
J
jiajingbin 已提交
357
        input_sql, stb_name = self.genFullTypeSql(c7=binary_symbols, c8=nchar_symbols, t7=binary_symbols, t8=nchar_symbols)
J
jiajingbin 已提交
358 359 360 361 362 363 364
        self.resCmp(input_sql, stb_name)

    def tsCheckCase(self):
        """
            test ts list --> ["1626006833639000000ns", "1626006833639019us", "1626006833640ms", "1626006834s", "1626006822639022"]
            # ! us级时间戳都为0时,数据库中查询显示,但python接口拿到的结果不显示 .000000的情况请确认,目前修改时间处理代码可以通过
        """
J
jiajingbin 已提交
365
        self.cleanStb()
J
jiajingbin 已提交
366 367
        ts_list = ["1626006833639000000ns", "1626006833639019us", "1626006833640ms", "1626006834s", "1626006822639022", 0]
        for ts in ts_list:
J
modify  
jiajingbin 已提交
368
            input_sql, stb_name = self.genFullTypeSql(ts=ts)
J
jiajingbin 已提交
369
            self.resCmp(input_sql, stb_name, ts=ts)
J
jiajingbin 已提交
370 371 372 373 374 375
    
    def idSeqCheckCase(self):
        """
            check id.index in tags
            eg: t0=**,id=**,t1=**
        """
J
jiajingbin 已提交
376
        self.cleanStb()
J
jiajingbin 已提交
377
        input_sql, stb_name = self.genFullTypeSql(id_change_tag=True)
J
jiajingbin 已提交
378 379 380 381 382 383 384
        self.resCmp(input_sql, stb_name)
    
    def idUpperCheckCase(self):
        """
            check id param
            eg: id and ID
        """
J
jiajingbin 已提交
385
        self.cleanStb()
J
jiajingbin 已提交
386
        input_sql, stb_name = self.genFullTypeSql(id_upper_tag=True)
J
jiajingbin 已提交
387
        self.resCmp(input_sql, stb_name)
J
jiajingbin 已提交
388
        input_sql, stb_name = self.genFullTypeSql(id_change_tag=True, id_upper_tag=True)
J
jiajingbin 已提交
389 390 391 392 393 394
        self.resCmp(input_sql, stb_name)

    def noIdCheckCase(self):
        """
            id not exist
        """
J
jiajingbin 已提交
395
        self.cleanStb()
J
jiajingbin 已提交
396
        input_sql, stb_name = self.genFullTypeSql(id_noexist_tag=True)
J
jiajingbin 已提交
397 398 399 400 401 402 403 404 405 406 407 408 409
        self.resCmp(input_sql, stb_name)
        query_sql = f"select tbname from {stb_name}"
        res_row_list = self.resHandle(query_sql, True)[0]
        if len(res_row_list[0][0]) > 0:
            tdSql.checkColNameList(res_row_list, res_row_list)
        else:
            tdSql.checkColNameList(res_row_list, "please check noIdCheckCase")

    def maxColTagCheckCase(self):
        """
            max tag count is 128
            max col count is ??
        """
J
save  
jiajingbin 已提交
410 411
        for input_sql in [self.genLongSql(128, 1)[0], self.genLongSql(1, 4094)[0]]:
            self.cleanStb()
412
            self._conn.schemaless_insert([input_sql], 0)
J
save  
jiajingbin 已提交
413 414
        for input_sql in [self.genLongSql(129, 1)[0], self.genLongSql(1, 4095)[0]]:
            self.cleanStb()
415
            try:
416 417
                self._conn.schemaless_insert([input_sql], 0)
            except SchemalessError:
418 419
                pass
            
J
jiajingbin 已提交
420 421 422
    def idIllegalNameCheckCase(self):
        """
            test illegal id name
J
jiajingbin 已提交
423
            mix "`~!@#$¥%^&*()-+={}|[]、「」【】\:;《》<>?"
J
jiajingbin 已提交
424
        """
J
jiajingbin 已提交
425
        self.cleanStb()
J
jiajingbin 已提交
426
        rstr = list("`~!@#$¥%^&*()-+={}|[]、「」【】\:;《》<>?")
J
jiajingbin 已提交
427 428
        for i in rstr:
            input_sql = self.genFullTypeSql(tb_name=f"\"aaa{i}bbb\"")[0]
429
            try:
430 431
                self._conn.schemaless_insert([input_sql], 0)
            except SchemalessError:
432
                pass
J
jiajingbin 已提交
433 434 435 436 437

    def idStartWithNumCheckCase(self):
        """
            id is start with num
        """
J
jiajingbin 已提交
438
        self.cleanStb()
J
jiajingbin 已提交
439
        input_sql = self.genFullTypeSql(tb_name=f"\"1aaabbb\"")[0]
440
        try:
441 442
            self._conn.schemaless_insert([input_sql], 0)
        except SchemalessError:
443
            pass
J
jiajingbin 已提交
444 445 446 447 448

    def nowTsCheckCase(self):
        """
            check now unsupported
        """
J
jiajingbin 已提交
449
        self.cleanStb()
J
jiajingbin 已提交
450
        input_sql = self.genFullTypeSql(ts="now")[0]
451
        try:
452 453
            self._conn.schemaless_insert([input_sql], 0)
        except SchemalessError:
454
            pass
J
jiajingbin 已提交
455 456 457 458 459

    def dateFormatTsCheckCase(self):
        """
            check date format ts unsupported
        """
J
jiajingbin 已提交
460
        self.cleanStb()
J
jiajingbin 已提交
461
        input_sql = self.genFullTypeSql(ts="2021-07-21\ 19:01:46.920")[0]
462
        try:
463 464
            self._conn.schemaless_insert([input_sql], 0)
        except SchemalessError:
465
            pass
J
jiajingbin 已提交
466 467 468 469 470
    
    def illegalTsCheckCase(self):
        """
            check ts format like 16260068336390us19
        """
J
jiajingbin 已提交
471
        self.cleanStb()
J
jiajingbin 已提交
472
        input_sql = self.genFullTypeSql(ts="16260068336390us19")[0]
473
        try:
474 475
            self._conn.schemaless_insert([input_sql], 0)
        except SchemalessError:
476
            pass
J
jiajingbin 已提交
477 478 479 480 481

    def tagValueLengthCheckCase(self):
        """
            check full type tag value limit
        """
J
jiajingbin 已提交
482
        self.cleanStb()
J
save  
jiajingbin 已提交
483 484
        # i8
        for t1 in ["-127i8", "127i8"]:
J
jiajingbin 已提交
485
            input_sql, stb_name = self.genFullTypeSql(t1=t1)
J
save  
jiajingbin 已提交
486 487 488
            self.resCmp(input_sql, stb_name)
        for t1 in ["-128i8", "128i8"]:
            input_sql = self.genFullTypeSql(t1=t1)[0]
489
            try:
490 491
                self._conn.schemaless_insert([input_sql], 0)
            except SchemalessError:
492
                pass
J
save  
jiajingbin 已提交
493

J
save  
jiajingbin 已提交
494 495
        #i16
        for t2 in ["-32767i16", "32767i16"]:
J
jiajingbin 已提交
496
            input_sql, stb_name = self.genFullTypeSql(t2=t2)
J
save  
jiajingbin 已提交
497 498 499
            self.resCmp(input_sql, stb_name)
        for t2 in ["-32768i16", "32768i16"]:
            input_sql = self.genFullTypeSql(t2=t2)[0]
500
            try:
501 502
                self._conn.schemaless_insert([input_sql], 0)
            except SchemalessError:
503
                pass
J
save  
jiajingbin 已提交
504

J
save  
jiajingbin 已提交
505 506
        #i32
        for t3 in ["-2147483647i32", "2147483647i32"]:
J
jiajingbin 已提交
507
            input_sql, stb_name = self.genFullTypeSql(t3=t3)
J
save  
jiajingbin 已提交
508 509 510
            self.resCmp(input_sql, stb_name)
        for t3 in ["-2147483648i32", "2147483648i32"]:
            input_sql = self.genFullTypeSql(t3=t3)[0]
511
            try:
512 513
                self._conn.schemaless_insert([input_sql], 0)
            except SchemalessError:
514
                pass
J
save  
jiajingbin 已提交
515

J
save  
jiajingbin 已提交
516 517
        #i64
        for t4 in ["-9223372036854775807i64", "9223372036854775807i64"]:
J
jiajingbin 已提交
518
            input_sql, stb_name = self.genFullTypeSql(t4=t4)
J
save  
jiajingbin 已提交
519 520 521
            self.resCmp(input_sql, stb_name)
        for t4 in ["-9223372036854775808i64", "9223372036854775808i64"]:
            input_sql = self.genFullTypeSql(t4=t4)[0]
522
            try:
523 524
                self._conn.schemaless_insert([input_sql], 0)
            except SchemalessError:
525
                pass
J
save  
jiajingbin 已提交
526

J
save  
jiajingbin 已提交
527 528
        # f32
        for t5 in [f"{-3.4028234663852885981170418348451692544*(10**38)}f32", f"{3.4028234663852885981170418348451692544*(10**38)}f32"]:
J
jiajingbin 已提交
529
            input_sql, stb_name = self.genFullTypeSql(t5=t5)
J
save  
jiajingbin 已提交
530 531 532 533
            self.resCmp(input_sql, stb_name)
        # * limit set to 4028234664*(10**38)
        for t5 in [f"{-3.4028234664*(10**38)}f32", f"{3.4028234664*(10**38)}f32"]:
            input_sql = self.genFullTypeSql(t5=t5)[0]
534
            try:
535
                self._conn.schemaless_insert([input_sql], 0)
536
                raise Exception("should not reach here")
537
            except SchemalessError as err:
538 539
                tdSql.checkNotEqual(err.errno, 0)

J
jiajingbin 已提交
540

541
        # f64
J
save  
jiajingbin 已提交
542
        for t6 in [f'{-1.79769*(10**308)}f64', f'{-1.79769*(10**308)}f64']:
J
jiajingbin 已提交
543
            input_sql, stb_name = self.genFullTypeSql(t6=t6)
J
save  
jiajingbin 已提交
544
            self.resCmp(input_sql, stb_name)
J
save  
jiajingbin 已提交
545 546 547
        # * limit set to 1.797693134862316*(10**308)
        for c6 in [f'{-1.797693134862316*(10**308)}f64', f'{-1.797693134862316*(10**308)}f64']:
            input_sql = self.genFullTypeSql(c6=c6)[0]
548
            try:
549
                self._conn.schemaless_insert([input_sql], 0)
550
                raise Exception("should not reach here")
551
            except SchemalessError as err:
552
                tdSql.checkNotEqual(err.errno, 0)
J
jiajingbin 已提交
553

J
save  
jiajingbin 已提交
554 555 556
        # binary 
        stb_name = self.getLongName(7, "letters")
        input_sql = f'{stb_name},t0=t,t1="{self.getLongName(16374, "letters")}" c0=f 1626006833639000000ns'
557
        self._conn.schemaless_insert([input_sql], 0)
558
        
J
save  
jiajingbin 已提交
559
        input_sql = f'{stb_name},t0=t,t1="{self.getLongName(16375, "letters")}" c0=f 1626006833639000000ns'
560
        try:
561
            self._conn.schemaless_insert([input_sql], 0)
562
            raise Exception("should not reach here")
563
        except SchemalessError as err:
564
            pass
J
jiajingbin 已提交
565

J
save  
jiajingbin 已提交
566 567 568 569
        # nchar
        # * legal nchar could not be larger than 16374/4
        stb_name = self.getLongName(7, "letters")
        input_sql = f'{stb_name},t0=t,t1=L"{self.getLongName(4093, "letters")}" c0=f 1626006833639000000ns'
570
        self._conn.schemaless_insert([input_sql], 0)
571

J
save  
jiajingbin 已提交
572
        input_sql = f'{stb_name},t0=t,t1=L"{self.getLongName(4094, "letters")}" c0=f 1626006833639000000ns'
573
        try:
574
            self._conn.schemaless_insert([input_sql], 0)
575
            raise Exception("should not reach here")
576
        except SchemalessError as err:
577
            tdSql.checkNotEqual(err.errno, 0)
J
jiajingbin 已提交
578

J
jiajingbin 已提交
579 580 581 582
    def colValueLengthCheckCase(self):
        """
            check full type col value limit
        """
J
jiajingbin 已提交
583
        self.cleanStb()
J
save  
jiajingbin 已提交
584 585
        # i8
        for c1 in ["-127i8", "127i8"]:
J
jiajingbin 已提交
586
            input_sql, stb_name = self.genFullTypeSql(c1=c1)
J
save  
jiajingbin 已提交
587 588 589 590
            self.resCmp(input_sql, stb_name)

        for c1 in ["-128i8", "128i8"]:
            input_sql = self.genFullTypeSql(c1=c1)[0]
591
            try:
592
                self._conn.schemaless_insert([input_sql], 0)
593
                raise Exception("should not reach here")
594
            except SchemalessError as err:
595
                tdSql.checkNotEqual(err.errno, 0)
J
save  
jiajingbin 已提交
596 597
        # i16
        for c2 in ["-32767i16"]:
J
jiajingbin 已提交
598
            input_sql, stb_name = self.genFullTypeSql(c2=c2)
J
save  
jiajingbin 已提交
599 600 601
            self.resCmp(input_sql, stb_name)
        for c2 in ["-32768i16", "32768i16"]:
            input_sql = self.genFullTypeSql(c2=c2)[0]
602
            try:
603
                self._conn.schemaless_insert([input_sql], 0)
604
                raise Exception("should not reach here")
605
            except SchemalessError as err:
606
                tdSql.checkNotEqual(err.errno, 0)
J
save  
jiajingbin 已提交
607 608 609

        # i32
        for c3 in ["-2147483647i32"]:
J
jiajingbin 已提交
610
            input_sql, stb_name = self.genFullTypeSql(c3=c3)
J
save  
jiajingbin 已提交
611 612 613
            self.resCmp(input_sql, stb_name)
        for c3 in ["-2147483648i32", "2147483648i32"]:
            input_sql = self.genFullTypeSql(c3=c3)[0]
614
            try:
615
                self._conn.schemaless_insert([input_sql], 0)
616
                raise Exception("should not reach here")
617
            except SchemalessError as err:
618
                tdSql.checkNotEqual(err.errno, 0)
J
save  
jiajingbin 已提交
619 620 621

        # i64
        for c4 in ["-9223372036854775807i64"]:
J
jiajingbin 已提交
622
            input_sql, stb_name = self.genFullTypeSql(c4=c4)
J
save  
jiajingbin 已提交
623 624 625
            self.resCmp(input_sql, stb_name)
        for c4 in ["-9223372036854775808i64", "9223372036854775808i64"]:
            input_sql = self.genFullTypeSql(c4=c4)[0]
626
            try:
627
                self._conn.schemaless_insert([input_sql], 0)
628
                raise Exception("should not reach here")
629
            except SchemalessError as err:
630
                tdSql.checkNotEqual(err.errno, 0)
J
save  
jiajingbin 已提交
631 632 633

        # f32       
        for c5 in [f"{-3.4028234663852885981170418348451692544*(10**38)}f32", f"{3.4028234663852885981170418348451692544*(10**38)}f32"]:
J
jiajingbin 已提交
634
            input_sql, stb_name = self.genFullTypeSql(c5=c5)
J
save  
jiajingbin 已提交
635 636 637 638
            self.resCmp(input_sql, stb_name)
        # * limit set to 4028234664*(10**38)
        for c5 in [f"{-3.4028234664*(10**38)}f32", f"{3.4028234664*(10**38)}f32"]:
            input_sql = self.genFullTypeSql(c5=c5)[0]
639
            try:
640
                self._conn.schemaless_insert([input_sql], 0)
641
                raise Exception("should not reach here")
642
            except SchemalessError as err:
643
                tdSql.checkNotEqual(err.errno, 0)
J
save  
jiajingbin 已提交
644 645 646

        # f64
        for c6 in [f'{-1.79769313486231570814527423731704356798070567525844996598917476803157260780*(10**308)}f64', f'{-1.79769313486231570814527423731704356798070567525844996598917476803157260780*(10**308)}f64']:
J
jiajingbin 已提交
647
            input_sql, stb_name = self.genFullTypeSql(c6=c6)
J
save  
jiajingbin 已提交
648 649 650 651
            self.resCmp(input_sql, stb_name)
        # * limit set to 1.797693134862316*(10**308)
        for c6 in [f'{-1.797693134862316*(10**308)}f64', f'{-1.797693134862316*(10**308)}f64']:
            input_sql = self.genFullTypeSql(c6=c6)[0]
652
            try:
653
                self._conn.schemaless_insert([input_sql], 0)
654
                raise Exception("should not reach here")
655
            except SchemalessError as err:
656
                tdSql.checkNotEqual(err.errno, 0)
J
jiajingbin 已提交
657

J
save  
jiajingbin 已提交
658
        # # binary 
J
jiajingbin 已提交
659
        stb_name = self.getLongName(7, "letters")
J
save  
jiajingbin 已提交
660
        input_sql = f'{stb_name},t0=t c0=f,c1="{self.getLongName(16374, "letters")}" 1626006833639000000ns'
661
        self._conn.schemaless_insert([input_sql], 0)
662
        
J
save  
jiajingbin 已提交
663
        input_sql = f'{stb_name},t0=t c0=f,c1="{self.getLongName(16375, "letters")}" 1626006833639000000ns'
664
        try:
665
            self._conn.schemaless_insert([input_sql], 0)
666
            raise Exception("should not reach here")
667
        except SchemalessError as err:
668
            tdSql.checkNotEqual(err.errno, 0)
J
jiajingbin 已提交
669 670 671

        # nchar
        # * legal nchar could not be larger than 16374/4
J
save  
jiajingbin 已提交
672 673
        stb_name = self.getLongName(7, "letters")
        input_sql = f'{stb_name},t0=t c0=f,c1=L"{self.getLongName(4093, "letters")}" 1626006833639000000ns'
674
        self._conn.schemaless_insert([input_sql], 0)
675

J
save  
jiajingbin 已提交
676
        input_sql = f'{stb_name},t0=t c0=f,c1=L"{self.getLongName(4094, "letters")}" 1626006833639000000ns'
677
        try:
678
            self._conn.schemaless_insert([input_sql], 0)
679
            raise Exception("should not reach here")
680
        except SchemalessError as err:
681
            tdSql.checkNotEqual(err.errno, 0)
J
jiajingbin 已提交
682 683

    def tagColIllegalValueCheckCase(self):
J
jiajingbin 已提交
684

J
jiajingbin 已提交
685 686 687
        """
            test illegal tag col value
        """
J
jiajingbin 已提交
688
        self.cleanStb()
J
jiajingbin 已提交
689 690 691
        # bool
        for i in ["TrUe", "tRue", "trUe", "truE", "FalsE", "fAlse", "faLse", "falSe", "falsE"]:
            input_sql1 = self.genFullTypeSql(t0=i)[0]
692
            try:
693
                self._conn.schemaless_insert([input_sql1], 0)
694
                raise Exception("should not reach here")
695
            except SchemalessError as err:
696
                tdSql.checkNotEqual(err.errno, 0)
J
jiajingbin 已提交
697
            input_sql2 = self.genFullTypeSql(c0=i)[0]
698
            try:
699
                self._conn.schemaless_insert([input_sql2], 0)
700
                raise Exception("should not reach here")
701
            except SchemalessError as err:
702
                tdSql.checkNotEqual(err.errno, 0)
J
jiajingbin 已提交
703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719

        # i8 i16 i32 i64 f32 f64
        for input_sql in [
                self.genFullTypeSql(t1="1s2i8")[0], 
                self.genFullTypeSql(t2="1s2i16")[0],
                self.genFullTypeSql(t3="1s2i32")[0],
                self.genFullTypeSql(t4="1s2i64")[0],
                self.genFullTypeSql(t5="11.1s45f32")[0],
                self.genFullTypeSql(t6="11.1s45f64")[0], 
                self.genFullTypeSql(c1="1s2i8")[0], 
                self.genFullTypeSql(c2="1s2i16")[0],
                self.genFullTypeSql(c3="1s2i32")[0],
                self.genFullTypeSql(c4="1s2i64")[0],
                self.genFullTypeSql(c5="11.1s45f32")[0],
                self.genFullTypeSql(c6="11.1s45f64")[0],
                self.genFullTypeSql(c9="1s1u64")[0]
            ]:
720
            try:
721
                self._conn.schemaless_insert([input_sql], 0)
722
                raise Exception("should not reach here")
723
            except SchemalessError as err:
724
                tdSql.checkNotEqual(err.errno, 0)
J
modify  
jiajingbin 已提交
725

726 727 728 729 730 731 732
        # check binary and nchar blank
        stb_name = self.getLongName(7, "letters")
        input_sql1 = f'{stb_name},t0=t c0=f,c1="abc aaa" 1626006833639000000ns'
        input_sql2 = f'{stb_name},t0=t c0=f,c1=L"abc aaa" 1626006833639000000ns'
        input_sql3 = f'{stb_name},t0=t,t1="abc aaa" c0=f 1626006833639000000ns'
        input_sql4 = f'{stb_name},t0=t,t1=L"abc aaa" c0=f 1626006833639000000ns'
        for input_sql in [input_sql1, input_sql2, input_sql3, input_sql4]:
733
            try:
734
                self._conn.schemaless_insert([input_sql], 0)
735
                raise Exception("should not reach here")
736
            except SchemalessError as err:
737
                tdSql.checkNotEqual(err.errno, 0)
738 739 740 741 742 743

        # check accepted binary and nchar symbols 
        # # * ~!@#$¥%^&*()-+={}|[]、「」:;
        for symbol in list('~!@#$¥%^&*()-+={}|[]、「」:;'):
            input_sql1 = f'{stb_name},t0=t c0=f,c1="abc{symbol}aaa" 1626006833639000000ns'
            input_sql2 = f'{stb_name},t0=t,t1="abc{symbol}aaa" c0=f 1626006833639000000ns'
744 745
            self._conn.schemaless_insert([input_sql1], 0)
            self._conn.schemaless_insert([input_sql2], 0)
746
        
J
jiajingbin 已提交
747 748 749 750 751

    def duplicateIdTagColInsertCheckCase(self):
        """
            check duplicate Id Tag Col
        """
J
jiajingbin 已提交
752
        self.cleanStb()
J
jiajingbin 已提交
753
        input_sql_id = self.genFullTypeSql(id_double_tag=True)[0]
754
        try:
755
            self._conn.schemaless_insert([input_sql_id], 0)
756
            raise Exception("should not reach here")
757
        except SchemalessError as err:
758
            tdSql.checkNotEqual(err.errno, 0)
J
jiajingbin 已提交
759 760 761

        input_sql = self.genFullTypeSql()[0]
        input_sql_tag = input_sql.replace("t5", "t6")
762
        try:
763
            self._conn.schemaless_insert([input_sql_tag], 0)
764
            raise Exception("should not reach here")
765
        except SchemalessError as err:
766
            tdSql.checkNotEqual(err.errno, 0)
J
jiajingbin 已提交
767 768 769

        input_sql = self.genFullTypeSql()[0]
        input_sql_col = input_sql.replace("c5", "c6")
770
        try:
771
            self._conn.schemaless_insert([input_sql_col], 0)
772
            raise Exception("should not reach here")
773
        except SchemalessError as err:
774
            tdSql.checkNotEqual(err.errno, 0)
J
jiajingbin 已提交
775 776 777

        input_sql = self.genFullTypeSql()[0]
        input_sql_col = input_sql.replace("c5", "C6")
778
        try:
779
            self._conn.schemaless_insert([input_sql_col], 0)
780
            raise Exception("should not reach here")
781
        except SchemalessError as err:
782
            tdSql.checkNotEqual(err.errno, 0)
J
jiajingbin 已提交
783 784 785 786 787 788

    ##### stb exist #####
    def noIdStbExistCheckCase(self):
        """
            case no id when stb exist
        """
J
jiajingbin 已提交
789
        self.cleanStb()
790
        input_sql, stb_name = self.genFullTypeSql(tb_name="sub_table_0123456", t0="f", c0="f")
J
jiajingbin 已提交
791
        self.resCmp(input_sql, stb_name)
J
jiajingbin 已提交
792
        input_sql, stb_name = self.genFullTypeSql(stb_name=stb_name, id_noexist_tag=True, t0="f", c0="f")
J
jiajingbin 已提交
793 794 795 796 797 798 799 800 801
        self.resCmp(input_sql, stb_name, condition='where tbname like "t_%"')
        tdSql.query(f"select * from {stb_name}")
        tdSql.checkRows(2)
        # TODO cover other case

    def duplicateInsertExistCheckCase(self):
        """
            check duplicate insert when stb exist
        """
J
jiajingbin 已提交
802
        self.cleanStb()
J
jiajingbin 已提交
803
        input_sql, stb_name = self.genFullTypeSql()
J
jiajingbin 已提交
804
        self.resCmp(input_sql, stb_name)
805
        self._conn.schemaless_insert([input_sql], 0)
J
jiajingbin 已提交
806 807 808 809 810 811
        self.resCmp(input_sql, stb_name)

    def tagColBinaryNcharLengthCheckCase(self):
        """
            check length increase
        """
J
jiajingbin 已提交
812
        self.cleanStb()
J
jiajingbin 已提交
813
        input_sql, stb_name = self.genFullTypeSql()
J
jiajingbin 已提交
814 815
        self.resCmp(input_sql, stb_name)
        tb_name = self.getLongName(5, "letters")
J
jiajingbin 已提交
816
        input_sql, stb_name = self.genFullTypeSql(stb_name=stb_name, tb_name=tb_name,t7="\"binaryTagValuebinaryTagValue\"", t8="L\"ncharTagValuencharTagValue\"", c7="\"binaryTagValuebinaryTagValue\"", c8="L\"ncharTagValuencharTagValue\"")
J
jiajingbin 已提交
817 818 819 820 821
        self.resCmp(input_sql, stb_name, condition=f'where tbname like "{tb_name}"')

    def tagColAddDupIDCheckCase(self):
        """
            check column and tag count add, stb and tb duplicate
J
jiajingbin 已提交
822 823 824 825 826
            * tag: alter table ...
            * col: when update==0 and ts is same, unchange
            * so this case tag&&value will be added, 
            * col is added without value when update==0
            * col is added with value when update==1
J
jiajingbin 已提交
827
        """
J
jiajingbin 已提交
828
        self.cleanStb()
J
jiajingbin 已提交
829
        tb_name = self.getLongName(7, "letters")
J
jiajingbin 已提交
830 831 832
        for db_update_tag in [0, 1]:
            if db_update_tag == 1 :
                self.createDb("test_update", db_update_tag=db_update_tag)
J
jiajingbin 已提交
833
            input_sql, stb_name = self.genFullTypeSql(tb_name=tb_name, t0="f", c0="f")
J
jiajingbin 已提交
834
            self.resCmp(input_sql, stb_name)
J
jiajingbin 已提交
835
            self.genFullTypeSql(stb_name=stb_name, tb_name=tb_name, t0="f", c0="f", ct_add_tag=True)
J
jiajingbin 已提交
836 837 838 839 840
            if db_update_tag == 1 :
                self.resCmp(input_sql, stb_name, condition=f'where tbname like "{tb_name}"')
            else:
                self.resCmp(input_sql, stb_name, condition=f'where tbname like "{tb_name}"', none_check_tag=True)

J
jiajingbin 已提交
841 842 843 844
    def tagColAddCheckCase(self):
        """
            check column and tag count add
        """
J
jiajingbin 已提交
845
        self.cleanStb()
J
jiajingbin 已提交
846 847
        tb_name = self.getLongName(7, "letters")
        input_sql, stb_name = self.genFullTypeSql(tb_name=tb_name, t0="f", c0="f")
J
jiajingbin 已提交
848
        self.resCmp(input_sql, stb_name)
J
jiajingbin 已提交
849 850
        tb_name_1 = self.getLongName(7, "letters")
        input_sql, stb_name = self.genFullTypeSql(stb_name=stb_name, tb_name=tb_name_1, t0="f", c0="f", ct_add_tag=True)
J
jiajingbin 已提交
851 852 853 854 855 856 857 858 859 860
        self.resCmp(input_sql, stb_name, condition=f'where tbname like "{tb_name_1}"')
        res_row_list = self.resHandle(f"select c10,c11,t10,t11 from {tb_name}", True)[0]
        tdSql.checkEqual(res_row_list[0], ['None', 'None', 'None', 'None'])
        self.resCmp(input_sql, stb_name, condition=f'where tbname like "{tb_name}"', none_check_tag=True)

    def tagMd5Check(self):
        """
            condition: stb not change
            insert two table, keep tag unchange, change col
        """
J
jiajingbin 已提交
861
        self.cleanStb()
J
jiajingbin 已提交
862
        input_sql, stb_name = self.genFullTypeSql(t0="f", c0="f", id_noexist_tag=True)
J
jiajingbin 已提交
863 864
        self.resCmp(input_sql, stb_name)
        tb_name1 = self.getNoIdTbName(stb_name)
J
jiajingbin 已提交
865
        input_sql, stb_name = self.genFullTypeSql(stb_name=stb_name, t0="f", c0="f", id_noexist_tag=True)
J
jiajingbin 已提交
866 867 868 869 870
        self.resCmp(input_sql, stb_name)
        tb_name2 = self.getNoIdTbName(stb_name)
        tdSql.query(f"select * from {stb_name}")
        tdSql.checkRows(1)
        tdSql.checkEqual(tb_name1, tb_name2)
J
jiajingbin 已提交
871
        input_sql, stb_name = self.genFullTypeSql(stb_name=stb_name, t0="f", c0="f", id_noexist_tag=True, ct_add_tag=True)
872
        self._conn.schemaless_insert([input_sql], 0)
J
jiajingbin 已提交
873 874 875 876 877
        tb_name3 = self.getNoIdTbName(stb_name)
        tdSql.query(f"select * from {stb_name}")
        tdSql.checkRows(2)
        tdSql.checkNotEqual(tb_name1, tb_name3)

J
modify  
jiajingbin 已提交
878
    # * tag binary max is 16384, col+ts binary max  49151
J
jiajingbin 已提交
879
    def tagColBinaryMaxLengthCheckCase(self):
J
save  
jiajingbin 已提交
880
        """
881
            every binary and nchar must be length+2
J
save  
jiajingbin 已提交
882
        """
J
jiajingbin 已提交
883
        self.cleanStb()
J
jiajingbin 已提交
884 885 886
        stb_name = self.getLongName(7, "letters")
        tb_name = f'{stb_name}_1'
        input_sql = f'{stb_name},id="{tb_name}",t0=t c0=f 1626006833639000000ns'
887
        self._conn.schemaless_insert([input_sql], 0)
J
save  
jiajingbin 已提交
888 889 890

        # * every binary and nchar must be length+2, so here is two tag, max length could not larger than 16384-2*2
        input_sql = f'{stb_name},t0=t,t1="{self.getLongName(16374, "letters")}",t2="{self.getLongName(5, "letters")}" c0=f 1626006833639000000ns'
891
        self._conn.schemaless_insert([input_sql], 0)
892
        
J
modify  
jiajingbin 已提交
893 894
        tdSql.query(f"select * from {stb_name}")
        tdSql.checkRows(2)
J
save  
jiajingbin 已提交
895
        input_sql = f'{stb_name},t0=t,t1="{self.getLongName(16374, "letters")}",t2="{self.getLongName(6, "letters")}" c0=f 1626006833639000000ns'
896
        try:
897
            self._conn.schemaless_insert([input_sql], 0)
898
            raise Exception("should not reach here")
899
        except SchemalessError:
900
            pass
J
modify  
jiajingbin 已提交
901 902
        tdSql.query(f"select * from {stb_name}")
        tdSql.checkRows(2)
J
save  
jiajingbin 已提交
903

J
save  
jiajingbin 已提交
904
        # # * check col,col+ts max in describe ---> 16143
J
save  
jiajingbin 已提交
905
        input_sql = f'{stb_name},t0=t c0=f,c1="{self.getLongName(16374, "letters")}",c2="{self.getLongName(16374, "letters")}",c3="{self.getLongName(16374, "letters")}",c4="{self.getLongName(12, "letters")}" 1626006833639000000ns'
906
        self._conn.schemaless_insert([input_sql], 0)
907

J
modify  
jiajingbin 已提交
908 909 910
        tdSql.query(f"select * from {stb_name}")
        tdSql.checkRows(3)
        input_sql = f'{stb_name},t0=t c0=f,c1="{self.getLongName(16374, "letters")}",c2="{self.getLongName(16374, "letters")}",c3="{self.getLongName(16374, "letters")}",c4="{self.getLongName(13, "letters")}" 1626006833639000000ns'
911
        try:
912
            self._conn.schemaless_insert([input_sql], 0)
913
            raise Exception("should not reach here")
914
        except SchemalessError as err:
915
            tdSql.checkNotEqual(err.errno, 0)
J
modify  
jiajingbin 已提交
916 917
        tdSql.query(f"select * from {stb_name}")
        tdSql.checkRows(3)
J
jiajingbin 已提交
918
    
J
modify  
jiajingbin 已提交
919
    # * tag nchar max is 16374/4, col+ts nchar max  49151
J
jiajingbin 已提交
920
    def tagColNcharMaxLengthCheckCase(self):
J
jiajingbin 已提交
921
        """
922
            check nchar length limit
J
jiajingbin 已提交
923 924
        """
        self.cleanStb()
J
jiajingbin 已提交
925 926 927
        stb_name = self.getLongName(7, "letters")
        tb_name = f'{stb_name}_1'
        input_sql = f'{stb_name},id="{tb_name}",t0=t c0=f 1626006833639000000ns'
928
        code = self._conn.schemaless_insert([input_sql], 0)
J
save  
jiajingbin 已提交
929 930 931

        # * legal nchar could not be larger than 16374/4
        input_sql = f'{stb_name},t0=t,t1=L"{self.getLongName(4093, "letters")}",t2=L"{self.getLongName(1, "letters")}" c0=f 1626006833639000000ns'
932
        self._conn.schemaless_insert([input_sql], 0)
J
modify  
jiajingbin 已提交
933 934
        tdSql.query(f"select * from {stb_name}")
        tdSql.checkRows(2)
J
save  
jiajingbin 已提交
935
        input_sql = f'{stb_name},t0=t,t1=L"{self.getLongName(4093, "letters")}",t2=L"{self.getLongName(2, "letters")}" c0=f 1626006833639000000ns'
936
        try:
937
            self._conn.schemaless_insert([input_sql], 0)
938
            raise Exception("should not reach here")
939
        except SchemalessError as err:
940
            tdSql.checkNotEqual(err.errno, 0)
J
modify  
jiajingbin 已提交
941 942
        tdSql.query(f"select * from {stb_name}")
        tdSql.checkRows(2)
J
jiajingbin 已提交
943

944
        input_sql = f'{stb_name},t0=t c0=f,c1=L"{self.getLongName(4093, "letters")}",c2=L"{self.getLongName(4093, "letters")}",c3=L"{self.getLongName(4093, "letters")}",c4=L"{self.getLongName(4, "letters")}" 1626006833639000000ns'
945
        self._conn.schemaless_insert([input_sql], 0)
946 947 948
        tdSql.query(f"select * from {stb_name}")
        tdSql.checkRows(3)
        input_sql = f'{stb_name},t0=t c0=f,c1=L"{self.getLongName(4093, "letters")}",c2=L"{self.getLongName(4093, "letters")}",c3=L"{self.getLongName(4093, "letters")}",c4=L"{self.getLongName(5, "letters")}" 1626006833639000000ns'
949
        try:
950
            self._conn.schemaless_insert([input_sql], 0)
951
            raise Exception("should not reach here")
952
        except SchemalessError as err:
953
            tdSql.checkNotEqual(err.errno, 0)
954 955
        tdSql.query(f"select * from {stb_name}")
        tdSql.checkRows(3)
J
jiajingbin 已提交
956 957 958 959 960

    def batchInsertCheckCase(self):
        """
            test batch insert
        """
J
jiajingbin 已提交
961
        self.cleanStb()
J
jiajingbin 已提交
962 963 964 965 966 967 968 969 970 971 972 973
        stb_name = self.getLongName(8, "letters")
        tdSql.execute(f'create stable {stb_name}(ts timestamp, f int) tags(t1 bigint)')
        lines = ["st123456,t1=3i64,t2=4f64,t3=\"t3\" c1=3i64,c3=L\"passit\",c2=false,c4=4f64 1626006833639000000ns",
                "st123456,t1=4i64,t3=\"t4\",t2=5f64,t4=5f64 c1=3i64,c3=L\"passitagin\",c2=true,c4=5f64,c5=5f64 1626006833640000000ns",
                f"{stb_name},t2=5f64,t3=L\"ste\" c1=true,c2=4i64,c3=\"iam\" 1626056811823316532ns",
                "stf567890,t1=4i64,t3=\"t4\",t2=5f64,t4=5f64 c1=3i64,c3=L\"passitagin\",c2=true,c4=5f64,c5=5f64,c6=7u64 1626006933640000000ns",
                "st123456,t1=4i64,t2=5f64,t3=\"t4\" c1=3i64,c3=L\"passitagain\",c2=true,c4=5f64 1626006833642000000ns",
                f"{stb_name},t2=5f64,t3=L\"ste2\" c3=\"iamszhou\",c4=false 1626056811843316532ns",
                f"{stb_name},t2=5f64,t3=L\"ste2\" c3=\"iamszhou\",c4=false,c5=32i8,c6=64i16,c7=32i32,c8=88.88f32 1626056812843316532ns",
                "st123456,t1=4i64,t3=\"t4\",t2=5f64,t4=5f64 c1=3i64,c3=L\"passitagin\",c2=true,c4=5f64,c5=5f64,c6=7u64 1626006933640000000ns",
                "st123456,t1=4i64,t3=\"t4\",t2=5f64,t4=5f64 c1=3i64,c3=L\"passitagin_stf\",c2=false,c5=5f64,c6=7u64 1626006933641000000ns"
                ]
974
        self._conn.schemaless_insert(lines, 0)
J
jiajingbin 已提交
975
    
J
save  
jiajingbin 已提交
976 977 978 979 980 981 982 983 984 985 986
    def multiInsertCheckCase(self, count):
            """
                test multi insert
            """
            self.cleanStb()
            sql_list = []
            stb_name = self.getLongName(8, "letters")
            tdSql.execute(f'create stable {stb_name}(ts timestamp, f int) tags(t1 bigint)')
            for i in range(count):
                input_sql = self.genFullTypeSql(stb_name=stb_name, t7=f'"{self.getLongName(8, "letters")}"', c7=f'"{self.getLongName(8, "letters")}"', id_noexist_tag=True)[0]
                sql_list.append(input_sql)
987
            self._conn.schemaless_insert(sql_list, 0)
J
save  
jiajingbin 已提交
988

J
jiajingbin 已提交
989 990 991 992
    def batchErrorInsertCheckCase(self):
        """
            test batch error insert
        """
J
jiajingbin 已提交
993
        self.cleanStb()
J
jiajingbin 已提交
994 995
        stb_name = self.getLongName(8, "letters")
        lines = ["st123456,t1=3i64,t2=4f64,t3=\"t3\" c1=3i64,c3=L\"passit\",c2=false,c4=4f64 1626006833639000000ns",
J
save  
jiajingbin 已提交
996
                f"{stb_name},t2=5f64,t3=L\"ste\" c1=tRue,c2=4i64,c3=\"iam\" 1626056811823316532ns"]
997
        try:
998
            self._conn.schemaless_insert(lines, 0)
999
            raise Exception("should not reach here")
1000
        except SchemalessError as err:
1001
            tdSql.checkNotEqual(err.errno, 0)
J
jiajingbin 已提交
1002

J
jiajingbin 已提交
1003
    def genSqlList(self, count=5, stb_name="", tb_name=""):
J
save  
jiajingbin 已提交
1004 1005 1006
        """
            stb --> supertable
            tb  --> table
J
save  
jiajingbin 已提交
1007 1008 1009
            ts  --> timestamp, same default
            col --> column, same default
            tag --> tag, same default
J
save  
jiajingbin 已提交
1010 1011
            d   --> different
            s   --> same
J
save  
jiajingbin 已提交
1012 1013
            a   --> add
            m   --> minus
J
save  
jiajingbin 已提交
1014 1015
        """
        d_stb_d_tb_list = list()
J
save  
jiajingbin 已提交
1016 1017
        s_stb_s_tb_list = list()
        s_stb_s_tb_a_col_a_tag_list = list()
J
save  
jiajingbin 已提交
1018
        s_stb_s_tb_m_col_m_tag_list = list()
J
jiajingbin 已提交
1019 1020 1021 1022
        s_stb_d_tb_list = list()
        s_stb_d_tb_a_col_m_tag_list = list()
        s_stb_d_tb_a_tag_m_col_list = list()
        s_stb_s_tb_d_ts_list = list()
J
modify  
jiajingbin 已提交
1023 1024 1025 1026 1027
        s_stb_s_tb_d_ts_a_col_m_tag_list = list()
        s_stb_s_tb_d_ts_a_tag_m_col_list = list()
        s_stb_d_tb_d_ts_list = list()
        s_stb_d_tb_d_ts_a_col_m_tag_list = list()
        s_stb_d_tb_d_ts_a_tag_m_col_list = list()
J
save  
jiajingbin 已提交
1028 1029
        for i in range(count):
            d_stb_d_tb_list.append(self.genFullTypeSql(t0="f", c0="f"))
J
jiajingbin 已提交
1030 1031 1032 1033 1034 1035 1036
            s_stb_s_tb_list.append(self.genFullTypeSql(stb_name=stb_name, tb_name=tb_name, t7=f'"{self.getLongName(8, "letters")}"', c7=f'"{self.getLongName(8, "letters")}"'))
            s_stb_s_tb_a_col_a_tag_list.append(self.genFullTypeSql(stb_name=stb_name, tb_name=tb_name, t7=f'"{self.getLongName(8, "letters")}"', c7=f'"{self.getLongName(8, "letters")}"', ct_add_tag=True))
            s_stb_s_tb_m_col_m_tag_list.append(self.genFullTypeSql(stb_name=stb_name, tb_name=tb_name, t7=f'"{self.getLongName(8, "letters")}"', c7=f'"{self.getLongName(8, "letters")}"', ct_min_tag=True))
            s_stb_d_tb_list.append(self.genFullTypeSql(stb_name=stb_name, t7=f'"{self.getLongName(8, "letters")}"', c7=f'"{self.getLongName(8, "letters")}"', id_noexist_tag=True))
            s_stb_d_tb_a_col_m_tag_list.append(self.genFullTypeSql(stb_name=stb_name, t7=f'"{self.getLongName(8, "letters")}"', c7=f'"{self.getLongName(8, "letters")}"', id_noexist_tag=True, ct_am_tag=True))
            s_stb_d_tb_a_tag_m_col_list.append(self.genFullTypeSql(stb_name=stb_name, t7=f'"{self.getLongName(8, "letters")}"', c7=f'"{self.getLongName(8, "letters")}"', id_noexist_tag=True, ct_ma_tag=True))
            s_stb_s_tb_d_ts_list.append(self.genFullTypeSql(stb_name=stb_name, tb_name=tb_name, t7=f'"{self.getLongName(8, "letters")}"', c7=f'"{self.getLongName(8, "letters")}"', ts=0))
J
modify  
jiajingbin 已提交
1037 1038 1039 1040 1041
            s_stb_s_tb_d_ts_a_col_m_tag_list.append(self.genFullTypeSql(stb_name=stb_name, tb_name=tb_name, t7=f'"{self.getLongName(8, "letters")}"', c7=f'"{self.getLongName(8, "letters")}"', ts=0, ct_am_tag=True))
            s_stb_s_tb_d_ts_a_tag_m_col_list.append(self.genFullTypeSql(stb_name=stb_name, tb_name=tb_name, t7=f'"{self.getLongName(8, "letters")}"', c7=f'"{self.getLongName(8, "letters")}"', ts=0, ct_ma_tag=True))
            s_stb_d_tb_d_ts_list.append(self.genFullTypeSql(stb_name=stb_name, t7=f'"{self.getLongName(8, "letters")}"', c7=f'"{self.getLongName(8, "letters")}"', id_noexist_tag=True, ts=0))
            s_stb_d_tb_d_ts_a_col_m_tag_list.append(self.genFullTypeSql(stb_name=stb_name, t7=f'"{self.getLongName(8, "letters")}"', c7=f'"{self.getLongName(8, "letters")}"', id_noexist_tag=True, ts=0, ct_am_tag=True))
            s_stb_d_tb_d_ts_a_tag_m_col_list.append(self.genFullTypeSql(stb_name=stb_name, t7=f'"{self.getLongName(8, "letters")}"', c7=f'"{self.getLongName(8, "letters")}"', id_noexist_tag=True, ts=0, ct_ma_tag=True))
J
jiajingbin 已提交
1042

J
modify  
jiajingbin 已提交
1043 1044 1045 1046
        return d_stb_d_tb_list, s_stb_s_tb_list, s_stb_s_tb_a_col_a_tag_list, s_stb_s_tb_m_col_m_tag_list, \
            s_stb_d_tb_list, s_stb_d_tb_a_col_m_tag_list, s_stb_d_tb_a_tag_m_col_list, s_stb_s_tb_d_ts_list, \
            s_stb_s_tb_d_ts_a_col_m_tag_list, s_stb_s_tb_d_ts_a_tag_m_col_list, s_stb_d_tb_d_ts_list, \
            s_stb_d_tb_d_ts_a_col_m_tag_list, s_stb_d_tb_d_ts_a_tag_m_col_list
J
jiajingbin 已提交
1047

J
save  
jiajingbin 已提交
1048 1049 1050 1051

    def genMultiThreadSeq(self, sql_list):
        tlist = list()
        for insert_sql in sql_list:
1052
            t = threading.Thread(target=self._conn.schemaless_insert,args=([insert_sql[0]], 0))
J
save  
jiajingbin 已提交
1053 1054 1055 1056 1057 1058 1059
            tlist.append(t)
        return tlist

    def multiThreadRun(self, tlist):
        for t in tlist:
            t.start()
        for t in tlist:
J
jiajingbin 已提交
1060
            t.join()
J
save  
jiajingbin 已提交
1061

J
save  
jiajingbin 已提交
1062
    def stbInsertMultiThreadCheckCase(self):
J
jiajingbin 已提交
1063 1064 1065
        """
            thread input different stb
        """
J
jiajingbin 已提交
1066
        self.cleanStb()
J
jiajingbin 已提交
1067 1068
        input_sql = self.genSqlList()[0]
        self.multiThreadRun(self.genMultiThreadSeq(input_sql))
J
jiajingbin 已提交
1069 1070 1071 1072 1073 1074 1075
        tdSql.query(f"show tables;")
        tdSql.checkRows(5)
    
    def sStbStbDdataInsertMultiThreadCheckCase(self):
        """
            thread input same stb tb, different data, result keep first data
        """
J
jiajingbin 已提交
1076
        self.cleanStb()
J
jiajingbin 已提交
1077 1078
        tb_name = self.getLongName(7, "letters")
        input_sql, stb_name = self.genFullTypeSql(tb_name=tb_name)
J
jiajingbin 已提交
1079 1080 1081 1082 1083 1084 1085
        self.resCmp(input_sql, stb_name)
        s_stb_s_tb_list = self.genSqlList(stb_name=stb_name, tb_name=tb_name)[1]
        self.multiThreadRun(self.genMultiThreadSeq(s_stb_s_tb_list))
        tdSql.query(f"show tables;")
        tdSql.checkRows(1)
        expected_tb_name = self.getNoIdTbName(stb_name)[0]
        tdSql.checkEqual(tb_name, expected_tb_name)
J
jiajingbin 已提交
1086 1087
        tdSql.query(f"select * from {stb_name};")
        tdSql.checkRows(1)
J
jiajingbin 已提交
1088 1089 1090 1091 1092

    def sStbStbDdataAtcInsertMultiThreadCheckCase(self):
        """
            thread input same stb tb, different data, add columes and tags,  result keep first data
        """
J
jiajingbin 已提交
1093
        self.cleanStb()
J
jiajingbin 已提交
1094 1095
        tb_name = self.getLongName(7, "letters")
        input_sql, stb_name = self.genFullTypeSql(tb_name=tb_name)
J
jiajingbin 已提交
1096 1097 1098 1099 1100 1101 1102
        self.resCmp(input_sql, stb_name)
        s_stb_s_tb_a_col_a_tag_list = self.genSqlList(stb_name=stb_name, tb_name=tb_name)[2]
        self.multiThreadRun(self.genMultiThreadSeq(s_stb_s_tb_a_col_a_tag_list))
        tdSql.query(f"show tables;")
        tdSql.checkRows(1)
        expected_tb_name = self.getNoIdTbName(stb_name)[0]
        tdSql.checkEqual(tb_name, expected_tb_name)
J
jiajingbin 已提交
1103 1104
        tdSql.query(f"select * from {stb_name};")
        tdSql.checkRows(1)
J
jiajingbin 已提交
1105 1106 1107
    
    def sStbStbDdataMtcInsertMultiThreadCheckCase(self):
        """
J
jiajingbin 已提交
1108
            thread input same stb tb, different data, minus columes and tags,  result keep first data
J
jiajingbin 已提交
1109 1110
        """
        self.cleanStb()
J
jiajingbin 已提交
1111 1112
        tb_name = self.getLongName(7, "letters")
        input_sql, stb_name = self.genFullTypeSql(tb_name=tb_name)
J
jiajingbin 已提交
1113 1114 1115 1116 1117 1118 1119
        self.resCmp(input_sql, stb_name)
        s_stb_s_tb_m_col_m_tag_list = self.genSqlList(stb_name=stb_name, tb_name=tb_name)[3]
        self.multiThreadRun(self.genMultiThreadSeq(s_stb_s_tb_m_col_m_tag_list))
        tdSql.query(f"show tables;")
        tdSql.checkRows(1)
        expected_tb_name = self.getNoIdTbName(stb_name)[0]
        tdSql.checkEqual(tb_name, expected_tb_name)
J
jiajingbin 已提交
1120 1121 1122 1123 1124 1125 1126 1127
        tdSql.query(f"select * from {stb_name};")
        tdSql.checkRows(1)

    def sStbDtbDdataInsertMultiThreadCheckCase(self):
        """
            thread input same stb, different tb, different data
        """
        self.cleanStb()
J
jiajingbin 已提交
1128
        input_sql, stb_name = self.genFullTypeSql()
J
jiajingbin 已提交
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142
        self.resCmp(input_sql, stb_name)
        s_stb_d_tb_list = self.genSqlList(stb_name=stb_name)[4]
        self.multiThreadRun(self.genMultiThreadSeq(s_stb_d_tb_list))
        tdSql.query(f"show tables;")
        tdSql.checkRows(6)

    def sStbDtbDdataAcMtInsertMultiThreadCheckCase(self):
        """
            #! concurrency conflict
        """
        """
            thread input same stb, different tb, different data, add col, mul tag
        """
        self.cleanStb()
J
jiajingbin 已提交
1143
        input_sql, stb_name = self.genFullTypeSql()
J
jiajingbin 已提交
1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157
        self.resCmp(input_sql, stb_name)
        s_stb_d_tb_a_col_m_tag_list = self.genSqlList(stb_name=stb_name)[5]
        self.multiThreadRun(self.genMultiThreadSeq(s_stb_d_tb_a_col_m_tag_list))
        tdSql.query(f"show tables;")
        tdSql.checkRows(6)

    def sStbDtbDdataAtMcInsertMultiThreadCheckCase(self):
        """
            #! concurrency conflict
        """
        """
            thread input same stb, different tb, different data, add tag, mul col
        """
        self.cleanStb()
J
jiajingbin 已提交
1158
        input_sql, stb_name = self.genFullTypeSql()
J
jiajingbin 已提交
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169
        self.resCmp(input_sql, stb_name)
        s_stb_d_tb_a_tag_m_col_list = self.genSqlList(stb_name=stb_name)[6]
        self.multiThreadRun(self.genMultiThreadSeq(s_stb_d_tb_a_tag_m_col_list))
        tdSql.query(f"show tables;")
        tdSql.checkRows(6)

    def sStbStbDdataDtsInsertMultiThreadCheckCase(self):
        """
            thread input same stb tb, different ts
        """
        self.cleanStb()
J
jiajingbin 已提交
1170 1171
        tb_name = self.getLongName(7, "letters")
        input_sql, stb_name = self.genFullTypeSql(tb_name=tb_name)
J
jiajingbin 已提交
1172 1173 1174 1175 1176 1177 1178 1179
        self.resCmp(input_sql, stb_name)
        s_stb_s_tb_d_ts_list = self.genSqlList(stb_name=stb_name, tb_name=tb_name)[7]
        self.multiThreadRun(self.genMultiThreadSeq(s_stb_s_tb_d_ts_list))
        tdSql.query(f"show tables;")
        tdSql.checkRows(1)
        tdSql.query(f"select * from {stb_name}")
        tdSql.checkRows(6)

J
modify  
jiajingbin 已提交
1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230
    def sStbStbDdataDtsAcMtInsertMultiThreadCheckCase(self):
        """
            thread input same stb tb, different ts, add col, mul tag
        """
        self.cleanStb()
        tb_name = self.getLongName(7, "letters")
        input_sql, stb_name = self.genFullTypeSql(tb_name=tb_name)
        self.resCmp(input_sql, stb_name)
        s_stb_s_tb_d_ts_a_col_m_tag_list = self.genSqlList(stb_name=stb_name, tb_name=tb_name)[8]
        self.multiThreadRun(self.genMultiThreadSeq(s_stb_s_tb_d_ts_a_col_m_tag_list))
        tdSql.query(f"show tables;")
        tdSql.checkRows(1)
        tdSql.query(f"select * from {stb_name}")
        tdSql.checkRows(6)
        tdSql.query(f"select * from {stb_name} where t8 is not NULL")
        tdSql.checkRows(6)
        tdSql.query(f"select * from {tb_name} where c11 is not NULL;")
        tdSql.checkRows(5)

    def sStbStbDdataDtsAtMcInsertMultiThreadCheckCase(self):
        """
            thread input same stb tb, different ts, add tag, mul col
        """
        self.cleanStb()
        tb_name = self.getLongName(7, "letters")
        input_sql, stb_name = self.genFullTypeSql(tb_name=tb_name)
        self.resCmp(input_sql, stb_name)
        s_stb_s_tb_d_ts_a_tag_m_col_list = self.genSqlList(stb_name=stb_name, tb_name=tb_name)[9]
        self.multiThreadRun(self.genMultiThreadSeq(s_stb_s_tb_d_ts_a_tag_m_col_list))
        tdSql.query(f"show tables;")
        tdSql.checkRows(1)
        tdSql.query(f"select * from {stb_name}")
        tdSql.checkRows(6)
        for c in ["c7", "c8", "c9"]:
            tdSql.query(f"select * from {stb_name} where {c} is NULL")
            tdSql.checkRows(5)        
        for t in ["t10", "t11"]:
            tdSql.query(f"select * from {stb_name} where {t} is not NULL;")
            tdSql.checkRows(6)

    def sStbDtbDdataDtsInsertMultiThreadCheckCase(self):
        """
            thread input same stb, different tb, data, ts
        """
        self.cleanStb()
        input_sql, stb_name = self.genFullTypeSql()
        self.resCmp(input_sql, stb_name)
        s_stb_d_tb_d_ts_list = self.genSqlList(stb_name=stb_name)[10]
        self.multiThreadRun(self.genMultiThreadSeq(s_stb_d_tb_d_ts_list))
        tdSql.query(f"show tables;")
        tdSql.checkRows(6)
J
jiajingbin 已提交
1231

J
modify  
jiajingbin 已提交
1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247
    def sStbDtbDdataDtsAcMtInsertMultiThreadCheckCase(self):
        """
            # ! concurrency conflict
        """
        """
            thread input same stb, different tb, data, ts, add col, mul tag
        """
        self.cleanStb()
        input_sql, stb_name = self.genFullTypeSql()
        self.resCmp(input_sql, stb_name)
        s_stb_d_tb_d_ts_a_col_m_tag_list = self.genSqlList(stb_name=stb_name)[11]
        self.multiThreadRun(self.genMultiThreadSeq(s_stb_d_tb_d_ts_a_col_m_tag_list))
        tdSql.query(f"show tables;")
        tdSql.checkRows(6)

    def test(self):
1248 1249
        input_sql1 = "rfasta,id=\"rfasta_1\",t0=true,t1=127i8,t2=32767i16,t3=2147483647i32,t4=9223372036854775807i64,t5=11.12345f32,t6=22.123456789f64,t7=\"ddzhiksj\",t8=L\"ncharTagValue\" c0=True,c1=127i8,c2=32767i16,c3=2147483647i32,c4=9223372036854775807i64,c5=11.12345f32,c6=22.123456789f64,c7=\"bnhwlgvj\",c8=L\"ncharTagValue\",c9=7u64 1626006933640000000ns"
        input_sql2 = "rfasta,id=\"rfasta_1\",t0=true,t1=127i8,t2=32767i16,t3=2147483647i32,t4=9223372036854775807i64,t5=11.12345f32,t6=22.123456789f64 c0=True,c1=127i8,c2=32767i16,c3=2147483647i32,c4=9223372036854775807i64,c5=11.12345f32,c6=22.123456789f64 1626006933640000000ns"
1250
        try:
1251 1252 1253
            self._conn.schemaless_insert([input_sql1], 0)
            self._conn.schemaless_insert([input_sql2], 0)
        except SchemalessError as err:
1254
            print(err.errno)
1255
        # self._conn.schemaless_insert([input_sql2], 0)
J
modify  
jiajingbin 已提交
1256 1257
        # input_sql3 = f'abcd,id="cc¥Ec",t0=True,t1=127i8,t2=32767i16,t3=2147483647i32,t4=9223372036854775807i64,t5=11.12345f32,t6=22.123456789f64,t7="ndsfdrum",t8=L"ncharTagValue" c0=f,c1=127i8,c2=32767i16,c3=2147483647i32,c4=9223372036854775807i64,c5=11.12345f32,c6=22.123456789f64,c7="igwoehkm",c8=L"ncharColValue",c9=7u64 0'
        # print(input_sql3)
J
save  
jiajingbin 已提交
1258
        # input_sql4 = 'hmemeb,id="kilrcrldgf",t0=F,t1=127i8,t2=32767i16,t3=2147483647i32,t4=9223372036854775807i64,t5=11.12345f32,t6=22.123456789f64,t7="fysodjql",t8=L"ncharTagValue" c0=True,c1=127i8,c2=32767i16,c3=2147483647i32,c4=9223372036854775807i64,c5=11.12345f32,c6=22.123456789f64,c7="waszbfvc",c8=L"ncharColValue",c9=7u64 0'
1259
        # code = self._conn.schemaless_insert([input_sql3], 0)
J
modify  
jiajingbin 已提交
1260
        # print(code)
1261
        # self._conn.schemaless_insert([input_sql4], 0)
J
save  
jiajingbin 已提交
1262

J
jiajingbin 已提交
1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283
    def runAll(self):
        self.initCheckCase()
        self.boolTypeCheckCase()
        self.symbolsCheckCase()
        self.tsCheckCase()
        self.idSeqCheckCase()
        self.idUpperCheckCase()
        self.noIdCheckCase()
        self.maxColTagCheckCase()
        self.idIllegalNameCheckCase()
        self.idStartWithNumCheckCase()
        self.nowTsCheckCase()
        self.dateFormatTsCheckCase()
        self.illegalTsCheckCase()
        self.tagValueLengthCheckCase()
        self.colValueLengthCheckCase()
        self.tagColIllegalValueCheckCase()
        self.duplicateIdTagColInsertCheckCase()
        self.noIdStbExistCheckCase()
        self.duplicateInsertExistCheckCase()
        self.tagColBinaryNcharLengthCheckCase()
J
jiajingbin 已提交
1284
        self.tagColAddDupIDCheckCase()
J
jiajingbin 已提交
1285 1286 1287
        self.tagColAddCheckCase()
        self.tagMd5Check()
        self.tagColBinaryMaxLengthCheckCase()
1288
        # self.tagColNcharMaxLengthCheckCase()
J
jiajingbin 已提交
1289
        self.batchInsertCheckCase()
1290
        self.multiInsertCheckCase(1000)
J
jiajingbin 已提交
1291
        self.batchErrorInsertCheckCase()
J
modify  
jiajingbin 已提交
1292
        # MultiThreads
J
jiajingbin 已提交
1293 1294 1295 1296 1297
        self.stbInsertMultiThreadCheckCase()
        self.sStbStbDdataInsertMultiThreadCheckCase()
        self.sStbStbDdataAtcInsertMultiThreadCheckCase()
        self.sStbStbDdataMtcInsertMultiThreadCheckCase()
        self.sStbDtbDdataInsertMultiThreadCheckCase()
J
jiajingbin 已提交
1298

J
modify  
jiajingbin 已提交
1299
        # # ! concurrency conflict
J
modify  
jiajingbin 已提交
1300 1301
        # self.sStbDtbDdataAcMtInsertMultiThreadCheckCase()
        # self.sStbDtbDdataAtMcInsertMultiThreadCheckCase()
J
modify  
jiajingbin 已提交
1302

J
jiajingbin 已提交
1303
        self.sStbStbDdataDtsInsertMultiThreadCheckCase()
J
jiajingbin 已提交
1304

J
modify  
jiajingbin 已提交
1305 1306 1307 1308
        # # ! concurrency conflict
        # self.sStbStbDdataDtsAcMtInsertMultiThreadCheckCase()
        # self.sStbStbDdataDtsAtMcInsertMultiThreadCheckCase()

J
modify  
jiajingbin 已提交
1309 1310 1311 1312 1313 1314 1315
        self.sStbDtbDdataDtsInsertMultiThreadCheckCase()

        # ! concurrency conflict
        # self.sStbDtbDdataDtsAcMtInsertMultiThreadCheckCase()



J
jiajingbin 已提交
1316 1317 1318
    def run(self):
        print("running {}".format(__file__))
        self.createDb()
1319 1320 1321 1322 1323
        try:
            self.runAll()
        except Exception as err:
            print(''.join(traceback.format_exception(None, err, err.__traceback__)))
            raise err
1324 1325
        # self.tagColIllegalValueCheckCase()
        # self.test()
J
jiajingbin 已提交
1326 1327 1328 1329 1330

    def stop(self):
        tdSql.close()
        tdLog.success("%s successfully executed" % __file__)

1331
tdCases.addWindows(__file__, TDTestCase())
J
jiajingbin 已提交
1332
tdCases.addLinux(__file__, TDTestCase())