taosdemoTestInsertWithJson.py 17.3 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 23 24 25
###################################################################
#           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 *


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

27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
    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
42

43 44 45 46 47 48 49 50
    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/"

51 52 53 54
        testcaseFilename = os.path.split(__file__)[-1]
        os.system("rm -rf ./insert*_res.txt*")
        os.system("rm -rf tools/taosdemoAllTest/%s.sql" % testcaseFilename )         

55
        # insert: create one  or mutiple tables per sql and insert multiple rows per sql
56
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insert-1s1tnt1r.json -y " % binPath)
57 58
        tdSql.execute("use db")
        tdSql.query("select count (tbname) from stb0")
59
        tdSql.checkData(0, 0, 11)
60
        tdSql.query("select count (tbname) from stb1")
61
        tdSql.checkData(0, 0, 10)
62 63 64
        tdSql.query("select count(*) from stb00_0")
        tdSql.checkData(0, 0, 100)
        tdSql.query("select count(*) from stb0")
65
        tdSql.checkData(0, 0, 1100)
66 67 68
        tdSql.query("select count(*) from stb01_1")
        tdSql.checkData(0, 0, 200)
        tdSql.query("select count(*) from stb1")
69
        tdSql.checkData(0, 0, 2000)
70

71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
        # # restful connector insert data
        # os.system("%staosBenchmark -f tools/taosdemoAllTest/insertRestful.json -y " % binPath)
        # tdSql.execute("use db")
        # tdSql.query("select count (tbname) from stb0")
        # tdSql.checkData(0, 0, 10)
        # tdSql.query("select count (tbname) from stb1")
        # tdSql.checkData(0, 0, 10)
        # tdSql.query("select count(*) from stb00_0")
        # tdSql.checkData(0, 0, 10)
        # tdSql.query("select count(*) from stb0")
        # tdSql.checkData(0, 0, 100)
        # tdSql.query("select count(*) from stb01_1")
        # tdSql.checkData(0, 0, 20)
        # tdSql.query("select count(*) from stb1")
        # tdSql.checkData(0, 0, 200)
86

87 88
        # default values json files 
        tdSql.execute("drop database if exists db") 
89
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insert-default.json -y " % binPath)
90 91 92 93 94 95 96 97
        tdSql.query("show databases;")
        for i in range(tdSql.queryRows):
            if tdSql.queryResult[i][0] == 'db':
                tdSql.checkData(i, 2, 100) 
                tdSql.checkData(i, 4, 1)     
                tdSql.checkData(i, 6, 10)       
                tdSql.checkData(i, 16, 'ms')           
    
98
        # insert: create  mutiple tables per sql and insert one rows per sql .
99
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insert-1s1tntmr.json -y " % binPath)
100 101 102 103 104 105
        tdSql.execute("use db")
        tdSql.query("select count (tbname) from stb0")
        tdSql.checkData(0, 0, 10)
        tdSql.query("select count (tbname) from stb1")
        tdSql.checkData(0, 0, 20)
        tdSql.query("select count(*) from stb00_0")
106
        tdSql.checkData(0, 0, 100)
107
        tdSql.query("select count(*) from stb0")
108
        tdSql.checkData(0, 0, 1000)
109
        tdSql.query("select count(*) from stb01_0")
110
        tdSql.checkData(0, 0, 200)
111
        tdSql.query("select count(*) from stb1")
112
        tdSql.checkData(0, 0, 4000)
113

114
        # insert: using parament "insert_interval to controls spped  of insert.
115
        # but We need to have accurate methods to control the speed, such as getting the speed value, checking the count and so on。
116
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insert-interval-speed.json -y" % binPath)
117 118
        tdSql.execute("use db")
        tdSql.query("show stables")
119
        tdSql.checkData(0, 4, 10)
120
        tdSql.query("select count(*) from stb00_0")
121
        tdSql.checkData(0, 0, 200)
122
        tdSql.query("select count(*) from stb0")
123
        tdSql.checkData(0, 0, 2000)
124
        tdSql.query("show stables")
125
        tdSql.checkData(1, 4, 20)
126
        tdSql.query("select count(*) from stb01_0")
127
        tdSql.checkData(0, 0, 200)
128
        tdSql.query("select count(*) from stb1")
129
        tdSql.checkData(0, 0, 4000)
130

131 132
        # spend 2min30s for 3 testcases.
        # insert: drop and child_table_exists combination test
