mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
116 lines
3.9 KiB
Python
116 lines
3.9 KiB
Python
import time
|
|
import math
|
|
from new_test_framework.utils import tdLog, tdSql, tdStream
|
|
|
|
|
|
class TestStreamDevBasic:
|
|
|
|
def setup_class(cls):
|
|
tdLog.debug(f"start to execute {__file__}")
|
|
|
|
def test_stream_dev_basic(self):
|
|
"""Stream basic development testing 1
|
|
|
|
Verification testing during the development process.
|
|
|
|
Catalog:
|
|
- Streams:Others
|
|
|
|
Since: v3.3.3.7
|
|
|
|
Labels: common,ci
|
|
|
|
Jira: None
|
|
|
|
History:
|
|
- 2025-5-26 Simon Guan Created
|
|
|
|
"""
|
|
|
|
self.basic1()
|
|
# self.basic2()
|
|
|
|
def basic1(self):
|
|
tdLog.info(f"basic test 1")
|
|
tdStream.dropAllStreamsAndDbs()
|
|
tdStream.createSnode()
|
|
|
|
tdLog.info(f"=============== create database")
|
|
tdSql.prepare(dbname="test", vgroups=1)
|
|
|
|
tdLog.info(f"=============== create super table")
|
|
tdSql.execute(
|
|
f"create stable stream_query (ts timestamp, id int, c1 int) tags(t1 int);"
|
|
)
|
|
tdSql.query(f"show stables")
|
|
tdSql.checkRows(1)
|
|
|
|
tdLog.info(f"=============== write query data")
|
|
sqls = [
|
|
"insert into t1 using stream_query tags(1) values ('2025-01-01 00:00:00', 0, 0);",
|
|
"insert into t2 using stream_query tags(2) values ('2025-01-01 00:00:00.102', 0.5, 0)",
|
|
"insert into t1 using stream_query tags(1) values ('2025-01-01 00:00:01', 1, 1);",
|
|
"insert into t2 using stream_query tags(2) values ('2025-01-01 00:00:01.400', 1.5, 1);",
|
|
"insert into t1 using stream_query tags(1) values ('2025-01-01 00:00:02', 2, 2);",
|
|
"insert into t2 using stream_query tags(2) values ('2025-01-01 00:00:02.600', 2.5, 2);",
|
|
]
|
|
tdSql.executes(sqls)
|
|
tdSql.query("select _wstart, avg(id) from stream_query interval(1s)")
|
|
tdSql.printResult()
|
|
|
|
tdLog.info(f"=============== create trigger table")
|
|
tdSql.execute("create table stream_trigger (ts timestamp, id int, c1 int);")
|
|
tdSql.query(f"show tables")
|
|
tdSql.checkKeyExist("stream_trigger")
|
|
|
|
tdLog.info(f"=============== create stream")
|
|
tdSql.execute(
|
|
"create stream s1 interval(1s) sliding(1s) from stream_trigger partition by tbname into stream_out as select _twstart, avg(id) from stream_query where ts >= _twstart and ts < _twend;"
|
|
)
|
|
tdStream.checkStreamStatus()
|
|
|
|
tdLog.info(f"=============== write trigger data")
|
|
tdSql.execute(
|
|
"insert into stream_trigger values ('2025-01-01 00:00:00', 0, 0), ('2025-01-01 00:00:01', 1, 1), ('2025-01-01 00:00:02', 2, 2);"
|
|
)
|
|
|
|
tdLog.info(f"=============== check stream result")
|
|
tdSql.checkResultsByFunc(f"show stables", lambda: tdSql.getRows() == 1)
|
|
|
|
# result_sql = "select * from stream_out partition by tbname order by tbname"
|
|
result_sql = "select _wstart, avg(id) from stream_query interval(1s)"
|
|
|
|
tdSql.checkResultsByFunc(
|
|
sql=result_sql,
|
|
func=lambda: tdSql.getRows() == 3
|
|
and tdSql.compareData(0, 0, "2025-01-01 00:00:00.000")
|
|
and tdSql.compareData(1, 0, "2025-01-01 00:00:01.000")
|
|
and tdSql.compareData(2, 0, "2025-01-01 00:00:02.000")
|
|
and tdSql.compareData(0, 1, 0.5)
|
|
and tdSql.compareData(1, 1, 1.5)
|
|
and tdSql.compareData(2, 1, 2.5),
|
|
retry=3,
|
|
)
|
|
|
|
tdSql.checkResultsByFunc(
|
|
result_sql,
|
|
lambda: tdSql.getRows() >= 3
|
|
and tdSql.getData(0, 1) == 0.5
|
|
and tdSql.getData(1, 1) == 1.5
|
|
and tdSql.getData(2, 1) == 2.5,
|
|
)
|
|
|
|
exp_sql = result_sql
|
|
exp_result = tdSql.getResult(exp_sql)
|
|
tdSql.checkResultsByArray(
|
|
sql=result_sql,
|
|
exp_result=exp_result,
|
|
exp_sql=exp_sql,
|
|
retry=1,
|
|
)
|
|
|
|
exp_sql = result_sql
|
|
tdSql.checkResultsBySql(
|
|
sql=result_sql,
|
|
exp_sql=exp_sql,
|
|
)
|