tablename-boundary.py 1.4 KB
Newer Older
1 2 3 4 5
# -*- coding: utf-8 -*-

import sys
import string
import random
S
Shuduo Sang 已提交
6
import subprocess
7 8 9 10 11 12 13 14 15 16 17 18 19
from util.log import *
from util.cases import *
from util.sql import *


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

    def run(self):
        tdSql.prepare()

S
Shuduo Sang 已提交
20
        getTableNameLen = "grep -w '#define TSDB_TABLE_NAME_LEN' ../../src/inc/taosdef.h|awk '{print $3}'"
S
Shuduo Sang 已提交
21 22 23
        tableNameMaxLen = int(
            subprocess.check_output(
                getTableNameLen, shell=True))
S
Shuduo Sang 已提交
24
        tdLog.notice("table name max length is %d" % tableNameMaxLen)
S
Shuduo Sang 已提交
25
        chars = string.ascii_uppercase + string.ascii_lowercase
S
Shuduo Sang 已提交
26
        tb_name = ''.join(random.choices(chars, k=tableNameMaxLen))
27 28
        tdLog.info('tb_name length %d' % len(tb_name))
        tdLog.info('create table %s (ts timestamp, value int)' % tb_name)
S
Shuduo Sang 已提交
29 30 31
        tdSql.error(
            'create table %s (ts timestamp, speed binary(4089))' %
            tb_name)
32 33 34 35

        tb_name = ''.join(random.choices(chars, k=191))
        tdLog.info('tb_name length %d' % len(tb_name))
        tdLog.info('create table %s (ts timestamp, value int)' % tb_name)
S
Shuduo Sang 已提交
36 37 38
        tdSql.execute(
            'create table %s (ts timestamp, speed binary(4089))' %
            tb_name)
39 40 41 42 43 44 45 46

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


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