################################################################### # 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 sys import os from util.log import * from util.cases import * from util.sql import * from util.dnodes import * import subprocess class TDTestCase: def caseDescription(self): ''' case1: [TD-14544] taosdump data inspect ''' 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__)) if ("community" in selfPath): projPath = selfPath[:selfPath.find("community")] else: projPath = selfPath[:selfPath.find("tests")] paths = [] for root, dirs, files in os.walk(projPath): if ((tool) in files): rootRealPath = os.path.dirname(os.path.realpath(root)) if ("packaging" not in rootRealPath): paths.append(os.path.join(root, tool)) break if (len(paths) == 0): return "" return paths[0] def run(self): tdSql.prepare() tdSql.execute("drop database if exists db") tdSql.execute("create database db days 11 keep 3649 blocks 8 ") tdSql.execute("use db") tdSql.execute( "create table st(ts timestamp, c1 INT) tags(ntag INT)") tdSql.execute("create table t1 using st tags(1)") tdSql.execute("insert into t1 values(1640000000000, 1)") tdSql.execute("create table t2 using st tags(2147483647)") tdSql.execute("insert into t2 values(1640000000000, 2147483647)") tdSql.execute("create table t3 using st tags(-2147483647)") tdSql.execute("insert into t3 values(1640000000000, -2147483647)") tdSql.execute("create table t4 using st tags(NULL)") tdSql.execute("insert into t4 values(1640000000000, NULL)") # sys.exit(1) binPath = self.getPath("taosdump") if (binPath == ""): 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) os.system( "%s --databases db -o %s -T 1" % (binPath, self.tmpdir)) # sys.exit(1) taosdumpInspectCmd = "%s -I %s/*.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)) if (int(schemaTimes) != 5): caller = inspect.getframeinfo(inspect.stack()[0][0]) tdLog.exit( "%s(%d) failed: expected schema found times 5, actual %d" % (caller.filename, caller.lineno, int(schemaTimes))) taosdumpInspectCmd = "%s -I %s/*.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) != 5): caller = inspect.getframeinfo(inspect.stack()[0][0]) tdLog.exit( "%s(%d) failed: expected records found times 5, actual %d" % (caller.filename, caller.lineno, int(recordsTimes))) def stop(self): tdSql.close() tdLog.success("%s successfully executed" % __file__) tdCases.addWindows(__file__, TDTestCase()) tdCases.addLinux(__file__, TDTestCase())