133
        # insert: using parament "childtable_offset and childtable_limit" to control  table'offset point and offset
134
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insert-nodbnodrop.json -y" % binPath)
135
        tdSql.error("show dbno.stables")
136
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insert-newdb.json -y" % binPath)
137 138 139 140 141 142 143 144
        tdSql.execute("use db")
        tdSql.query("select count (tbname) from stb0")
        tdSql.checkData(0, 0, 5)
        tdSql.query("select count (tbname) from stb1")
        tdSql.checkData(0, 0, 6)
        tdSql.query("select count (tbname) from stb2")
        tdSql.checkData(0, 0, 7)
        tdSql.query("select count (tbname) from stb3")
145
        tdSql.checkData(0, 0, 8)
146
        tdSql.query("select count (tbname) from stb4")
147
        tdSql.checkData(0, 0, 8)
148
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insert-offset.json -y" % binPath)
149
        tdSql.execute("use db")
150
        tdSql.query("select count(*) from stb0")
151
        tdSql.checkData(0, 0, 50)
152
        tdSql.query("select count(*) from stb1")
153
        tdSql.checkData(0, 0, 240)
154
        tdSql.query("select count(*) from stb2")
155
        tdSql.checkData(0, 0, 220)
156 157 158 159
        tdSql.query("select count(*) from stb3")
        tdSql.checkData(0, 0, 180)
        tdSql.query("select count(*) from stb4")
        tdSql.checkData(0, 0, 160)
160
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insert-newtable.json -y" % binPath)
161
        tdSql.execute("use db")
162
        tdSql.query("select count(*) from stb0")
163
        tdSql.checkData(0, 0, 150)
164
        tdSql.query("select count(*) from stb1")
165
        tdSql.checkData(0, 0, 360)
166
        tdSql.query("select count(*) from stb2")
167
        tdSql.checkData(0, 0, 360)
168 169 170 171
        tdSql.query("select count(*) from stb3")
        tdSql.checkData(0, 0, 340)
        tdSql.query("select count(*) from stb4")
        tdSql.checkData(0, 0, 400)
172
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insert-renewdb.json -y" % binPath)
173
        tdSql.execute("use db")
174
        tdSql.query("select count(*) from stb0")
175
        tdSql.checkData(0, 0, 50)
176
        tdSql.query("select count(*) from stb1")
177
        tdSql.checkData(0, 0, 120)
178
        tdSql.query("select count(*) from stb2")
179
        tdSql.checkData(0, 0, 140)
180 181 182 183 184 185
        tdSql.query("select count(*) from stb3")
        tdSql.checkData(0, 0, 160)
        tdSql.query("select count(*) from stb4")
        tdSql.checkData(0, 0, 160)


186
        # insert:  let parament in json file  is illegal, it'll expect error.
187
        tdSql.execute("drop database if exists db") 
188
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insertColumnsAndTagNumLarge4096.json -y " % binPath)
189
        tdSql.error("use db")
190
        tdSql.execute("drop database if exists db") 
191
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insertSigcolumnsNum4096.json -y " % binPath)
192
        tdSql.error("select * from db.stb0")
193
        tdSql.execute("drop database if exists db") 
194
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insertColumnsAndTagNum4096.json -y " % binPath)
195
        tdSql.query("select count(*) from db.stb0")
196
        tdSql.checkData(0, 0, 10000) 
S
Shengliang Guan 已提交
197

198
        tdSql.execute("drop database if exists db")
199
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insertInterlaceRowsLarge1M.json -y " % binPath)
200 201
        tdSql.query("select count(*) from db.stb0")
        tdSql.checkRows(0)
202
        tdSql.execute("drop database if exists db")
203
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insertColumnsNum0.json -y " % binPath)
204
        tdSql.execute("use db")
205 206
        tdSql.query("show stables like 'stb0%' ")
        tdSql.checkData(0, 2, 11)
207
        tdSql.execute("drop database if exists db") 
208
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insertTagsNumLarge128.json -y " % binPath)   
209 210
        tdSql.error("use db1") 
        tdSql.execute("drop database if exists db") 
211
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insertBinaryLenLarge16374AllcolLar49151.json -y " % binPath)   
212
        tdSql.query("select count(*) from db.stb0") 
213
        tdSql.checkRows(1)
214
        tdSql.query("select count(*) from db.stb1")
