query-limit-offset.py 8.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
###################################################################
#           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
H
happyguoxy 已提交
16
import time
17 18 19 20 21 22 23 24 25 26
from util.log import *
from util.cases import *
from util.sql import *
from util.dnodes import *


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

H
happyguoxy 已提交
28 29 30
        now = time.time()
        self.ts = int(round(now * 1000))

31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
    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
46

47 48 49 50 51 52 53 54
    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/"

55
        # insert: create one  or mutiple tables per sql and insert multiple rows per sql
56
        # test case for https://jira.taosdata.com:18080/browse/TD-4985
H
happyguoxy 已提交
57
        os.system("rm -rf tools/taosdemoAllTest/TD-4985/query-limit-offset.py.sql")
58 59 60 61 62 63
        os.system("%staosdemo -f tools/taosdemoAllTest/TD-4985/query-limit-offset.json -y " % binPath)
        tdSql.execute("use db")
        tdSql.query("select count (tbname) from stb0")
        tdSql.checkData(0, 0, 10000)

        for i in range(1000):
64
            tdSql.execute('''insert into stb00_9999 values(%d, %d, %d,'test99.%s')'''
H
happyguoxy 已提交
65
                            % (self.ts + i, i, -10000+i, i))
66
            tdSql.execute('''insert into stb00_8888 values(%d, %d, %d,'test98.%s')'''
H
happyguoxy 已提交
67
                            % (self.ts + i, i, -10000+i, i))
68
            tdSql.execute('''insert into stb00_7777 values(%d, %d, %d,'test97.%s')'''
H
happyguoxy 已提交
69
                            % (self.ts + i, i, -10000+i, i))
70
            tdSql.execute('''insert into stb00_6666 values(%d, %d, %d,'test96.%s')'''
H
happyguoxy 已提交
71
                            % (self.ts + i, i, -10000+i, i))
72
            tdSql.execute('''insert into stb00_5555 values(%d, %d, %d,'test95.%s')'''
H
happyguoxy 已提交
73
                            % (self.ts + i, i, -10000+i, i))
74
            tdSql.execute('''insert into stb00_4444 values(%d, %d, %d,'test94.%s')'''
H
happyguoxy 已提交
75
                            % (self.ts + i, i, -10000+i, i))
76
            tdSql.execute('''insert into stb00_3333 values(%d, %d, %d,'test93.%s')'''
H
happyguoxy 已提交
77
                            % (self.ts + i, i, -10000+i, i))
78
            tdSql.execute('''insert into stb00_2222 values(%d, %d, %d,'test92.%s')'''
H
happyguoxy 已提交
79
                            % (self.ts + i, i, -10000+i, i))
80
            tdSql.execute('''insert into stb00_1111 values(%d, %d, %d,'test91.%s')'''
H
happyguoxy 已提交
81
                            % (self.ts + i, i, -10000+i, i))
82
            tdSql.execute('''insert into stb00_100 values(%d, %d, %d,'test90.%s')'''
H
happyguoxy 已提交
83
                            % (self.ts + i, i, -10000+i, i))
84
        tdSql.query("select * from stb0 where c2 like 'test99%' ")
85 86 87 88 89 90 91 92 93
        tdSql.checkRows(1000)
        tdSql.query("select * from stb0 where  tbname like 'stb00_9999'  limit 10" )
        tdSql.checkData(0, 1, 0)
        tdSql.checkData(1, 1, 1)
        tdSql.checkData(2, 1, 2)
        tdSql.query("select * from stb0 where  tbname like 'stb00_9999'  limit 10 offset 5" )
        tdSql.checkData(0, 1, 5)
        tdSql.checkData(1, 1, 6)
        tdSql.checkData(2, 1, 7)
94
        tdSql.query("select *  from stb0 where c2 like 'test98%' ")
95 96 97 98 99 100 101 102 103
        tdSql.checkRows(1000)
        tdSql.query("select  *  from stb0 where tbname like 'stb00_8888' limit 10" )
        tdSql.checkData(0, 1, 0)
        tdSql.checkData(1, 1, 1)
        tdSql.checkData(2, 1, 2)
        tdSql.query("select *  from stb0 where tbname like 'stb00_8888' limit 10 offset 5" )
        tdSql.checkData(0, 1, 5)
        tdSql.checkData(1, 1, 6)
        tdSql.checkData(2, 1, 7)
104
        tdSql.query("select *  from stb0 where c2 like 'test97%' ")
105 106 107 108 109 110 111 112 113
        tdSql.checkRows(1000)
        tdSql.query("select  *  from stb0 where tbname like 'stb00_7777' limit 10" )
        tdSql.checkData(0, 1, 0)
        tdSql.checkData(1, 1, 1)
        tdSql.checkData(2, 1, 2)
        tdSql.query("select  *  from stb0 where tbname like 'stb00_7777' limit 10 offset 5" )
        tdSql.checkData(0, 1, 5)
        tdSql.checkData(1, 1, 6)
        tdSql.checkData(2, 1, 7)
