taosdemoTestSubWithJson.py 8.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
###################################################################
#           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 time
from datetime import datetime
22 23
import subprocess

24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44

class TDTestCase:
    def init(self, conn, logSql):
        tdLog.debug("start to execute %s" % __file__)
        tdSql.init(conn.cursor(), logSql)
        
    def getBuildPath(self):
        selfPath = os.path.dirname(os.path.realpath(__file__))

        if ("community" in selfPath):
            projPath = selfPath[:selfPath.find("community")]
        else:
            projPath = selfPath[:selfPath.find("tests")]

        for root, dirs, files in os.walk(projPath):
            if ("taosd" in files):
                rootRealPath = os.path.dirname(os.path.realpath(root))
                if ("packaging" not in rootRealPath):
                    buildPath = root[:len(root)-len("/build/bin")]
                    break
        return buildPath
45

46
    # get the number of subscriptions
47 48 49 50 51
    def subTimes(self,filename):
        self.filename = filename
        command = 'cat %s |wc -l'% filename
        times = int(subprocess.getstatusoutput(command)[1]) 
        return times
52
    
53
    # assert results
54
    def assertCheck(self,filename,subResult,expectResult):
55
        self.filename = filename
56
        self.subResult = subResult
57
        self.expectResult = expectResult
58 59
        args0 = (filename, subResult, expectResult)
        assert subResult == expectResult , "Queryfile:%s ,result is %s != expect: %s" % args0    
60

61 62 63 64 65 66 67
    def run(self):
        buildPath = self.getBuildPath()
        if (buildPath == ""):
            tdLog.exit("taosd not found!")
        else:
            tdLog.info("taosd found in %s" % buildPath)
        binPath = buildPath+ "/build/bin/"      
68 69

        # clear env
70
        os.system("ps -ef |grep 'taosdemoAllTest/subSync.json' |grep -v 'grep' |awk '{print $2}'|xargs kill -9")
haoranc's avatar
haoranc 已提交
71
        os.system("ps -ef |grep 'taosdemoAllTest/subSyncKeepStart.json' |grep -v 'grep' |awk '{print $2}'|xargs kill -9")
72 73 74
        sleep(1)
        os.system("rm -rf ./subscribe_res*")  
        os.system("rm -rf ./all_subscribe_res*") 
75
        sleep(2)
haoranc's avatar
temp  
haoranc 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
        # subscribe: sync 
        os.system("%staosdemo -f tools/taosdemoAllTest/subInsertdata.json" % binPath)
        os.system("nohup %staosdemo -f tools/taosdemoAllTest/subSync.json &" % binPath)
        query_pid = int(subprocess.getstatusoutput('ps aux|grep "taosdemoAllTest/subSync.json" |grep -v "grep"|awk \'{print $2}\'')[1])

        # insert extral data     
        tdSql.execute("use db")
        tdSql.execute("insert into stb00_0 values(1614218412000,'R','bf3',8637,98.861045)")   
        tdSql.execute("insert into stb00_1 values(1614218412000,'R','bf3',8637,78.861045)(1614218422000,'R','bf3',8637,98.861045)")   
        sleep(5)

        # merge result files
        os.system("cat subscribe_res0.txt* > all_subscribe_res0.txt")
        os.system("cat subscribe_res1.txt* > all_subscribe_res1.txt")
        os.system("cat subscribe_res2.txt* > all_subscribe_res2.txt")
        os.system("cat subscribe_res3.txt* > all_subscribe_res3.txt")
92

93
        
haoranc's avatar
temp  
haoranc 已提交
94 95 96
        # correct subscribeTimes testcase
        subTimes0 = self.subTimes("all_subscribe_res0.txt")
        self.assertCheck("all_subscribe_res0.txt",subTimes0 ,22)
97

haoranc's avatar
temp  
haoranc 已提交
98 99
        subTimes1 = self.subTimes("all_subscribe_res1.txt")
        self.assertCheck("all_subscribe_res1.txt",subTimes1 ,24)
100

haoranc's avatar
temp  
haoranc 已提交
101 102
        subTimes2 = self.subTimes("all_subscribe_res2.txt")
        self.assertCheck("all_subscribe_res2.txt",subTimes2 ,21)
103

haoranc's avatar
temp  
haoranc 已提交
104 105
        subTimes3 = self.subTimes("all_subscribe_res3.txt")
        self.assertCheck("all_subscribe_res3.txt",subTimes3 ,13)
106
        
107