215
        tdSql.checkRows(1)
216
        tdSql.error("select * from db.stb4")
217
        tdSql.error("select * from db.stb2")
218 219 220
        tdSql.query("select count(*) from db.stb3") 
        tdSql.checkRows(1)
        tdSql.execute("drop database if exists db") 
221 222 223 224
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insertBinaryLenLarge16374AllcolLar49151-error.json -y " % binPath)   
        tdSql.error("select * from db.stb4")
        tdSql.error("select * from db.stb2")
        tdSql.execute("drop database if exists db") 
225
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insertNumOfrecordPerReq0.json -y " % binPath)   
226 227
        tdSql.error("select count(*) from db.stb0") 
        tdSql.execute("drop database if exists db") 
228
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insertNumOfrecordPerReqless0.json -y " % binPath)   
229 230
        tdSql.error("use db") 
        tdSql.execute("drop database if exists db") 
231
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insertChildTab0.json -y " % binPath)   
232 233
        tdSql.error("use db") 
        tdSql.execute("drop database if exists db") 
234
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insertChildTabLess0.json -y " % binPath)   
235 236
        tdSql.error("use db") 
        tdSql.execute("drop database if exists blf") 
237
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insertTimestepMulRowsLargeint16.json -y " % binPath)   
238 239
        tdSql.execute("use blf") 
        tdSql.query("select ts from blf.p_0_topics_7 limit 262800,1") 
240 241 242
        tdSql.checkData(0, 0, "2020-03-31 12:00:00.000")
        tdSql.query("select first(ts) from blf.p_0_topics_2")
        tdSql.checkData(0, 0, "2019-10-01 00:00:00")
243
        tdSql.query("select last(ts) from blf.p_0_topics_6 ")
244
        tdSql.checkData(0, 0, "2020-09-29 23:59:00")
245
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insertMaxNumPerReq.json -y " % binPath)
246
        tdSql.execute("use db")
247 248 249 250
        tdSql.query("select count(*) from stb0")
        tdSql.checkData(0, 0, 5000000)
        tdSql.query("select count(*) from stb1")
        tdSql.checkData(0, 0, 5000000)
251 252


253

254
        # insert: timestamp and step
255
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insert-timestep.json -y " % binPath)
256 257 258 259 260 261 262
        tdSql.execute("use db")
        tdSql.query("show stables")
        tdSql.query("select count (tbname) from stb0")
        tdSql.checkData(0, 0, 10)
        tdSql.query("select count (tbname) from stb1")
        tdSql.checkData(0, 0, 20)
        tdSql.query("select last(ts) from db.stb00_0")
263
        tdSql.checkData(0, 0, "2020-10-01 00:00:00.019000")
264
        tdSql.query("select count(*) from stb0")
265
        tdSql.checkData(0, 0, 200)
266
        tdSql.query("select last(ts) from db.stb01_0")
267
        tdSql.checkData(0, 0, "2020-11-01 00:00:00.190000")
268
        tdSql.query("select count(*) from stb1")
269
        tdSql.checkData(0, 0, 400)
270 271

        # # insert:  disorder_ratio
272
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insert-disorder.json -g 2>&1  -y " % binPath)
273 274 275 276 277 278
        tdSql.execute("use db")
        tdSql.query("select count (tbname) from stb0")
        tdSql.checkData(0, 0, 1)
        tdSql.query("select count (tbname) from stb1")
        tdSql.checkData(0, 0, 1)
        tdSql.query("select count(*) from stb0")
279
        tdSql.checkData(0, 0, 10)
280
        tdSql.query("select count(*) from stb1")
281
        tdSql.checkData(0, 0, 10)
282

283
        # insert:  sample json
284
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insert-sample-ts.json -y " % binPath)
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
        tdSql.execute("use dbtest123")
        tdSql.query("select c2 from stb0")
        tdSql.checkData(0, 0, 2147483647)
        tdSql.query("select c0 from stb0_0 order by ts")
        tdSql.checkData(3, 0, 4)
        tdSql.query("select count(*) from stb0 order by ts")
        tdSql.checkData(0, 0, 40)
        tdSql.query("select * from stb0_1 order by ts")
        tdSql.checkData(0, 0, '2021-10-28 15:34:44.735')
        tdSql.checkData(3, 0, '2021-10-31 15:34:44.735')
        tdSql.query("select * from stb1 where t1=-127")
        tdSql.checkRows(20)
        tdSql.query("select * from stb1 where t2=127")
        tdSql.checkRows(10)
        tdSql.query("select * from stb1 where t2=126")
        tdSql.checkRows(10)

