taosdumpTestInspect.py 6.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
###################################################################
#           Copyright (c) 2016 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 -*-

import os
from util.log import *
from util.cases import *
from util.sql import *
from util.dnodes import *


class TDTestCase:
    def caseDescription(self):
23
        """
24
        case1<sdsang>: [TD-14544] taosdump data inspect
25
        """
26 27 28 29 30 31 32 33 34 35
        return

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

    def getPath(self, tool="taosdump"):
        selfPath = os.path.dirname(os.path.realpath(__file__))

36 37 38 39 40 41
        if "community" in selfPath:
            projPath = selfPath[: selfPath.find("community")]
        elif "src" in selfPath:
            projPath = selfPath[: selfPath.find("src")]
        elif "/tools/" in selfPath:
            projPath = selfPath[: selfPath.find("/tools/")]
42
        else:
43
            tdLog.exit("path: %s is not supported" % selfPath)
44 45 46

        paths = []
        for root, dirs, files in os.walk(projPath):
47
            if (tool) in files:
48
                rootRealPath = os.path.dirname(os.path.realpath(root))
49
                if "packaging" not in rootRealPath:
50 51
                    paths.append(os.path.join(root, tool))
                    break
52
        if len(paths) == 0:
53 54 55 56 57 58 59
            return ""
        return paths[0]

    def run(self):
        tdSql.prepare()

        tdSql.execute("drop database if exists db")
60
        tdSql.execute("create database db  keep 3649 ")
61 62 63

        tdSql.execute("use db")
        tdSql.execute(
64 65
            "create table st(ts timestamp, c1 INT, c2 BOOL, c3 TINYINT, c4 SMALLINT, c5 BIGINT, c6 FLOAT, c7 DOUBLE, c8 TIMESTAMP, c9 BINARY(10), c10 NCHAR(10), c11 TINYINT UNSIGNED, c12 SMALLINT UNSIGNED, c13 INT UNSIGNED, c14 BIGINT UNSIGNED) tags(n1 INT, w2 BOOL, t3 TINYINT, t4 SMALLINT, t5 BIGINT, t6 FLOAT, t7 DOUBLE, t8 TIMESTAMP, t9 BINARY(10), t10 NCHAR(10), t11 TINYINT UNSIGNED, t12 SMALLINT UNSIGNED, t13 INT UNSIGNED, t14 BIGINT UNSIGNED)"
        )
66
        tdSql.execute(
67 68
            "create table t1 using st tags(1, true, 1, 1, 1, 1.0, 1.0, 1, '1', '一', 1, 1, 1, 1)"
        )
69
        tdSql.execute(
70 71
            "insert into t1 values(1640000000000, 1, true, 1, 1, 1, 1.0, 1.0, 1, '1', '一', 1, 1, 1, 1)"
        )
72
        tdSql.execute(
73 74
            "create table t2 using st tags(NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)"
        )
75
        tdSql.execute(
76 77
            "insert into t2 values(1640000000000, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)"
        )
78

79
        #        sys.exit(1)
80 81

        binPath = self.getPath("taosdump")
82
        if binPath == "":
83 84 85 86 87 88 89 90 91 92 93
            tdLog.exit("taosdump not found!")
        else:
            tdLog.info("taosdump found in %s" % binPath)

        if not os.path.exists(self.tmpdir):
            os.makedirs(self.tmpdir)
        else:
            print("directory exists")
            os.system("rm -rf %s" % self.tmpdir)
            os.makedirs(self.tmpdir)

94
        os.system("%s --databases db -o %s -T 1" % (binPath, self.tmpdir))
95

96
        #        sys.exit(1)
97

98 99 100 101 102 103 104
        taosdumpInspectCmd = "%s -I %s/taosdump.*/*.avro* -s | grep 'Schema:'|wc -l" % (
            binPath,
            self.tmpdir,
        )
        schemaTimes = subprocess.check_output(taosdumpInspectCmd, shell=True).decode(
            "utf-8"
        )
105 106
        print("schema found times: %d" % int(schemaTimes))

107
        if int(schemaTimes) != 1:
108 109
            caller = inspect.getframeinfo(inspect.stack()[0][0])
            tdLog.exit(
110 111 112 113 114 115 116 117 118 119 120 121
                "%s(%d) failed: expected schema found times 1, actual %d"
                % (caller.filename, caller.lineno, int(schemaTimes))
            )

        taosdumpInspectCmd = (
            "%s -I %s/taosdump*/data*/*.avro* -s | grep 'Schema:'|wc -l"
            % (binPath, self.tmpdir)
        )
        schemaTimes = subprocess.check_output(taosdumpInspectCmd, shell=True).decode(
            "utf-8"
        )
        print("schema found times: %d" % int(schemaTimes))
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
        if int(schemaTimes) != 2:
            caller = inspect.getframeinfo(inspect.stack()[0][0])
            tdLog.exit(
                "%s(%d) failed: expected schema found times 2, actual %d"
                % (caller.filename, caller.lineno, int(schemaTimes))
            )

        taosdumpInspectCmd = (
            "%s -I %s/taosdump*/*.avro* | grep '=== Records:'|wc -l"
            % (binPath, self.tmpdir)
        )
        recordsTimes = subprocess.check_output(taosdumpInspectCmd, shell=True).decode(
            "utf-8"
        )
        print("records found times: %d" % int(recordsTimes))

        if int(recordsTimes) != 1:
            caller = inspect.getframeinfo(inspect.stack()[0][0])
            tdLog.exit(
                "%s(%d) failed: expected records found times 1, actual %d"
                % (caller.filename, caller.lineno, int(recordsTimes))
            )

        taosdumpInspectCmd = (
            "%s -I %s/taosdump*/data*/*.avro* | grep '=== Records:'|wc -l"
            % (binPath, self.tmpdir)
        )
        recordsTimes = subprocess.check_output(taosdumpInspectCmd, shell=True).decode(
            "utf-8"
        )
153 154
        print("records found times: %d" % int(recordsTimes))

155
        if int(recordsTimes) != 2:
156 157
            caller = inspect.getframeinfo(inspect.stack()[0][0])
            tdLog.exit(
158 159 160
                "%s(%d) failed: expected records found times 2, actual %d"
                % (caller.filename, caller.lineno, int(recordsTimes))
            )
161 162 163 164 165 166 167 168

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


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