haoranc's avatar
temp  
haoranc 已提交
108 109 110 111 112
        # correct data testcase
        os.system("kill -9 %d" % query_pid)
        sleep(3)
        os.system("rm -rf ./subscribe_res*")   
        os.system("rm -rf ./all_subscribe*")
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
        # # sql number lager  100
        os.system("%staosdemo -f tools/taosdemoAllTest/subInsertdataMaxsql100.json" % binPath)
        assert os.system("%staosdemo -f tools/taosdemoAllTest/subSyncSpecMaxsql100.json" % binPath) != 0
        assert os.system("%staosdemo -f tools/taosdemoAllTest/subSyncSuperMaxsql100.json" % binPath) != 0

        # resubAfterConsume= -1 endAfter=-1 ;
        os.system('kill -9 `ps aux|grep "subSyncResubACMinus1.json" |grep -v "grep"|awk \'{print $2}\'` ')
        os.system("nohup %staosdemo -f tools/taosdemoAllTest/subResubjson/subSyncResubACMinus1.json & " % binPath)
        sleep(2)
        query_pid1 = int(subprocess.getstatusoutput('ps aux|grep "subSyncResubACMinus1.json" |grep -v "grep"|awk \'{print $2}\'')[1])
        print("get sub1 process'pid")
        subres0Number1 =int(subprocess.getstatusoutput('grep "1614218412000" subscribe_res0*  |wc -l' )[1])
        subres2Number1 =int(subprocess.getstatusoutput('grep "1614218412000" subscribe_res2*  |wc -l' )[1])
        assert 0==subres0Number1 , "subres0Number1 error"
        assert 0==subres2Number1 , "subres2Number1 error"
        tdSql.execute("insert into db.stb00_0 values(1614218412000,'R','bf3',8637,78.861045)(1614218413000,'R','bf3',8637,98.861045)") 
        sleep(4)
        subres2Number2 =int(subprocess.getstatusoutput('grep "1614218412000" subscribe_res0*  |wc -l' )[1])
        subres0Number2 =int(subprocess.getstatusoutput('grep "1614218412000" subscribe_res0*  |wc -l' )[1])
        assert 0!=subres2Number2 , "subres2Number2 error"
        assert 0!=subres0Number2 , "subres0Number2 error"
        os.system("kill -9 %d" % query_pid1)
        os.system("rm -rf ./subscribe_res*")   

        # # resubAfterConsume= -1 endAfter=0 ;
haoranc's avatar
temp  
haoranc 已提交
139
        # os.system("%staosdemo -f tools/taosdemoAllTest/subInsertdataMaxsql100.json" % binPath)
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
        # os.system('kill -9 `ps aux|grep "subSyncResubACMinus1endAfter0.json" |grep -v "grep"|awk \'{print $2}\'` ')
        # os.system("nohup %staosdemo -f tools/taosdemoAllTest/subResubjson/subSyncResubACMinus1endAfter0.json & " % binPath)
        # sleep(2)
        # query_pid1 = int(subprocess.getstatusoutput('ps aux|grep "subSyncResubACMinus1endAfter0.json" |grep -v "grep"|awk \'{print $2}\'')[1])
        # print("get sub2 process'pid")
        # subres0Number1 =int(subprocess.getstatusoutput('grep "1614218412000" subscribe_res0*  |wc -l' )[1])
        # subres2Number1 =int(subprocess.getstatusoutput('grep "1614218412000" subscribe_res2*  |wc -l' )[1])
        # assert 0==subres0Number1 , "subres0Number1 error"
        # assert 0==subres2Number1 , "subres2Number1 error"
        # tdSql.execute("insert into db.stb00_0 values(1614218412000,'R','bf3',8637,78.861045)(1614218413000,'R','bf3',8637,98.861045)") 
        # sleep(4)
        # subres2Number2 =int(subprocess.getstatusoutput('grep "1614218412000" subscribe_res0*  |wc -l' )[1])
        # subres0Number2 =int(subprocess.getstatusoutput('grep "1614218412000" subscribe_res0*  |wc -l' )[1])
        # assert 0!=subres2Number2 , "subres2Number2 error"
        # assert 0!=subres0Number2 , "subres0Number2 error"
        # os.system("kill -9 %d" % query_pid1)
        # os.system("rm -rf ./subscribe_res*")   
        

haoranc's avatar
haoranc 已提交
159

160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179

        # # # merge result files
        # os.system("cat subscribe_res0.txt* > all_subscribe_res0.txt")
        # os.system("cat subscribe_res1.txt* > all_subscribe_res1.txt")
        # os.system("cat subscribe_res2.txt* > all_subscribe_res2.txt")
        # # os.system("cat subscribe_res3.txt* > all_subscribe_res3.txt")

        # sleep(3)

        # # correct subscribeTimes testcase
        # subTimes0 = self.subTimes("all_subscribe_res0.txt")
        # self.assertCheck("all_subscribe_res0.txt",subTimes0 ,3960)

        # subTimes1 = self.subTimes("all_subscribe_res1.txt")
        # self.assertCheck("all_subscribe_res1.txt",subTimes1 ,40)

        # subTimes2 = self.subTimes("all_subscribe_res2.txt")
        # self.assertCheck("all_subscribe_res2.txt",subTimes2 ,1900)


haoranc's avatar
haoranc 已提交
180 181 182
        # os.system("%staosdemo -f tools/taosdemoAllTest/subSupermaxsql100.json" % binPath)
        # os.system("%staosdemo -f tools/taosdemoAllTest/subSupermaxsql100.json" % binPath)

haoranc's avatar
haoranc 已提交
183

184 185
        
        # delete useless files
186 187
        os.system("rm -rf ./insert_res.txt")
        os.system("rm -rf tools/taosdemoAllTest/*.py.sql")        
haoranc's avatar
haoranc 已提交
188 189
        os.system("rm -rf ./subscribe_res*")   
        os.system("rm -rf ./all_subscribe*")
190 191 192 193 194 195 196
         
    def stop(self):
        tdSql.close()
        tdLog.success("%s successfully executed" % __file__)

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