302
        # insert:  sample json
303
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insert-sample.json -y " % binPath)
304
        tdSql.execute("use dbtest123")
305
        tdSql.query("select c2 from stb0")
306
        tdSql.checkData(0, 0, 2147483647)
307 308 309 310 311 312
        tdSql.query("select * from stb1 where t1=-127")
        tdSql.checkRows(20)
        tdSql.query("select * from stb1 where t2=127")
        tdSql.checkRows(10)
        tdSql.query("select * from stb1 where t2=126")
        tdSql.checkRows(10)
313

314

315
        # insert: test interlace parament
316
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insert-interlace-row.json -y " % binPath)
317 318 319 320
        tdSql.execute("use db")
        tdSql.query("select count (tbname) from stb0")
        tdSql.checkData(0, 0, 100)
        tdSql.query("select count (*) from stb0")
321
        tdSql.checkData(0, 0, 15000)
322

323

324
        # # insert: auto_create
325

326 327
        tdSql.execute('drop database if exists db')
        tdSql.execute('create database db')
328
        tdSql.execute('use db')
329
        os.system("%staosBenchmark -y -f tools/taosdemoAllTest/insert-drop-exist-auto-N00.json " % binPath) # drop = no, child_table_exists, auto_create_table varies
330
        tdSql.execute('use db')
331
        tdSql.query('show tables like \'NN123%\'')  #child_table_exists = no, auto_create_table varies = 123
332
        tdSql.checkRows(20)
333 334 335 336 337
        tdSql.query('show tables like \'NNN%\'')    #child_table_exists = no, auto_create_table varies = no
        tdSql.checkRows(20)
        tdSql.query('show tables like \'NNY%\'')    #child_table_exists = no, auto_create_table varies = yes
        tdSql.checkRows(20)
        tdSql.query('show tables like \'NYN%\'')    #child_table_exists = yes, auto_create_table varies = no
338
        tdSql.checkRows(0)
339 340 341
        tdSql.query('show tables like \'NY123%\'')  #child_table_exists = yes, auto_create_table varies = 123
        tdSql.checkRows(0)
        tdSql.query('show tables like \'NYY%\'')    #child_table_exists = yes, auto_create_table varies = yes
342 343
        tdSql.checkRows(0)

344
        tdSql.execute('drop database if exists db')
345
        os.system("%staosBenchmark -y -f tools/taosdemoAllTest/insert-drop-exist-auto-Y00.json " % binPath) # drop = yes, child_table_exists, auto_create_table varies
346
        tdSql.execute('use db')
347
        tdSql.query('show tables like \'YN123%\'')  #child_table_exists = no, auto_create_table varies = 123
348
        tdSql.checkRows(20)
349
        tdSql.query('show tables like \'YNN%\'')    #child_table_exists = no, auto_create_table varies = no
350
        tdSql.checkRows(20)
351
        tdSql.query('show tables like \'YNY%\'')    #child_table_exists = no, auto_create_table varies = yes
352
        tdSql.checkRows(20)
353
        tdSql.query('show tables like \'YYN%\'')    #child_table_exists = yes, auto_create_table varies = no
354
        tdSql.checkRows(20)
355 356 357
        tdSql.query('show tables like \'YY123%\'')  #child_table_exists = yes, auto_create_table varies = 123
        tdSql.checkRows(20)
        tdSql.query('show tables like \'YYY%\'')    #child_table_exists = yes, auto_create_table varies = yes
358 359
        tdSql.checkRows(20)

360 361 362 363 364 365 366 367 368
        # insert: test chinese encoding
        os.system("%staosBenchmark -f tools/taosdemoAllTest/insert-chinese.json -y " % binPath)
        tdSql.execute("use db")
        tdSql.query("select count (tbname) from stb0")
        tdSql.checkData(0, 0, 10)
        tdSql.query("select count (*) from stb0")
        tdSql.checkData(0, 0, 1500)


369 370 371 372
        # rm useless files
        os.system("rm -rf ./insert*_res.txt*")


373 374 375
        
        
        
376

377 378 379 380 381 382 383
    def stop(self):
        tdSql.close()
        tdLog.success("%s successfully executed" % __file__)


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