function_interp.py 5.4 KB
Newer Older
P
Ping Xiao 已提交
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 26 27 28
###################################################################
#           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 taos
from util.log import *
from util.cases import *
from util.sql import *
import numpy as np


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

        self.rowNum = 10
        self.ts = 1537146000000
Z
zhaoyanggh 已提交
29

P
Ping Xiao 已提交
30 31
    def run(self):
        tdSql.prepare()
Z
zhaoyanggh 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
        tdSql.execute("create table ap1 (ts timestamp, pav float)")
        tdSql.execute("insert into ap1 values ('2021-07-25 02:19:54.119', 2.90799)")
        tdSql.execute("insert into ap1 values ('2021-07-25 02:19:54.317', 3.07399)")
        tdSql.execute("insert into ap1 values ('2021-07-25 02:19:54.517', 0.58117)")
        tdSql.execute("insert into ap1 values ('2021-07-25 02:19:54.717', 0.16150)")
        tdSql.execute("insert into ap1 values ('2021-07-25 02:19:54.918', 1.47885)")
        tdSql.execute("insert into ap1 values ('2021-07-25 02:19:56.569', 1.76472)")
        tdSql.execute("insert into ap1 values ('2021-07-25 02:19:57.381', 2.13722)")
        tdSql.execute("insert into ap1 values ('2021-07-25 02:19:57.574', 4.10256)")
        tdSql.execute("insert into ap1 values ('2021-07-25 02:19:57.776', 3.55345)")
        tdSql.execute("insert into ap1 values ('2021-07-25 02:19:57.976', 1.46624)")
        tdSql.execute("insert into ap1 values ('2021-07-25 02:19:58.187', 0.17943)")
        tdSql.execute("insert into ap1 values ('2021-07-25 02:19:58.372', 2.04101)")
        tdSql.execute("insert into ap1 values ('2021-07-25 02:19:58.573', 3.20924)")
        tdSql.execute("insert into ap1 values ('2021-07-25 02:19:58.768', 1.71807)")
        tdSql.execute("insert into ap1 values ('2021-07-25 02:19:58.964', 4.60900)")
        tdSql.execute("insert into ap1 values ('2021-07-25 02:19:59.155', 4.33907)")
        tdSql.execute("insert into ap1 values ('2021-07-25 02:19:59.359', 0.76940)")
        tdSql.execute("insert into ap1 values ('2021-07-25 02:19:59.553', 0.06458)")
        tdSql.execute("insert into ap1 values ('2021-07-25 02:19:59.742', 4.59857)")
        tdSql.execute("insert into ap1 values ('2021-07-25 02:19:59.938', 1.55081)")

        tdSql.query("select interp(pav) from ap1 where ts = '2021-07-25 02:19:54' FILL (PREV)")
        tdSql.checkRows(0)
        tdSql.query("select interp(pav) from ap1 where ts = '2021-07-25 02:19:54' FILL (NEXT)")
        tdSql.checkRows(0)
        tdSql.query("select interp(pav) from ap1 where ts = '2021-07-25 02:19:54' FILL (LINEAR)")
        tdSql.checkRows(0)
60
        tdSql.query("select interp(pav) from ap1 where ts> '2021-07-25 02:19:54' and ts<'2021-07-25 02:20:00' every(1000a) FILL (LINEAR)")
Z
zhaoyanggh 已提交
61
        tdSql.checkRows(6)
62
        tdSql.query("select interp(pav) from ap1 where ts>= '2021-07-25 02:19:54' and ts<'2021-07-25 02:20:00' every(1000a) FILL (NEXT)")
Z
zhaoyanggh 已提交
63 64
        tdSql.checkRows(6)
        tdSql.checkData(0,1,2.90799)
65
        tdSql.query("select interp(pav) from ap1 where ts> '2021-07-25 02:19:54' and ts <= '2021-07-25 02:20:00' every(1000a) FILL (PREV)")
Z
zhaoyanggh 已提交
66 67
        tdSql.checkRows(7)
        tdSql.checkData(1,1,1.47885)
68
        tdSql.query("select interp(pav) from ap1 where ts>= '2021-07-25 02:19:54' and ts <= '2021-07-25 02:20:00' every(1000a) FILL (LINEAR)")
Z
zhaoyanggh 已提交
69 70 71 72 73 74 75 76
        tdSql.checkRows(7)

        # check desc order
        tdSql.error("select interp(pav) from ap1 where ts = '2021-07-25 02:19:54' FILL (PREV) order by ts desc")
        tdSql.query("select interp(pav) from ap1 where ts = '2021-07-25 02:19:54' FILL (NEXT) order by ts desc")
        tdSql.checkRows(0)
        tdSql.query("select interp(pav) from ap1 where ts = '2021-07-25 02:19:54' FILL (LINEAR) order by ts desc")
        tdSql.checkRows(0)
77
        tdSql.query("select interp(pav) from ap1 where ts> '2021-07-25 02:19:54' and ts<'2021-07-25 02:20:00' every(1000a) FILL (LINEAR) order by ts desc")
Z
zhaoyanggh 已提交
78
        tdSql.checkRows(6)
79
        tdSql.query("select interp(pav) from ap1 where ts>= '2021-07-25 02:19:54' and ts<'2021-07-25 02:20:00' every(1000a) FILL (NEXT) order by ts desc")
Z
zhaoyanggh 已提交
80 81
        tdSql.checkRows(6)
        tdSql.checkData(0,1,4.60900)
82 83
        tdSql.error("select interp(pav) from ap1 where ts> '2021-07-25 02:19:54' and ts <= '2021-07-25 02:20:00' every(1000a) FILL (PREV) order by ts desc")
        tdSql.query("select interp(pav) from ap1 where ts>= '2021-07-25 02:19:54' and ts <= '2021-07-25 02:20:00' every(1000a) FILL (LINEAR) order by ts desc")
Z
zhaoyanggh 已提交
84 85 86 87 88 89 90
        tdSql.checkRows(7)

        # check exception
        tdSql.error("select interp(*) from ap1")
        tdSql.error("select interp(*) from ap1 FILL(NEXT)")
        tdSql.error("select interp(*) from ap1 ts >= '2021-07-25 02:19:54' FILL(NEXT)")
        tdSql.error("select interp(*) from ap1 ts <= '2021-07-25 02:19:54' FILL(NEXT)")
91
        tdSql.error("select interp(*) from ap1 where ts >'2021-07-25 02:19:59.938' and ts < now every(1s) fill(next)")
Z
zhaoyanggh 已提交
92

P
Ping Xiao 已提交
93 94 95 96 97 98
    def stop(self):
        tdSql.close()
        tdLog.success("%s successfully executed" % __file__)

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