114
        tdSql.query("select *  from stb0 where c2 like 'test96%' ")
115 116 117 118 119 120 121 122 123
        tdSql.checkRows(1000)
        tdSql.query("select  *  from stb0 where tbname like 'stb00_6666' limit 10" )
        tdSql.checkData(0, 1, 0)
        tdSql.checkData(1, 1, 1)
        tdSql.checkData(2, 1, 2)
        tdSql.query("select  *  from stb0 where tbname like 'stb00_6666' limit 10 offset 5" )
        tdSql.checkData(0, 1, 5)
        tdSql.checkData(1, 1, 6)
        tdSql.checkData(2, 1, 7)
124
        tdSql.query("select *  from stb0 where c2 like 'test95%' ")
125 126 127 128 129 130 131 132 133
        tdSql.checkRows(1000)
        tdSql.query("select  *  from stb0 where tbname like 'stb00_5555' limit 10" )
        tdSql.checkData(0, 1, 0)
        tdSql.checkData(1, 1, 1)
        tdSql.checkData(2, 1, 2)
        tdSql.query("select  *  from stb0 where tbname like 'stb00_5555' limit 10 offset 5" )
        tdSql.checkData(0, 1, 5)
        tdSql.checkData(1, 1, 6)
        tdSql.checkData(2, 1, 7)
134
        tdSql.query("select * from stb0 where c2 like 'test94%' ")
135 136 137 138 139 140 141 142 143
        tdSql.checkRows(1000)
        tdSql.query("select * from stb0 where tbname like 'stb00_4444' limit 10" )
        tdSql.checkData(0, 1, 0)
        tdSql.checkData(1, 1, 1)
        tdSql.checkData(2, 1, 2)
        tdSql.query("select * from stb0 where tbname like 'stb00_4444' limit 10 offset 5" )
        tdSql.checkData(0, 1, 5)
        tdSql.checkData(1, 1, 6)
        tdSql.checkData(2, 1, 7)
144
        tdSql.query("select *  from stb0 where c2 like 'test93%' ")
145 146 147 148 149 150 151 152 153
        tdSql.checkRows(1000)
        tdSql.query("select  *  from stb0 where tbname like 'stb00_3333' limit 100" )
        tdSql.checkData(0, 1, 0)
        tdSql.checkData(1, 1, 1)
        tdSql.checkData(2, 1, 2)
        tdSql.query("select *  from stb0 where tbname like 'stb00_3333' limit 100 offset 5" )
        tdSql.checkData(0, 1, 5)
        tdSql.checkData(1, 1, 6)
        tdSql.checkData(2, 1, 7)
154
        tdSql.query("select *  from stb0 where c2 like 'test92%' ")
155 156 157 158 159 160 161 162 163
        tdSql.checkRows(1000)
        tdSql.query("select  *  from stb0 where tbname like 'stb00_2222' limit 100" )
        tdSql.checkData(0, 1, 0)
        tdSql.checkData(1, 1, 1)
        tdSql.checkData(2, 1, 2)
        tdSql.query("select  *  from stb0 where tbname like 'stb00_2222' limit 100 offset 5" )
        tdSql.checkData(0, 1, 5)
        tdSql.checkData(1, 1, 6)
        tdSql.checkData(2, 1, 7)
164
        tdSql.query("select *  from stb0 where c2 like 'test91%' ")
165 166 167 168 169 170 171 172 173
        tdSql.checkRows(1000)
        tdSql.query("select  *  from stb0 where tbname like 'stb00_1111' limit 100" )
        tdSql.checkData(0, 1, 0)
        tdSql.checkData(1, 1, 1)
        tdSql.checkData(2, 1, 2)
        tdSql.query("select  *  from stb0 where tbname like 'stb00_1111' limit 100 offset 5" )
        tdSql.checkData(0, 1, 5)
        tdSql.checkData(1, 1, 6)
        tdSql.checkData(2, 1, 7)
174
        tdSql.query("select *  from stb0 where c2 like 'test90%' ")
175 176 177 178 179 180 181 182 183
        tdSql.checkRows(1000)
        tdSql.query("select  *  from stb0 where tbname like 'stb00_100' limit 100" )
        tdSql.checkData(0, 1, 0)
        tdSql.checkData(1, 1, 1)
        tdSql.checkData(2, 1, 2)
        tdSql.query("select  *  from stb0 where tbname like 'stb00_100' limit 100 offset 5" )
        tdSql.checkData(0, 1, 5)
        tdSql.checkData(1, 1, 6)
        tdSql.checkData(2, 1, 7)
H
happyguoxy 已提交
184
        
185

186 187 188 189 190 191 192
    def stop(self):
        tdSql.close()
        tdLog.success("%s successfully executed" % __file__)


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