TDengine/test/cases/18-StreamProcessing/05-Notify/test_notify.py
Jinqing Kuang 66692d5044
Some checks are pending
TDengine Release Build / Run on macos-14 (push) Waiting to run
TDengine Release Build / Run on ubuntu-22.04 (push) Waiting to run
fix(stream): link event subwindow notifications to parent (#35308)
2026-05-12 09:18:36 +08:00

2380 lines
122 KiB
Python

import json
import os
import time
import inspect
import shutil
from random import random
from new_test_framework.utils import tdLog, tdSql, tdStream, StreamCheckItem
from stream_notify_server import start_notify_server_background, stop_notify_server_background
from notify_check import expect_event, expect_event_count, expect_rows
caller_file = os.path.realpath(__file__)
caller_dir = os.path.dirname(caller_file)
NOTIFY_RESULT_DIR = os.path.join(caller_dir, "notify_result_tmp")
def _load_notify_events(path):
events = []
with open(path, "r", encoding="utf-8") as f:
for line in f:
line = line.strip()
if not line:
continue
obj = json.loads(line)
for stream in obj.get("streams", []):
events.extend(stream.get("events", []))
return events
def _wait_notify_events(path, min_events, retries=30):
for _ in range(retries):
try:
events = _load_notify_events(path)
if len(events) >= min_events:
return events
except (FileNotFoundError, ValueError):
pass
time.sleep(1)
return _load_notify_events(path)
def _subevent_key(event):
cond = event.get("triggerCondition", {})
return (
event.get("eventType"),
event.get("windowIndex"),
cond.get("conditionIndex"),
event.get("windowStart"),
)
class TestStreamNotifyTrigger:
def setup_class(cls):
tdLog.debug(f"start to execute {__file__}")
def start_notify_server(self):
global NOTIFY_RESULT_DIR
try:
if os.path.isdir(NOTIFY_RESULT_DIR):
for name in os.listdir(NOTIFY_RESULT_DIR):
p = os.path.join(NOTIFY_RESULT_DIR, name)
if os.path.isdir(p):
shutil.rmtree(p, ignore_errors=True)
else:
try:
os.remove(p)
except FileNotFoundError:
pass
else:
os.makedirs(NOTIFY_RESULT_DIR, exist_ok=True)
except Exception as e:
tdLog.info(f"prepare NOTIFY_RESULT_DIR failed: {NOTIFY_RESULT_DIR}, err={e}")
raise
# 启动通知服务,按 URL 写入该目录
start_notify_server_background(port=12345, log_path=NOTIFY_RESULT_DIR)
def test_stream_notify_trigger(self):
"""Notify basic
1. Stream notify on windows_open/windows_close trigger
2. Stream notify with options notify_history/on_failure_pause
3. Stream notify with different stream definitions
4. Stream create with no notify URL
5. Check notify results
Since: v3.3.3.7
Labels: common,ci
Jira: None
History:
- 2025-5-26 HaojunLiao Created
"""
self.start_notify_server()
tdStream.dropAllStreamsAndDbs()
tdStream.createSnode()
streams = []
# streams.append(self.Basic1()) # OK
streams.append(self.Basic2()) # OK
# streams.append(self.Basic3()) # failed
streams.append(self.Basic4()) # OK
streams.append(self.Basic5()) # OK
# streams.append(self.Basic6()) # failed
streams.append(self.Basic7()) # OK
# streams.append(self.Basic8()) # OK
# streams.append(self.Basic9()) # OK
# streams.append(self.Basic10()) # failed
# streams.append(self.Basic11()) #
streams.append(self.Basic12()) #
streams.append(self.Basic13()) #
streams.append(self.Basic14())
streams.append(self.Basic15())
streams.append(self.Basic16())
streams.append(self.Basic17())
streams.append(self.Basic18())
tdStream.checkAll(streams)
stop_notify_server_background()
class Basic1(StreamCheckItem):
def __init__(self):
self.db = "sdb1"
self.stbName = "stb"
def create(self):
tdLog.info(f"=============== create database")
tdSql.execute(f"create database {self.db} vgroups 5")
tdSql.execute(f"use {self.db}")
tdLog.info(f"=============== create super table")
tdSql.execute(f"create stable stb (cts timestamp, cint int, cuint int unsigned) tags(tint int);")
tdLog.info(f"=============== create sub table")
tdSql.execute(f"create table ct1 using stb tags(1);")
tdSql.execute(f"create table ct2 using stb tags(2);")
tdSql.execute(f"create table ct3 using stb tags(1);")
tdSql.execute(f"create table ct4 using stb tags(2);")
tdLog.info(f"=============== create stream")
sql1 = ("create stream s1 state_window(cint) from ct1 "
"notify('ws://localhost:12345/basic1_s1') on(window_open|window_close) notify_options(notify_history|on_failure_pause) into "
"res_ct1 (firstts, lastts, num_v, cnt_v, avg_v) as "
"select first(_c0), last_row(_c0), _twrownum, count(*), avg(cuint) from %%trows")
sql2 = "create stream s2 state_window(cint) from ct2 notify('ws://localhost:12345/basic1_s2') on(window_open|window_close) notify_options(notify_history|on_failure_pause) into res_ct2 (firstts, lastts, num_v, cnt_v, avg_v) as select first(_c0), last_row(_c0), _twrownum, count(*), avg(cuint) from %%trows;"
sql3 = "create stream s3 state_window(cint) from stb partition by tbname notify('ws://localhost:12345/basic1_s3') on(window_open|window_close) notify_options(notify_history|on_failure_pause) into stb_res OUTPUT_SUBTABLE(CONCAT('res_stb_', tbname)) (firstts, lastts, num_v, cnt_v, avg_v) tags (nameoftbl varchar(128) as tbname, gid bigint as _tgrpid) as select first(_c0), last_row(_c0), _twrownum, count(*), avg(cuint) from %%trows partition by tbname;"
sql4 = "create stream s4 state_window(cint) from stb partition by tbname, tint notify('ws://localhost:12345/basic1_s4') on(window_open|window_close) notify_options(notify_history|on_failure_pause) into stb_mtag_res OUTPUT_SUBTABLE(CONCAT('res_stb_mtag_', tbname, '_', cast(tint as varchar))) (firstts, lastts, num_v, cnt_v, avg_v) tags (nameoftbl varchar(128) as tbname, gid bigint as _tgrpid) as select first(_c0), last_row(_c0), _twrownum, count(*), avg(cuint) from %%trows partition by %%1, %%2;"
tdSql.execute(sql1)
tdSql.execute(sql2)
tdSql.execute(sql3)
tdSql.execute(sql4)
def insert1(self):
tdLog.info(f"=============== write query data")
sqls = [
"insert into ct1 using stb tags(1) values ('2025-01-01 00:00:00', 0, 0);",
"insert into ct1 using stb tags(1) values ('2025-01-01 00:00:01', 0, 0);",
"insert into ct1 using stb tags(1) values ('2025-01-01 00:00:02', 1, 1);",
"insert into ct1 using stb tags(1) values ('2025-01-01 00:00:03', 1, 1);",
"insert into ct1 using stb tags(1) values ('2025-01-01 00:00:04', 1, 1);",
"insert into ct1 using stb tags(1) values ('2025-01-01 00:00:05', 2, 2);",
"insert into ct1 using stb tags(1) values ('2025-01-01 00:00:06', 2, 2);",
"insert into ct1 using stb tags(1) values ('2025-01-01 00:00:07', 2, 2);",
"insert into ct1 using stb tags(1) values ('2025-01-01 00:00:08', 2, 2);",
"insert into ct1 using stb tags(1) values ('2025-01-01 00:00:09', 3, 3);",
"insert into ct2 using stb tags(2) values ('2025-01-01 00:00:00', 0, 0);",
"insert into ct2 using stb tags(2) values ('2025-01-01 00:00:01', 0, 0);",
"insert into ct2 using stb tags(2) values ('2025-01-01 00:00:02', 1, 1);",
"insert into ct2 using stb tags(2) values ('2025-01-01 00:00:03', 1, 1);",
"insert into ct2 using stb tags(2) values ('2025-01-01 00:00:04', 1, 1);",
"insert into ct2 using stb tags(2) values ('2025-01-01 00:00:05', 2, 2);",
"insert into ct2 using stb tags(2) values ('2025-01-01 00:00:06', 2, 2);",
"insert into ct2 using stb tags(2) values ('2025-01-01 00:00:07', 2, 2);",
"insert into ct2 using stb tags(2) values ('2025-01-01 00:00:08', 2, 2);",
"insert into ct2 using stb tags(2) values ('2025-01-01 00:00:09', 3, 3);",
"insert into ct3 using stb tags(1) values ('2025-01-01 00:00:00', 0, 0);",
"insert into ct3 using stb tags(1) values ('2025-01-01 00:00:01', 0, 0);",
"insert into ct3 using stb tags(1) values ('2025-01-01 00:00:02', 1, 1);",
"insert into ct3 using stb tags(1) values ('2025-01-01 00:00:03', 1, 1);",
"insert into ct3 using stb tags(1) values ('2025-01-01 00:00:04', 1, 1);",
"insert into ct3 using stb tags(1) values ('2025-01-01 00:00:05', 2, 2);",
"insert into ct3 using stb tags(1) values ('2025-01-01 00:00:06', 2, 2);",
"insert into ct3 using stb tags(1) values ('2025-01-01 00:00:07', 2, 2);",
"insert into ct3 using stb tags(1) values ('2025-01-01 00:00:08', 2, 2);",
"insert into ct3 using stb tags(1) values ('2025-01-01 00:00:09', 3, 3);",
"insert into ct4 using stb tags(2) values ('2025-01-01 00:00:00', 0, 0);",
"insert into ct4 using stb tags(2) values ('2025-01-01 00:00:01', 0, 0);",
"insert into ct4 using stb tags(2) values ('2025-01-01 00:00:02', 1, 1);",
"insert into ct4 using stb tags(2) values ('2025-01-01 00:00:03', 1, 1);",
"insert into ct4 using stb tags(2) values ('2025-01-01 00:00:04', 1, 1);",
"insert into ct4 using stb tags(2) values ('2025-01-01 00:00:05', 2, 2);",
"insert into ct4 using stb tags(2) values ('2025-01-01 00:00:06', 2, 2);",
"insert into ct4 using stb tags(2) values ('2025-01-01 00:00:07', 2, 2);",
"insert into ct4 using stb tags(2) values ('2025-01-01 00:00:08', 2, 2);",
"insert into ct4 using stb tags(2) values ('2025-01-01 00:00:09', 3, 3);",
]
tdSql.executes(sqls)
tdSql.query("select _wstart, count(cint), avg(cint) from stb partition by tbname state_window(cint)")
tdSql.printResult()
# ############ option: max_delay
# # no true_for
# tdLog.info(f"=============== create sub table")
# tdSql.execute(f"create table ct5 using stb tags(1);")
# sql8 = "create stream s8 state_window(cint) from ct5 stream_options(max_delay(3s)) notify('ws://localhost:12345/notify') on(window_open|window_close) notify_options(notify_history|on_failure_pause) into res_max_delay_ct5 (lastts, firstts, num_v, cnt_v, avg_v) as select last_row(_c0), first(_c0), _twrownum, count(*), avg(cuint) from %%trows;"
# tdSql.execute(sql8)
# # tdStream.checkStreamStatus("s8")
# time.sleep(3)
# tdLog.info(f"=============== continue write data into ct5 for new real data ")
# sqls = [
# "insert into ct5 using stb tags(1) values ('2025-01-04 00:00:10', 1, 0);",
# "insert into ct5 using stb tags(1) values ('2025-01-04 00:00:11', 1, 0);",
# "insert into ct5 using stb tags(1) values ('2025-01-04 00:00:12', 1, 1);",
# "insert into ct5 using stb tags(1) values ('2025-01-04 00:00:13', 1, 1);",
# "insert into ct5 using stb tags(1) values ('2025-01-04 00:00:14', 1, 1);",
# "insert into ct5 using stb tags(1) values ('2025-01-04 00:00:15', 2, 2);",
# "insert into ct5 using stb tags(1) values ('2025-01-04 00:00:16', 2, 2);",
# "insert into ct5 using stb tags(1) values ('2025-01-04 00:00:17', 2, 2);",
# "insert into ct5 using stb tags(1) values ('2025-01-04 00:00:18', 2, 2);",
# "insert into ct5 using stb tags(1) values ('2025-01-04 00:00:19', 2, 3);",
# "insert into ct5 using stb tags(1) values ('2025-01-04 00:00:20', 1, 0);",
# "insert into ct5 using stb tags(1) values ('2025-01-04 00:00:21', 1, 0);",
# "insert into ct5 using stb tags(1) values ('2025-01-04 00:00:22', 1, 1);",
# "insert into ct5 using stb tags(1) values ('2025-01-04 00:00:23', 1, 1);",
# "insert into ct5 using stb tags(1) values ('2025-01-04 00:00:24', 1, 1);",
# "insert into ct5 using stb tags(1) values ('2025-01-04 00:00:25', 2, 2);",
# "insert into ct5 using stb tags(1) values ('2025-01-04 00:00:26', 2, 2);",
# "insert into ct5 using stb tags(1) values ('2025-01-04 00:00:27', 2, 2);",
# "insert into ct5 using stb tags(1) values ('2025-01-04 00:00:28', 2, 2);",
# "insert into ct5 using stb tags(1) values ('2025-01-04 00:00:29', 2, 3);",
# ]
# tdSql.executes(sqls)
# self.checks6(3) # max_delay 觸發的結果時間戳 ,與 最後窗口關閉 的結果時間戳 是一樣的嗎? 如果是,需要配合 通知 來測試。
# # max_delay + true_for
# ############ option: watermark
def checks1(self):
result_sql = "select firstts, lastts, num_v, cnt_v, avg_v from res_ct1"
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(0, 1, "2025-01-01 00:00:01.000")
and tdSql.compareData(0, 2, 2)
and tdSql.compareData(0, 3, 2)
and tdSql.compareData(1, 0, "2025-01-01 00:00:02.000")
and tdSql.compareData(1, 1, "2025-01-01 00:00:04.000")
and tdSql.compareData(1, 2, 3)
and tdSql.compareData(1, 3, 3)
and tdSql.compareData(2, 0, "2025-01-01 00:00:05.000")
and tdSql.compareData(2, 1, "2025-01-01 00:00:08.000")
and tdSql.compareData(2, 2, 4)
and tdSql.compareData(2, 3, 4),
)
tdSql.query("desc sdb.res_ct1")
tdSql.printResult()
tdSql.checkRows(5)
tdSql.checkData(0, 0, "firstts")
tdSql.checkData(1, 0, "lastts")
tdSql.checkData(2, 0, "num_v")
tdSql.checkData(3, 0, "cnt_v")
tdSql.checkData(4, 0, "avg_v")
tdSql.checkData(0, 1, "TIMESTAMP")
tdSql.checkData(1, 1, "TIMESTAMP")
tdSql.checkData(2, 1, "BIGINT")
tdSql.checkData(3, 1, "BIGINT")
tdSql.checkData(4, 1, "DOUBLE")
tdSql.checkData(0, 2, "8")
tdSql.checkData(1, 2, "8")
tdSql.checkData(2, 2, "8")
tdSql.checkData(3, 2, "8")
tdSql.checkData(4, 2, "8")
tdLog.info(f"=============== check s1 result success !!!!!!!! =====================")
return
def checks2(self):
result_sql = "select firstts, num_v, cnt_v, avg_v from res_ct2"
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(0, 1, 2)
and tdSql.compareData(0, 2, 2)
and tdSql.compareData(1, 0, "2025-01-01 00:00:02.000")
and tdSql.compareData(1, 1, 3)
and tdSql.compareData(1, 2, 3)
and tdSql.compareData(2, 0, "2025-01-01 00:00:05.000")
and tdSql.compareData(2, 1, 4)
and tdSql.compareData(2, 2, 4),
)
tdSql.query("desc sdb.res_ct2")
tdSql.printResult()
tdSql.checkRows(5)
tdSql.checkData(0, 0, "firstts")
tdSql.checkData(1, 0, "lastts")
tdSql.checkData(2, 0, "num_v")
tdSql.checkData(3, 0, "cnt_v")
tdSql.checkData(4, 0, "avg_v")
tdSql.checkData(0, 1, "TIMESTAMP")
tdSql.checkData(1, 1, "TIMESTAMP")
tdSql.checkData(2, 1, "BIGINT")
tdSql.checkData(3, 1, "BIGINT")
tdSql.checkData(4, 1, "DOUBLE")
tdSql.checkData(0, 2, "8")
tdSql.checkData(1, 2, "8")
tdSql.checkData(2, 2, "8")
tdSql.checkData(3, 2, "8")
tdSql.checkData(4, 2, "8")
tdLog.info(f"=============== check s2 result success !!!!!!!! =====================")
return
def checks3(self):
result_sql = "select firstts, num_v, cnt_v, avg_v from res_stb_ct1"
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(0, 1, 2)
and tdSql.compareData(0, 2, 2)
and tdSql.compareData(1, 0, "2025-01-01 00:00:02.000")
and tdSql.compareData(1, 1, 3)
and tdSql.compareData(1, 2, 3)
and tdSql.compareData(2, 0, "2025-01-01 00:00:05.000")
and tdSql.compareData(2, 1, 4)
and tdSql.compareData(2, 2, 4),
)
tdSql.query("desc sdb.stb_res")
tdSql.printResult()
tdSql.checkRows(7)
tdSql.checkData(0, 0, "firstts")
tdSql.checkData(1, 0, "lastts")
tdSql.checkData(2, 0, "num_v")
tdSql.checkData(3, 0, "cnt_v")
tdSql.checkData(4, 0, "avg_v")
tdSql.checkData(5, 0, "nameoftbl")
tdSql.checkData(6, 0, "gid")
tdSql.checkData(0, 1, "TIMESTAMP")
tdSql.checkData(1, 1, "TIMESTAMP")
tdSql.checkData(2, 1, "BIGINT")
tdSql.checkData(3, 1, "BIGINT")
tdSql.checkData(4, 1, "DOUBLE")
tdSql.checkData(5, 1, "VARCHAR")
tdSql.checkData(6, 1, "BIGINT")
tdSql.checkData(0, 2, "8")
tdSql.checkData(1, 2, "8")
tdSql.checkData(2, 2, "8")
tdSql.checkData(3, 2, "8")
tdSql.checkData(4, 2, "8")
tdSql.checkData(5, 2, "128")
tdSql.checkData(6, 2, "8")
tdSql.checkData(5, 3, "TAG")
tdSql.checkData(6, 3, "TAG")
tdLog.info(f"=============== check s3 result success !!!!!!!! =====================")
return
def checks4(self):
result_sql = "select firstts, num_v, cnt_v, avg_v from res_stb_mtag_ct1_1"
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(0, 1, 2)
and tdSql.compareData(0, 2, 2)
and tdSql.compareData(1, 0, "2025-01-01 00:00:02.000")
and tdSql.compareData(1, 1, 3)
and tdSql.compareData(1, 2, 3)
and tdSql.compareData(2, 0, "2025-01-01 00:00:05.000")
and tdSql.compareData(2, 1, 4)
and tdSql.compareData(2, 2, 4),
)
tdSql.query("desc sdb.stb_mtag_res")
tdSql.printResult()
tdSql.checkRows(7)
tdSql.checkData(0, 0, "firstts")
tdSql.checkData(1, 0, "lastts")
tdSql.checkData(2, 0, "num_v")
tdSql.checkData(3, 0, "cnt_v")
tdSql.checkData(4, 0, "avg_v")
tdSql.checkData(5, 0, "nameoftbl")
tdSql.checkData(6, 0, "gid")
tdSql.checkData(0, 1, "TIMESTAMP")
tdSql.checkData(1, 1, "TIMESTAMP")
tdSql.checkData(2, 1, "BIGINT")
tdSql.checkData(3, 1, "BIGINT")
tdSql.checkData(4, 1, "DOUBLE")
tdSql.checkData(5, 1, "VARCHAR")
tdSql.checkData(6, 1, "BIGINT")
tdSql.checkData(0, 2, "8")
tdSql.checkData(1, 2, "8")
tdSql.checkData(2, 2, "8")
tdSql.checkData(3, 2, "8")
tdSql.checkData(4, 2, "8")
tdSql.checkData(5, 2, "128")
tdSql.checkData(6, 2, "8")
tdSql.checkData(5, 3, "TAG")
tdSql.checkData(6, 3, "TAG")
tdLog.info(f"=============== check s4 result success !!!!!!!! =====================")
return
def checks5(self, check_idx):
result_sql = "select firstts, num_v, cnt_v, avg_v from res_truefor_ct1"
if 0 == check_idx:
tdSql.checkResultsByFunc(
sql=result_sql,
func=lambda: tdSql.getRows() == 0,
)
tdLog.info(f"=============== check s5-0 result success !!!!!!!! =====================")
elif 1 == check_idx:
tdSql.checkResultsByFunc(
sql=result_sql,
func=lambda: tdSql.getRows() == 3
and tdSql.compareData(0, 0, "2025-01-01 00:00:10.000")
and tdSql.compareData(0, 1, 3)
and tdSql.compareData(0, 2, 3)
and tdSql.compareData(1, 0, "2025-01-01 00:00:16.000")
and tdSql.compareData(1, 1, 4)
and tdSql.compareData(1, 2, 4)
and tdSql.compareData(2, 0, "2025-01-01 00:00:22.000")
and tdSql.compareData(2, 1, 2)
and tdSql.compareData(2, 2, 2),
)
tdLog.info(f"=============== check s5-1 result success !!!!!!!! =====================")
return
def checks6(self, check_idx):
if 0 == check_idx:
result_sql = "select firstts, num_v, cnt_v, avg_v from res_fill_all_ct1"
tdSql.checkResultsByFunc(
sql=result_sql,
func=lambda: tdSql.getRows() == 0,
)
tdLog.info(f"=============== check s6-0 result success !!!!!!!! =====================")
elif 1 == check_idx:
result_sql = "select firstts, num_v, cnt_v, avg_v from res_fill_all_ct1"
tdSql.checkResultsByFunc(
sql=result_sql,
func=lambda: tdSql.getRows() == 11
and tdSql.compareData(0, 0, "2025-01-01 00:00:00.000")
and tdSql.compareData(0, 1, 2)
and tdSql.compareData(0, 2, 2)
and tdSql.compareData(1, 0, "2025-01-01 00:00:02.000")
and tdSql.compareData(1, 1, 3)
and tdSql.compareData(1, 2, 3)
and tdSql.compareData(2, 0, "2025-01-01 00:00:05.000")
and tdSql.compareData(2, 1, 4)
and tdSql.compareData(2, 2, 4),
)
tdLog.info(f"=============== check s6-1 result success !!!!!!!! =====================")
elif 2 == check_idx: # fill history start time from 2025-01-02 00:00:10
result_sql = "select firstts, num_v, cnt_v, avg_v from res_fill_part_ct1"
tdSql.checkResultsByFunc(
sql=result_sql,
func=lambda: tdSql.getRows() == 7
and tdSql.compareData(0, 0, "2025-01-02 00:00:10.000")
and tdSql.compareData(0, 1, 3)
and tdSql.compareData(0, 2, 3)
and tdSql.compareData(1, 0, "2025-01-02 00:00:16.000")
and tdSql.compareData(1, 1, 4)
and tdSql.compareData(1, 2, 4)
and tdSql.compareData(2, 0, "2025-01-02 00:00:22.000")
and tdSql.compareData(2, 1, 2)
and tdSql.compareData(2, 2, 2),
)
tdLog.info(f"=============== check s6-2 result success !!!!!!!! =====================")
elif 3 == check_idx:
result_sql = "select lastts, firstts, num_v, cnt_v, avg_v from res_max_delay_ct5"
tdSql.checkResultsByFunc(
sql=result_sql,
func=lambda: tdSql.getRows() == 6
and tdSql.compareData(0, 0, "2025-01-02 00:00:10.000")
and tdSql.compareData(0, 1, 3)
and tdSql.compareData(0, 2, 3)
and tdSql.compareData(1, 0, "2025-01-02 00:00:15.000")
and tdSql.compareData(1, 1, 5)
and tdSql.compareData(1, 2, 5)
and tdSql.compareData(2, 0, "2025-01-02 00:00:22.000")
and tdSql.compareData(2, 1, 2)
and tdSql.compareData(2, 2, 2),
)
tdLog.info(f"=============== check s6-3 result success !!!!!!!! =====================")
return
class Basic2(StreamCheckItem):
def __init__(self):
self.db = "sdb2"
self.stb = "stb"
def create(self):
tdLog.info(f"=============== create database")
tdSql.execute(f"create database {self.db} vgroups 4;")
tdSql.execute(f"use {self.db}")
tdSql.execute(f"create table if not exists {self.stb} (ts timestamp, cint int, cbool bool, cfloat float, cdouble double, cbytes varchar(100), cdecimal decimal(10, 2)) tags (tag1 int, tag2 int);")
tdSql.query(f"show stables")
tdSql.checkRows(1)
tdLog.info(f"=============== create sub table")
tdSql.execute(f"create table ct0 using {self.stb} tags(0, 1);")
tdSql.execute(f"create table ct1 using {self.stb} tags(1, 2);")
tdSql.execute(f"create table ct2 using {self.stb} tags(2, 3);")
tdSql.execute(f"create table ct3 using {self.stb} tags(3, 4);")
tdSql.query(f"show tables")
tdSql.checkRows(4)
tdLog.info(f"=============== create stream")
tdSql.execute(
f"create stream s0 state_window(cint) from ct0 "
f"stream_options(DELETE_RECALC) "
f"notify('ws://localhost:12345/basic2_s0') on(window_open|window_close) notify_options(notify_history) "
f"into "
f"res_ct0 (twstart, twend, top_cdouble_10) as "
f"select _twstart wstart, _twend, top(cdouble, 10) from ct0 "
f"where _twstart <= _c0 and _c0 <= _twend "
)
def insert1(self):
tdLog.info(f"=============== insert data into stb")
sqls = [
"insert into ct0 values ('2025-01-01 00:00:00.000', 1, 0, 1.1, 1.1, '1', 3.3333);",
"insert into ct0 values ('2025-01-01 00:00:01.000', 1, 0, 1.1, 2.1, '1', 4.3333);",
"insert into ct0 values ('2025-01-01 00:00:02.000', 1, 0, 1.1, 3.1, '1', 5.3333);",
"insert into ct0 values ('2025-01-01 00:00:03.000', 1, 0, 1.1, 4.1, '1', 6.3333);",
"insert into ct0 values ('2025-01-01 00:00:04.000', 1, 0, 1.1, 5.1, '1', 7.3333);",
"insert into ct0 values ('2025-01-01 00:00:05.000', 1, 0, 1.1, 6.1, '1', 8.3333);",
"insert into ct0 values ('2025-01-01 00:00:06.000', 1, 0, 1.1, 7.1, '1', 9.3333);",
"insert into ct0 values ('2025-01-01 00:00:07.000', 1, 0, 1.1, 8.1, '1', 10.3333);",
"insert into ct0 values ('2025-01-01 00:00:08.000', 1, 0, 1.1, 9.1, '1', 11.3333);",
"insert into ct0 values ('2025-01-01 00:00:09.000', 1, 0, 1.1, 10.1, '1', 12.3333);",
"insert into ct0 values ('2025-01-01 00:00:10.000', 1, 0, 1.1, 11.1, '1', 13.3333);",
]
tdSql.executes(sqls)
tdSql.execute(f"delete from ct0 where _c0 = '2025-01-01 00:00:00.000';")
tdSql.execute(f"insert into ct0 values('2025-01-01 00:00:05.000', 911, 0, 1.1, 1.1, '1', 23.123456);")
def check1(self):
tdLog.info("do check the results")
for ws in (1735660800000, 1735660805000, 1735660806000):
expect_event(
os.path.join(NOTIFY_RESULT_DIR, "basic2_s0.log"),
streamName="sdb2.s0",
eventType="WINDOW_OPEN",
windowStart=ws,
result_pred=lambda rows: not rows # 空
)
expect_event(
os.path.join(NOTIFY_RESULT_DIR, "basic2_s0.log"),
streamName="sdb2.s0",
eventType="WINDOW_OPEN",
triggerType="State",
windowStart=1735660800000
)
expect_event(os.path.join(NOTIFY_RESULT_DIR, "basic2_s0.log"),
streamName="sdb2.s0",
eventType="WINDOW_CLOSE",
windowStart=1735660801000,
windowEnd=1735660804000,
result_pred=lambda rows: len(rows) == 4)
expect_rows(os.path.join(NOTIFY_RESULT_DIR, "basic2_s0.log"),
rows=4,
streamName="sdb2.s0",
eventType="WINDOW_CLOSE",
tableName="res_ct0",
windowStart=1735660801000,
windowEnd=1735660804000)
expect_rows(os.path.join(NOTIFY_RESULT_DIR, "basic2_s0.log"),
rows=4,
streamName="sdb2.s0",
eventType="WINDOW_CLOSE",
tableName="res_ct0",
windowStart=1735660800000,
windowEnd=1735660804000)
expect_rows(os.path.join(NOTIFY_RESULT_DIR, "basic2_s0.log"),
rows=1,
streamName="sdb2.s0",
eventType="WINDOW_CLOSE",
tableName="res_ct0",
windowStart=1735660805000,
windowEnd=1735660805000)
class Basic3(StreamCheckItem):
def __init__(self):
self.db = "sdb3"
self.stb = "stb"
def create(self):
tdLog.info(f"=============== create database")
tdSql.execute(f"create database {self.db} vgroups 4;")
tdSql.execute(f"use {self.db}")
tdSql.execute(f"create table if not exists {self.stb} (ts timestamp, cint int, cbool bool, cfloat float, cdouble double, cbytes varchar(100), cdecimal decimal(10, 2)) tags (tag1 int, tag2 int);")
tdSql.query(f"show stables")
tdSql.checkRows(1)
tdLog.info(f"=============== create sub table")
tdSql.execute(f"create table ct0 using {self.stb} tags(0, 1);")
tdSql.execute(f"create table ct1 using {self.stb} tags(1, 2);")
tdSql.execute(f"create table ct2 using {self.stb} tags(2, 3);")
tdSql.execute(f"create table ct3 using {self.stb} tags(3, 4);")
tdSql.query(f"show tables")
tdSql.checkRows(4)
tdLog.info(f"=============== create stream")
tdSql.execute(
f"create stream s0 state_window(cint) from ct0 "
f"stream_options(DELETE_RECALC) "
f"notify('ws://localhost:12345/basic3_s0') on(window_open|window_close) notify_options(notify_history|on_failure_pause) "
f"into "
f"res_ct0_0 (firstts, lastts, cnt_v, sum_v, avg_v) as "
f"select first(_c0), last_row(_c0), count(cint), sum(cint), avg(cint) from ct0 "
f"where _twstart - 10s <= _c0 and _c0 <= _twend "
)
tdSql.execute(
f"create stream s1 state_window(cint) from ct0 "
f"stream_options(DELETE_RECALC) "
f"notify('ws://localhost:12345/basic3_s1') on(window_open|window_close) notify_options(notify_history|on_failure_pause) "
f"into "
f"res_ct0_1 (firstts, lastts, cnt_v, sum_v, avg_v) as "
f"select first(_c0), last_row(_c0), count(cint), sum(cint), avg(cint) from ct0 "
f"where _twstart - 10s <= _c0 and _c0 <= _twend "
)
tdSql.execute(
f"create stream s2 state_window(cint) from ct0 "
f"stream_options(DELETE_RECALC) "
f"notify('ws://localhost:12345/basic3_s2') on(window_open|window_close) notify_options(notify_history|on_failure_pause) "
f"into "
f"res_ct0_2 (firstts, lastts, cnt_v, sum_v, avg_v) as "
f"select first(_c0), last_row(_c0), count(cint), sum(cint), avg(cint) from ct0 "
f"where _twstart - 10s <= _c0 and _c0 <= _twend "
)
tdSql.execute(
f"create stream s3 state_window(cint) from ct0 "
f"stream_options(DELETE_RECALC) "
f"notify('ws://localhost:12345/basic3_s3') on(window_open|window_close) notify_options(notify_history|on_failure_pause) "
f"into "
f"res_ct0_3 (firstts, lastts, cnt_v, sum_v, avg_v) as "
f"select first(_c0), last_row(_c0), count(cint), sum(cint), avg(cint) from ct0 "
f"where _twstart - 10s <= _c0 and _c0 <= _twend "
)
tdSql.execute(
f"create stream s4 state_window(cint) from ct0 "
f"stream_options(DELETE_RECALC) "
f"notify('ws://localhost:12345/basic3_s4') on(window_open|window_close) notify_options(notify_history|on_failure_pause) "
f"into "
f"res_ct0_4 (firstts, lastts, cnt_v, sum_v, avg_v) as "
f"select first(_c0), last_row(_c0), count(cint), sum(cint), avg(cint) from ct0 "
f"where _twstart - 10s <= _c0 and _c0 <= _twend "
)
tdSql.execute(
f"create stream s5 state_window(cint) from ct0 "
f"stream_options(DELETE_RECALC) "
f"notify('ws://localhost:12345/basic3_s5') on(window_open|window_close) notify_options(notify_history|on_failure_pause) "
f"into "
f"res_ct0_5 (firstts, lastts, cnt_v, sum_v, avg_v) as "
f"select first(_c0), last_row(_c0), count(cint), sum(cint), avg(cint) from ct0 "
f"where _twstart - 10s <= _c0 and _c0 <= _twend "
)
tdSql.execute(
f"create stream s6 state_window(cint) from ct0 "
f"stream_options(DELETE_RECALC) "
f"notify('ws://localhost:12345/basic3_s6') on(window_open|window_close) notify_options(notify_history|on_failure_pause) "
f"into "
f"res_ct0_6 (firstts, lastts, cnt_v, sum_v, avg_v) as "
f"select first(_c0), last_row(_c0), count(cint), sum(cint), avg(cint) from ct0 "
f"where _twstart - 10s <= _c0 and _c0 <= _twend "
)
tdSql.execute(
f"create stream s7 state_window(cint) from ct0 "
f"stream_options(DELETE_RECALC) "
f"notify('ws://localhost:12345/basic3_s7') on(window_open|window_close) notify_options(notify_history|on_failure_pause) "
f"into "
f"res_ct0_7 (firstts, lastts, cnt_v, sum_v, avg_v) as "
f"select first(_c0), last_row(_c0), count(cint), sum(cint), avg(cint) from ct0 "
f"where _twstart - 10s <= _c0 and _c0 <= _twend "
)
tdSql.execute(
f"create stream s8 state_window(cint) from ct0 "
f"stream_options(DELETE_RECALC) "
f"notify('ws://localhost:12345/basic3_s8') on(window_open|window_close) notify_options(notify_history|on_failure_pause) "
f"into "
f"res_ct0_8 (firstts, lastts, cnt_v, sum_v, avg_v) as "
f"select first(_c0), last_row(_c0), count(cint), sum(cint), avg(cint) from ct0 "
f"where _twstart - 10s <= _c0 and _c0 <= _twend "
)
tdSql.execute(
f"create stream s9 state_window(cint) from ct0 "
f"stream_options(DELETE_RECALC) "
f"notify('ws://localhost:12345/basic3_s9') on(window_open|window_close) notify_options(notify_history|on_failure_pause) "
f"into "
f"res_ct0_9 (firstts, lastts, cnt_v, sum_v, avg_v) as "
f"select first(_c0), last_row(_c0), count(cint), sum(cint), avg(cint) from ct0 "
f"where _twstart - 10s <= _c0 and _c0 <= _twend "
)
tdSql.execute(
f"create stream s10 state_window(cint) from ct0 "
f"stream_options(DELETE_RECALC) "
f"notify('ws://localhost:12345/basic3_s10') on(window_open|window_close) notify_options(notify_history|on_failure_pause) "
f"into "
f"res_ct0_10 (firstts, lastts, cnt_v, sum_v, avg_v) as "
f"select first(_c0), last_row(_c0), count(cint), sum(cint), avg(cint) from ct0 "
f"where _twstart - 10s <= _c0 and _c0 <= _twend "
)
tdSql.execute(
f"create stream s11 state_window(cint) from ct0 "
f"stream_options(DELETE_RECALC) "
f"notify('ws://localhost:12345/basic3_s11') on(window_open|window_close) notify_options(notify_history|on_failure_pause) "
f"into "
f"res_ct0_11 (firstts, lastts, cnt_v, sum_v, avg_v) as "
f"select first(_c0), last_row(_c0), count(cint), sum(cint), avg(cint) from ct0 "
f"where _twstart - 10s <= _c0 and _c0 <= _twend "
)
tdSql.execute(
f"create stream s12 state_window(cint) from ct0 "
f"stream_options(DELETE_RECALC) "
f"notify('ws://localhost:12345/basic3_s12') on(window_open|window_close) notify_options(notify_history|on_failure_pause) "
f"into "
f"res_ct0_12 (firstts, lastts, cnt_v, sum_v, avg_v) as "
f"select first(_c0), last_row(_c0), count(cint), sum(cint), avg(cint) from ct0 "
f"where _twstart - 10s <= _c0 and _c0 <= _twend "
)
tdSql.execute(
f"create stream s13 state_window(cint) from ct0 "
f"stream_options(DELETE_RECALC) "
f"notify('ws://localhost:12345/basic3_s13') on(window_open|window_close) notify_options(notify_history|on_failure_pause) "
f"into "
f"res_ct0_13 (firstts, lastts, cnt_v, sum_v, avg_v) as "
f"select first(_c0), last_row(_c0), count(cint), sum(cint), avg(cint) from ct0 "
f"where _twstart - 10s <= _c0 and _c0 <= _twend "
)
tdSql.execute(
f"create stream s14 state_window(cint) from ct0 "
f"stream_options(DELETE_RECALC) "
f"notify('ws://localhost:12345/basic3_s14') on(window_open|window_close) notify_options(notify_history) "
f"into "
f"res_ct0_14 (firstts, lastts, cnt_v, sum_v, avg_v) as "
f"select first(_c0), last_row(_c0), count(cint), sum(cint), avg(cint) from ct0 "
f"where _twstart - 10s <= _c0 and _c0 <= _twend "
)
def insert1(self):
tdLog.info(f"=============== insert data into stb")
sqls = [
"insert into ct0 values ('2025-01-01 00:00:00.000', 1, 0, 1.1, 1.1, '1', 3.3333);",
"insert into ct0 values ('2025-01-01 00:00:01.000', 1, 0, 1.1, 1.1, '1', 4.3333);",
"insert into ct0 values ('2025-01-01 00:00:02.000', 1, 0, 1.1, 1.1, '1', 5.3333);",
"insert into ct0 values ('2025-01-01 00:00:03.000', 1, 0, 1.1, 1.1, '1', 6.3333);",
"insert into ct0 values ('2025-01-01 00:00:04.000', 1, 0, 1.1, 1.1, '1', 7.3333);",
"insert into ct0 values ('2025-01-01 00:00:05.000', 1, 0, 1.1, 1.1, '1', 8.3333);",
"insert into ct0 values ('2025-01-01 00:00:06.000', 1, 0, 1.1, 1.1, '1', 9.3333);",
"insert into ct0 values ('2025-01-01 00:00:07.000', 1, 0, 1.1, 1.1, '1', 10.3333);",
"insert into ct0 values ('2025-01-01 00:00:08.000', 1, 0, 1.1, 1.1, '1', 11.3333);",
"insert into ct0 values ('2025-01-01 00:00:09.000', 1, 0, 1.1, 1.1, '1', 12.3333);",
"insert into ct0 values ('2025-01-01 00:00:10.000', 1, 0, 1.1, 1.1, '1', 13.3333);",
]
tdSql.executes(sqls)
tdSql.execute(f"delete from ct0 where _c0 = '2025-01-01 00:00:00.000';")
tdSql.execute(f"insert into ct0 values('2025-01-01 00:00:05.000', 911, 0, 1.1, 1.1, '1', 23.123456);")
def check1(self):
tdLog.info("do check the results")
class Basic4(StreamCheckItem):
def __init__(self):
self.db = "sdb4"
self.stb = "stb"
def create(self):
tdLog.info(f"=============== create database")
tdSql.execute(f"create database {self.db} vgroups 4;")
tdSql.execute(f"use {self.db}")
tdSql.execute(f"create table if not exists {self.stb} (ts timestamp, cint int, cbool bool, cfloat float, cdouble double, cbytes varchar(100), cdecimal decimal(10, 2)) tags (tag1 int, tag2 int);")
tdSql.query(f"show stables")
tdSql.checkRows(1)
tdLog.info(f"=============== create sub table")
tdSql.execute(f"create table ct0 using {self.stb} tags(0, 1);")
tdSql.execute(f"create table ct1 using {self.stb} tags(1, 2);")
tdSql.execute(f"create table ct2 using {self.stb} tags(2, 3);")
tdSql.execute(f"create table ct3 using {self.stb} tags(3, 4);")
tdSql.query(f"show tables")
tdSql.checkRows(4)
tdLog.info(f"=============== create stream")
tdSql.execute(
f"create stream s0 interval(4s) sliding(4s) from ct0 "
f"notify('ws://localhost:12345/basic4_s0') on(window_open|window_close) notify_options(notify_history) "
f"into "
f"res_ct0 (twstart, twend, sum_cdecimal, count_val, min_float, max_double, last_bytes) as "
f"select _twstart wstart, _twend, sum(cdecimal), count(*), min(cfloat), max(cdouble), last(cbytes) from ct0 "
f"where _twstart <= _c0 and _c0 <= _twend "
)
def insert1(self):
tdLog.info(f"=============== insert data into stb")
sqls = [
"insert into ct0 values ('2025-01-01 00:00:00.000', 1, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct0 values ('2025-01-01 00:00:01.000', 1, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct0 values ('2025-01-01 00:00:02.000', 1, 0, 1.1, 3.1, '13', 5.3333);",
"insert into ct0 values ('2025-01-01 00:00:03.000', 1, 0, 1.1, 4.1, '14', 6.3333);",
"insert into ct0 values ('2025-01-01 00:00:04.000', 1, 0, 1.1, 5.1, '15', 7.3333);",
"insert into ct0 values ('2025-01-01 00:00:05.000', 1, 0, 1.1, 6.1, '16', 8.3333);",
"insert into ct0 values ('2025-01-01 00:00:06.000', 1, 0, 1.1, 7.1, '17', 9.3333);",
"insert into ct0 values ('2025-01-01 00:00:07.000', 1, 0, 1.1, 8.1, '18', 10.3333);",
"insert into ct0 values ('2025-01-01 00:00:08.000', 1, 0, 1.1, 9.1, '19', 11.3333);",
"insert into ct0 values ('2025-01-01 00:00:09.000', 1, 0, 1.1, 10.1, '20', 12.3333);",
"insert into ct0 values ('2025-01-01 00:00:10.000', 1, 0, 1.1, 11.1, '21', 13.3333);",
]
tdSql.executes(sqls)
# tdSql.execute(f"delete from ct0 where _c0 = '2025-01-01 00:00:00.000';")
# tdSql.execute(f"insert into ct0 values('2025-01-01 00:00:05.000', 911, 0, 1.1, 1.1, '1', 23.123456);")
def check1(self):
tdLog.info("do check the results")
expect_event(
os.path.join(NOTIFY_RESULT_DIR, "basic4_s0.log"),
streamName="sdb4.s0",
eventType="WINDOW_OPEN",
triggerType="Interval",
windowStart=1735660800000
)
expect_event(
os.path.join(NOTIFY_RESULT_DIR, "basic4_s0.log"),
streamName="sdb4.s0",
eventType="WINDOW_OPEN",
triggerType="Interval",
windowStart=1735660804000
)
expect_event(
os.path.join(NOTIFY_RESULT_DIR, "basic4_s0.log"),
streamName="sdb4.s0",
eventType="WINDOW_OPEN",
triggerType="Interval",
windowStart=1735660808000
)
expect_event(
os.path.join(NOTIFY_RESULT_DIR, "basic4_s0.log"),
streamName="sdb4.s0",
eventType="WINDOW_CLOSE",
triggerType="Interval",
tableName="res_ct0",
windowStart=1735660800000
)
expect_rows(os.path.join(NOTIFY_RESULT_DIR, "basic4_s0.log"),
rows=1,
streamName="sdb4.s0",
eventType="WINDOW_CLOSE",
tableName="res_ct0",
windowStart=1735660800000,
windowEnd=1735660804000)
expect_rows(os.path.join(NOTIFY_RESULT_DIR, "basic4_s0.log"),
rows=1,
streamName="sdb4.s0",
eventType="WINDOW_CLOSE",
tableName="res_ct0",
windowStart=1735660804000,
windowEnd=1735660808000)
class Basic5(StreamCheckItem):
def __init__(self):
self.db = "sdb5"
self.stb = "stb"
def create(self):
tdLog.info(f"=============== create database")
tdSql.execute(f"create database {self.db} vgroups 4;")
tdSql.execute(f"use {self.db}")
tdSql.execute(f"create table if not exists {self.stb} (ts timestamp, cint int, cbool bool, cfloat float, cdouble double, cbytes varchar(100), cdecimal decimal(10, 2)) tags (tag1 int, tag2 int);")
tdSql.query(f"show stables")
tdSql.checkRows(1)
tdLog.info(f"=============== create sub table")
tdSql.execute(f"create table ct0 using {self.stb} tags(0, 1);")
tdSql.execute(f"create table ct1 using {self.stb} tags(1, 2);")
tdSql.execute(f"create table ct2 using {self.stb} tags(2, 3);")
tdSql.execute(f"create table ct3 using {self.stb} tags(3, 4);")
tdSql.query(f"show tables")
tdSql.checkRows(4)
tdLog.info(f"=============== create stream")
tdSql.execute(
f"create stream s0 interval(4s) sliding(4s) from ct0 "
f"notify('ws://localhost:12345/basic5_s0') on(window_open|window_close) notify_options(notify_history) "
f"into "
f"res_ct0 (twstart, twend, count_val, min_float, max_double, last_bytes) as "
f"select _twstart wstart, _twend, count(*), min(cfloat), max(cdouble), last(cbytes) from ct0 "
f"where _twstart <= _c0 and _c0 <= _twend "
)
def insert1(self):
tdLog.info(f"=============== insert data into stb")
sqls = [
"insert into ct0 values ('2025-01-01 00:00:00.000', 1, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct0 values ('2025-01-01 00:00:01.000', 1, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct0 values ('2025-01-01 00:00:02.000', 1, 0, 1.1, 3.1, '13', 5.3333);",
"insert into ct0 values ('2025-01-01 00:00:03.000', 1, 0, 1.1, 4.1, '14', 6.3333);",
"insert into ct0 values ('2025-01-01 00:00:04.000', 1, 0, 1.1, 5.1, '15', 7.3333);",
"insert into ct0 values ('2025-01-01 00:00:05.000', 1, 0, 1.1, 6.1, '16', 8.3333);",
"insert into ct0 values ('2025-01-01 00:00:06.000', 1, 0, 1.1, 7.1, '17', 9.3333);",
"insert into ct0 values ('2025-01-01 00:00:07.000', 1, 0, 1.1, 8.1, '18', 10.3333);",
"insert into ct0 values ('2025-01-01 00:00:08.000', 1, 0, 1.1, 9.1, '19', 11.3333);",
"insert into ct0 values ('2025-01-01 00:00:09.000', 1, 0, 1.1, 10.1, '20', 12.3333);",
"insert into ct0 values ('2025-01-01 00:00:10.000', 1, 0, 1.1, 11.1, '21', 13.3333);",
]
tdSql.executes(sqls)
def check1(self):
tdLog.info("do check the results of basic5")
expect_event(
os.path.join(NOTIFY_RESULT_DIR, "basic5_s0.log"),
streamName="sdb5.s0",
eventType="WINDOW_OPEN",
triggerType="Interval",
windowStart=1735660800000
)
expect_event(
os.path.join(NOTIFY_RESULT_DIR, "basic5_s0.log"),
streamName="sdb5.s0",
eventType="WINDOW_OPEN",
triggerType="Interval",
windowStart=1735660804000
)
expect_event(
os.path.join(NOTIFY_RESULT_DIR, "basic5_s0.log"),
streamName="sdb5.s0",
eventType="WINDOW_OPEN",
triggerType="Interval",
windowStart=1735660808000
)
expect_event(
os.path.join(NOTIFY_RESULT_DIR, "basic5_s0.log"),
streamName="sdb5.s0",
eventType="WINDOW_CLOSE",
triggerType="Interval",
tableName="res_ct0",
windowStart=1735660800000
)
expect_rows(os.path.join(NOTIFY_RESULT_DIR, "basic5_s0.log"),
rows=1,
streamName="sdb5.s0",
eventType="WINDOW_CLOSE",
tableName="res_ct0",
windowStart=1735660800000,
windowEnd=1735660804000)
expect_rows(os.path.join(NOTIFY_RESULT_DIR, "basic5_s0.log"),
rows=1,
streamName="sdb5.s0",
eventType="WINDOW_CLOSE",
tableName="res_ct0",
windowStart=1735660804000,
windowEnd=1735660808000)
class Basic6(StreamCheckItem):
def __init__(self):
self.db = "sdb6"
self.stb = "stb"
def create(self):
tdLog.info(f"=============== create database")
tdSql.execute(f"create database {self.db} vgroups 4;")
tdSql.execute(f"use {self.db}")
tdSql.execute(f"create table if not exists {self.stb} (ts timestamp, cint int, cbool bool, cfloat float, cdouble double, cbytes varchar(100), cdecimal decimal(10, 2)) tags (tag1 int, tag2 int);")
tdSql.query(f"show stables")
tdSql.checkRows(1)
tdLog.info(f"=============== create sub table")
tdSql.execute(f"create table ct0 using {self.stb} tags(0, 1);")
tdSql.execute(f"create table ct1 using {self.stb} tags(1, 2);")
tdSql.execute(f"create table ct2 using {self.stb} tags(2, 3);")
tdSql.execute(f"create table ct3 using {self.stb} tags(3, 4);")
tdSql.query(f"show tables")
tdSql.checkRows(4)
tdLog.info(f"=============== create stream")
tdSql.execute(
f"create stream s0 session(ts, 1100a) from ct0 "
f"notify('ws://localhost:12345/basic6_s0') on(window_open|window_close) notify_options(notify_history) "
f"into "
f"res_ct0 (twstart, twend, count_val, min_float, max_double, last_bytes) as "
f"select _twstart wstart, _twend, count(*), min(cfloat), max(cdouble), last(cbytes) from ct0 "
f"where _twstart <= _c0 and _c0 <= _twend "
)
tdSql.execute(
f"create stream s1 period(1s) "
f"notify('ws://localhost:12345/basic6_s1') on(window_open|window_close) notify_options(notify_history) "
f"into "
f"res_ct0_period (twstart, count_val, min_float, max_double, last_bytes) as "
f"select cast(_tlocaltime/1000000 as timestamp) ts, count(*), min(cfloat), max(cdouble), last(cbytes) from ct0 "
f"group by tbname "
)
tdSql.execute(
f"create stream s2 event_window(start with cdouble < 4 or cdecimal >8 end with cast(cbytes as int) > 13) from ct0 "
f"notify('ws://localhost:12345/basic6_s2') on(window_open|window_close) notify_options(notify_history) "
f"into "
f"res_ct0_event (ts, endts, count_val, min_float, max_double, last_bytes) as "
f"select _twstart ts, _twend, count(*), min(cfloat), max(cdouble), last(cbytes) from ct0 "
f"where _c0>= _twstart and _c0 <= _twend "
)
tdSql.execute(
f"create stream s3 count_window(2) from ct0 "
f"notify('ws://localhost:12345/basic6_s3') on(window_open|window_close) notify_options(notify_history) "
f"into "
f"res_ct0_count (ts, endts, count_val, min_float, max_double, last_bytes) as "
f"select _twstart ts, _twend, count(*), min(cfloat), max(cdouble), last(cbytes) from ct0 "
f"where _c0>= _twstart and _c0 <= _twend "
)
tdSql.execute(
f"create stream s5 period(20a) from stb partition by tbname, tag1 "
f"notify('ws://localhost:12345/basic6_s5') on(window_open|window_close) notify_options(notify_history) "
f"into "
f"res_ct0_period_stb (ts, xint, xbool, xfloat, xdouble, xbytes, xdecimal) as "
f"select ts, cint, cbool, cfloat, cdouble, cbytes, cdecimal from stb "
f"partition by tbname, tag2, tag1 "
)
def insert1(self):
tdLog.info(f"=============== insert data into stb")
sqls = [
"insert into ct0 values ('2025-01-01 00:00:00', 1, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct0 values ('2025-01-01 00:00:01', 1, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct0 values ('2025-01-01 00:00:02', 1, 0, 1.1, 3.1, '13', 5.3333);",
"insert into ct0 values ('2025-01-01 00:00:03', 1, 0, 1.1, 4.1, '14', 6.3333);",
"insert into ct0 values ('2025-01-01 00:00:04', 1, 0, 1.1, 5.1, '15', 7.3333);",
"insert into ct0 values ('2025-01-01 00:00:15', 1, 0, 1.1, 6.1, '16', 8.3333);",
"insert into ct0 values ('2025-01-01 00:00:26', 1, 0, 1.1, 7.1, '17', 9.3333);",
"insert into ct0 values ('2025-01-01 00:00:27', 1, 0, 1.1, 8.1, '18', 10.3333);",
"insert into ct0 values ('2025-01-01 00:00:28', 1, 0, 1.1, 9.1, '19', 11.3333);",
"insert into ct0 values ('2025-01-01 00:00:29', 1, 0, 1.1, 10.1, '20', 12.3333);",
"insert into ct0 values ('2025-01-01 00:00:40', 1, 0, 1.1, 11.1, '21', 13.3333);",
"insert into ct1 values ('2025-01-01 00:00:00', 0, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct1 values ('2025-01-01 00:00:01', 0, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct1 values ('2025-01-01 00:00:02', 1, 1, 1.1, 3.1, '13', 5.3333);",
"insert into ct1 values ('2025-01-01 00:00:03', 1, 1, 1.1, 4.1, '14', 6.3333);",
"insert into ct1 values ('2025-01-01 00:00:04', 1, 1, 1.1, 5.1, '15', 7.3333);",
"insert into ct1 values ('2025-01-01 00:00:05', 2, 2, 1.1, 6.1, '16', 8.3333);",
"insert into ct1 values ('2025-01-01 00:00:06', 2, 2, 1.1, 7.1, '17', 9.3333);",
"insert into ct1 values ('2025-01-01 00:00:07', 2, 2, 1.1, 8.1, '18', 10.333);",
"insert into ct1 values ('2025-01-01 00:00:08', 2, 2, 1.1, 9.1, '19', 11.333);",
"insert into ct1 values ('2025-01-01 00:00:09', 3, 3, 1.1, 10.1, '20', 12.33);",
"insert into ct2 values ('2025-01-01 00:00:00', 0, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct2 values ('2025-01-01 00:00:01', 0, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct2 values ('2025-01-01 00:00:02', 1, 1, 1.1, 3.1, '13', 5.3333);",
"insert into ct2 values ('2025-01-01 00:00:03', 1, 1, 1.1, 4.1, '14', 6.3333);",
"insert into ct2 values ('2025-01-01 00:00:04', 1, 1, 1.1, 5.1, '15', 7.3333);",
"insert into ct2 values ('2025-01-01 00:00:05', 2, 2, 1.1, 6.1, '16', 8.3333);",
"insert into ct2 values ('2025-01-01 00:00:06', 2, 2, 1.1, 7.1, '17', 9.3333);",
"insert into ct2 values ('2025-01-01 00:00:07', 2, 2, 1.1, 8.1, '18', 10.333);",
"insert into ct2 values ('2025-01-01 00:00:08', 2, 2, 1.1, 9.1, '19', 11.333);",
"insert into ct2 values ('2025-01-01 00:00:09', 3, 3, 1.1, 10.1, '20', 12.33);",
"insert into ct3 values ('2025-01-01 00:00:00', 0, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct3 values ('2025-01-01 00:00:01', 0, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct3 values ('2025-01-01 00:00:02', 1, 1, 1.1, 3.1, '13', 5.3333);",
"insert into ct3 values ('2025-01-01 00:00:03', 1, 1, 1.1, 4.1, '14', 6.3333);",
"insert into ct3 values ('2025-01-01 00:00:04', 1, 1, 1.1, 5.1, '15', 7.3333);",
"insert into ct3 values ('2025-01-01 00:00:05', 2, 2, 1.1, 6.1, '16', 8.3333);",
"insert into ct3 values ('2025-01-01 00:00:06', 2, 2, 1.1, 7.1, '17', 9.3333);",
"insert into ct3 values ('2025-01-01 00:00:07', 2, 2, 1.1, 8.1, '18', 10.333);",
"insert into ct3 values ('2025-01-01 00:00:08', 2, 2, 1.1, 9.1, '19', 11.333);",
"insert into ct3 values ('2025-01-01 00:00:09', 3, 3, 1.1, 10.1, '20', 12.33);",
]
tdSql.executes(sqls)
def check1(self):
tdLog.info("do check the results")
tdSql.checkResultsByFunc(
sql=f"select * from {self.db}.res_ct0",
func=lambda: tdSql.getRows() == 3
)
class Basic7(StreamCheckItem):
def __init__(self):
self.db = "sdb7"
self.stb = "stb"
def create(self):
tdLog.info(f"=============== create database")
tdSql.execute(f"create database {self.db} vgroups 4;")
tdSql.execute(f"use {self.db}")
tdSql.execute(f"create table if not exists {self.stb} (ts timestamp, cint int, cbool bool, cfloat float, cdouble double, cbytes varchar(100), cdecimal decimal(10, 2)) tags (tag1 int, tag2 int);")
tdSql.query(f"show stables")
tdSql.checkRows(1)
tdLog.info(f"=============== create sub table")
tdSql.execute(f"create table ct0 using {self.stb} tags(0, 1);")
tdSql.execute(f"create table ct1 using {self.stb} tags(1, 2);")
tdSql.execute(f"create table ct2 using {self.stb} tags(2, 3);")
tdSql.execute(f"create table ct3 using {self.stb} tags(3, 4);")
tdSql.query(f"show tables")
tdSql.checkRows(4)
tdSql.execute(
f"create vtable vtb_1 (ts timestamp, col_1 int from ct0.cint, col_2 int from ct1.cint, col_3 double from ct2.cdouble)")
tdSql.execute(
f"create vtable vtb_2 (ts timestamp, col_1 int from ct2.cint, col_2 int from ct3.cint, col_3 double from ct0.cdouble)")
tdLog.info(f"=============== create stream")
tdSql.execute(
f"create stream s0 session(ts, 1300a) from ct0 "
f"notify('ws://localhost:12345/basic7_s0') on(window_open|window_close) notify_options(notify_history) "
f"into "
f"res_vtb (twstart, twend, count_val, sum_int, min_float, max_double, last_bytes) as "
f"select _twstart wstart, _twend, count(*), sum(vtb_1.col_1), min(vtb_2.col_2), max(vtb_1.col_3), last(vtb_2.col_3) "
f"from vtb_1, vtb_2 "
f"where _twstart <= _c0 and _c0 <= _twend and "
f"vtb_1.ts = vtb_2.ts "
)
def insert1(self):
tdLog.info(f"=============== insert data into stb")
sqls = [
"insert into ct0 values ('2025-01-01 00:00:00.000', 1, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct0 values ('2025-01-01 00:00:01.000', 1, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct0 values ('2025-01-01 00:00:02.000', 1, 0, 1.1, 3.1, '13', 5.3333);",
"insert into ct0 values ('2025-01-01 00:00:03.000', 1, 0, 1.1, 4.1, '14', 6.3333);",
"insert into ct0 values ('2025-01-01 00:00:04.000', 1, 0, 1.1, 5.1, '15', 7.3333);",
"insert into ct0 values ('2025-01-01 00:00:15.000', 1, 0, 1.1, 6.1, '16', 8.3333);",
"insert into ct0 values ('2025-01-01 00:00:26.000', 1, 0, 1.1, 7.1, '17', 9.3333);",
"insert into ct0 values ('2025-01-01 00:00:27.000', 1, 0, 1.1, 8.1, '18', 10.3333);",
"insert into ct0 values ('2025-01-01 00:00:28.000', 1, 0, 1.1, 9.1, '19', 11.3333);",
"insert into ct0 values ('2025-01-01 00:00:29.000', 1, 0, 1.1, 10.1, '20', 12.3333);",
"insert into ct0 values ('2025-01-01 00:00:40.000', 1, 0, 1.1, 11.1, '21', 13.3333);",
"insert into ct1 values ('2025-01-01 00:00:00', 0, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct1 values ('2025-01-01 00:00:01', 0, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct1 values ('2025-01-01 00:00:02', 1, 1, 1.1, 3.1, '13', 5.3333);",
"insert into ct1 values ('2025-01-01 00:00:03', 1, 1, 1.1, 4.1, '14', 6.3333);",
"insert into ct1 values ('2025-01-01 00:00:04', 1, 1, 1.1, 5.1, '15', 7.3333);",
"insert into ct1 values ('2025-01-01 00:00:15', 2, 2, 1.1, 6.1, '16', 8.3333);",
"insert into ct1 values ('2025-01-01 00:00:26', 2, 2, 1.1, 7.1, '17', 9.3333);",
"insert into ct1 values ('2025-01-01 00:00:27', 2, 2, 1.1, 8.1, '18', 10.333);",
"insert into ct1 values ('2025-01-01 00:00:28', 2, 2, 1.1, 9.1, '19', 11.333);",
"insert into ct1 values ('2025-01-01 00:00:29', 3, 3, 1.1, 10.1, '20', 12.33);",
"insert into ct2 values ('2025-01-01 00:00:00', 0, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct2 values ('2025-01-01 00:00:01', 0, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct2 values ('2025-01-01 00:00:02', 1, 1, 1.1, 3.1, '13', 5.3333);",
"insert into ct2 values ('2025-01-01 00:00:03', 1, 1, 1.1, 4.1, '14', 6.3333);",
"insert into ct2 values ('2025-01-01 00:00:04', 1, 1, 1.1, 5.1, '15', 7.3333);",
"insert into ct2 values ('2025-01-01 00:00:15', 2, 2, 1.1, 6.1, '16', 8.3333);",
"insert into ct2 values ('2025-01-01 00:00:26', 2, 2, 1.1, 7.1, '17', 9.3333);",
"insert into ct2 values ('2025-01-01 00:00:27', 2, 2, 1.1, 8.1, '18', 10.333);",
"insert into ct2 values ('2025-01-01 00:00:28', 2, 2, 1.1, 9.1, '19', 11.333);",
"insert into ct2 values ('2025-01-01 00:00:29', 3, 3, 1.1, 10.1, '20', 12.33);",
"insert into ct3 values ('2025-01-01 00:00:00', 0, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct3 values ('2025-01-01 00:00:01', 0, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct3 values ('2025-01-01 00:00:02', 1, 1, 1.1, 3.1, '13', 5.3333);",
"insert into ct3 values ('2025-01-01 00:00:03', 1, 1, 1.1, 4.1, '14', 6.3333);",
"insert into ct3 values ('2025-01-01 00:00:04', 1, 1, 1.1, 5.1, '15', 7.3333);",
"insert into ct3 values ('2025-01-01 00:00:15', 2, 2, 1.1, 6.1, '16', 8.3333);",
"insert into ct3 values ('2025-01-01 00:00:26', 2, 2, 1.1, 7.1, '17', 9.3333);",
"insert into ct3 values ('2025-01-01 00:00:27', 2, 2, 1.1, 8.1, '18', 10.333);",
"insert into ct3 values ('2025-01-01 00:00:28', 2, 2, 1.1, 9.1, '19', 11.333);",
"insert into ct3 values ('2025-01-01 00:00:29', 3, 3, 1.1, 10.1, '20', 12.33);",
]
tdSql.executes(sqls)
def check1(self):
tdLog.info("do check the results of basic7")
tdSql.checkResultsByFunc(
sql=f"select * from {self.db}.res_vtb",
func=lambda: tdSql.getRows() == 3
)
expect_event(
os.path.join(NOTIFY_RESULT_DIR, "basic7_s0.log"),
streamName="sdb7.s0",
eventType="WINDOW_OPEN",
triggerType="Session",
windowStart=1735660800000
)
expect_event(
os.path.join(NOTIFY_RESULT_DIR, "basic7_s0.log"),
streamName="sdb7.s0",
eventType="WINDOW_OPEN",
triggerType="Session",
windowStart=1735660815000
)
expect_event(
os.path.join(NOTIFY_RESULT_DIR, "basic7_s0.log"),
streamName="sdb7.s0",
eventType="WINDOW_OPEN",
triggerType="Session",
windowStart=1735660840000
)
expect_event(
os.path.join(NOTIFY_RESULT_DIR, "basic7_s0.log"),
streamName="sdb7.s0",
eventType="WINDOW_OPEN",
triggerType="Session",
windowStart=1735660826000
)
expect_rows(os.path.join(NOTIFY_RESULT_DIR, "basic7_s0.log"),
rows=1,
streamName="sdb7.s0",
eventType="WINDOW_CLOSE",
tableName="res_vtb",
windowStart=1735660800000,
windowEnd=1735660804000)
expect_rows(os.path.join(NOTIFY_RESULT_DIR, "basic7_s0.log"),
rows=1,
streamName="sdb7.s0",
eventType="WINDOW_CLOSE",
tableName="res_vtb",
windowStart=1735660815000,
windowEnd=1735660815000)
expect_rows(os.path.join(NOTIFY_RESULT_DIR, "basic7_s0.log"),
rows=1,
streamName="sdb7.s0",
eventType="WINDOW_CLOSE",
tableName="res_vtb",
windowStart=1735660826000,
windowEnd=1735660829000)
class Basic8(StreamCheckItem):
def __init__(self):
self.db = "sdb8"
self.stb = "stb"
def create(self):
tdLog.info(f"=============== create database")
tdSql.execute(f"create database {self.db} vgroups 4;")
tdSql.execute(f"use {self.db}")
tdSql.execute(f"create table if not exists {self.stb} (ts timestamp, cint int, cbool bool, cfloat float, cdouble double, cbytes varchar(100), cdecimal decimal(10, 2)) tags (tag1 int, tag2 int);")
tdSql.query(f"show stables")
tdSql.checkRows(1)
tdLog.info(f"=============== create sub table")
tdSql.execute(f"create table ct0 using {self.stb} tags(0, 1);")
tdSql.execute(f"create table ct1 using {self.stb} tags(1, 2);")
tdSql.execute(f"create table ct2 using {self.stb} tags(2, 3);")
tdSql.execute(f"create table ct3 using {self.stb} tags(3, 4);")
tdSql.query(f"show tables")
tdSql.checkRows(4)
tdLog.info(f"=============== create stream")
tdSql.execute(
f"create stream s3 count_window(2) from ct0 stream_options(CALC_NOTIFY_ONLY ) "
f"notify('ws://localhost:12345/basic8_s3') on(window_open|window_close) notify_options(notify_history) "
f"into "
f"res_ct0_count (ts, endts, count_val, min_float, max_double, last_bytes) as "
f"select _twstart ts, _twend, count(*), min(cfloat), max(cdouble), last(cbytes) from ct0 "
f"where _c0>= _twstart and _c0 <= _twend "
)
def insert1(self):
tdLog.info(f"=============== insert data into stb")
sqls = [
"insert into ct0 values ('2025-01-01 00:00:00.000', 1, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct0 values ('2025-01-01 00:00:01.000', 1, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct0 values ('2025-01-01 00:00:02.000', 1, 0, 1.1, 3.1, '13', 5.3333);",
"insert into ct0 values ('2025-01-01 00:00:03.000', 1, 0, 1.1, 4.1, '14', 6.3333);",
"insert into ct0 values ('2025-01-01 00:00:04.000', 1, 0, 1.1, 5.1, '15', 7.3333);",
"insert into ct0 values ('2025-01-01 00:00:15.000', 1, 0, 1.1, 6.1, '16', 8.3333);",
"insert into ct0 values ('2025-01-01 00:00:26.000', 1, 0, 1.1, 7.1, '17', 9.3333);",
"insert into ct0 values ('2025-01-01 00:00:27.000', 1, 0, 1.1, 8.1, '18', 10.3333);",
"insert into ct0 values ('2025-01-01 00:00:28.000', 1, 0, 1.1, 9.1, '19', 11.3333);",
"insert into ct0 values ('2025-01-01 00:00:29.000', 1, 0, 1.1, 10.1, '20', 12.3333);",
"insert into ct0 values ('2025-01-01 00:00:40.000', 1, 0, 1.1, 11.1, '21', 13.3333);",
"insert into ct1 values ('2025-01-01 00:00:00', 0, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct1 values ('2025-01-01 00:00:01', 0, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct1 values ('2025-01-01 00:00:02', 1, 1, 1.1, 3.1, '13', 5.3333);",
"insert into ct1 values ('2025-01-01 00:00:03', 1, 1, 1.1, 4.1, '14', 6.3333);",
"insert into ct1 values ('2025-01-01 00:00:04', 1, 1, 1.1, 5.1, '15', 7.3333);",
"insert into ct1 values ('2025-01-01 00:00:05', 2, 2, 1.1, 6.1, '16', 8.3333);",
"insert into ct1 values ('2025-01-01 00:00:06', 2, 2, 1.1, 7.1, '17', 9.3333);",
"insert into ct1 values ('2025-01-01 00:00:07', 2, 2, 1.1, 8.1, '18', 10.333);",
"insert into ct1 values ('2025-01-01 00:00:08', 2, 2, 1.1, 9.1, '19', 11.333);",
"insert into ct1 values ('2025-01-01 00:00:09', 3, 3, 1.1, 10.1, '20', 12.33);",
"insert into ct2 values ('2025-01-01 00:00:00', 0, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct2 values ('2025-01-01 00:00:01', 0, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct2 values ('2025-01-01 00:00:02', 1, 1, 1.1, 3.1, '13', 5.3333);",
"insert into ct2 values ('2025-01-01 00:00:03', 1, 1, 1.1, 4.1, '14', 6.3333);",
"insert into ct2 values ('2025-01-01 00:00:04', 1, 1, 1.1, 5.1, '15', 7.3333);",
"insert into ct2 values ('2025-01-01 00:00:05', 2, 2, 1.1, 6.1, '16', 8.3333);",
"insert into ct2 values ('2025-01-01 00:00:06', 2, 2, 1.1, 7.1, '17', 9.3333);",
"insert into ct2 values ('2025-01-01 00:00:07', 2, 2, 1.1, 8.1, '18', 10.333);",
"insert into ct2 values ('2025-01-01 00:00:08', 2, 2, 1.1, 9.1, '19', 11.333);",
"insert into ct2 values ('2025-01-01 00:00:09', 3, 3, 1.1, 10.1, '20', 12.33);",
"insert into ct3 values ('2025-01-01 00:00:00', 0, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct3 values ('2025-01-01 00:00:01', 0, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct3 values ('2025-01-01 00:00:02', 1, 1, 1.1, 3.1, '13', 5.3333);",
"insert into ct3 values ('2025-01-01 00:00:03', 1, 1, 1.1, 4.1, '14', 6.3333);",
"insert into ct3 values ('2025-01-01 00:00:04', 1, 1, 1.1, 5.1, '15', 7.3333);",
"insert into ct3 values ('2025-01-01 00:00:05', 2, 2, 1.1, 6.1, '16', 8.3333);",
"insert into ct3 values ('2025-01-01 00:00:06', 2, 2, 1.1, 7.1, '17', 9.3333);",
"insert into ct3 values ('2025-01-01 00:00:07', 2, 2, 1.1, 8.1, '18', 10.333);",
"insert into ct3 values ('2025-01-01 00:00:08', 2, 2, 1.1, 9.1, '19', 11.333);",
"insert into ct3 values ('2025-01-01 00:00:09', 3, 3, 1.1, 10.1, '20', 12.33);",
]
tdSql.executes(sqls)
def check1(self):
tdLog.info("do check the results")
tdSql.checkResultsByFunc(
sql=f"select * from {self.db}.res_ct0",
func=lambda: tdSql.getRows() == 0
)
class Basic9(StreamCheckItem):
def __init__(self):
self.db = "sdb9"
self.stb = "stb"
def create(self):
tdLog.info(f"=============== create database")
tdSql.execute(f"create database {self.db} vgroups 4;")
tdSql.execute(f"use {self.db}")
tdSql.execute(f"create table if not exists {self.stb} (ts timestamp, cint int, cbool bool, cfloat float, cdouble double, cbytes varchar(100), cdecimal decimal(10, 2)) tags (tag1 int, tag2 int);")
tdSql.query(f"show stables")
tdSql.checkRows(1)
tdLog.info(f"=============== create sub table")
tdSql.execute(f"create table ct0 using {self.stb} tags(0, 1);")
tdSql.execute(f"create table ct1 using {self.stb} tags(1, 2);")
tdSql.execute(f"create table ct2 using {self.stb} tags(2, 3);")
tdSql.execute(f"create table ct3 using {self.stb} tags(3, 4);")
tdSql.query(f"show tables")
tdSql.checkRows(4)
self.insert_history()
time.sleep(3)
tdLog.info(f"=============== create stream")
tdSql.execute(
f"create stream s3 session(ts, 1500a) from ct0 stream_options(FILL_HISTORY) "
f"notify('ws://localhost:12345/basic9_s3') on(window_open|window_close) notify_options(notify_history) "
f"into "
f"res_ct0 (ts, endts, current, count_val, min_float, max_double, last_bytes) as "
f"select _twstart ts, _twend, cast(_tlocaltime/1000000 as timestamp) localtime, count(*), min(cfloat), max(cdouble), last(cbytes) from ct0 "
f"where _c0>= _twstart and _c0 <= _twend "
)
def insert1(self):
time.sleep(5)
tdLog.info(f"=============== insert data into stb")
sqls = [
"insert into ct0 values ('2025-01-01 00:01:00', 1, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct0 values ('2025-01-01 00:01:01', 1, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct0 values ('2025-01-01 00:01:02', 1, 0, 1.1, 3.1, '13', 5.3333);",
"insert into ct0 values ('2025-01-01 00:01:03', 1, 0, 1.1, 4.1, '14', 6.3333);",
"insert into ct0 values ('2025-01-01 00:01:04', 1, 0, 1.1, 5.1, '15', 7.3333);",
"insert into ct0 values ('2025-01-01 00:01:15', 1, 0, 1.1, 6.1, '16', 8.3333);",
"insert into ct0 values ('2025-01-01 00:01:26', 1, 0, 1.1, 7.1, '17', 9.3333);",
"insert into ct0 values ('2025-01-01 00:01:27', 1, 0, 1.1, 8.1, '18', 10.3333);",
"insert into ct0 values ('2025-01-01 00:01:28', 1, 0, 1.1, 9.1, '19', 11.3333);",
"insert into ct0 values ('2025-01-01 00:01:29', 1, 0, 1.1, 10.1, '20', 12.3333);",
"insert into ct0 values ('2025-01-01 00:01:40', 1, 0, 1.1, 11.1, '21', 13.3333);",
"insert into ct1 values ('2025-01-01 00:02:00', 0, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct1 values ('2025-01-01 00:02:01', 0, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct1 values ('2025-01-01 00:02:02', 1, 1, 1.1, 3.1, '13', 5.3333);",
"insert into ct1 values ('2025-01-01 00:02:03', 1, 1, 1.1, 4.1, '14', 6.3333);",
"insert into ct1 values ('2025-01-01 00:02:04', 1, 1, 1.1, 5.1, '15', 7.3333);",
"insert into ct1 values ('2025-01-01 00:02:05', 2, 2, 1.1, 6.1, '16', 8.3333);",
"insert into ct1 values ('2025-01-01 00:02:06', 2, 2, 1.1, 7.1, '17', 9.3333);",
"insert into ct1 values ('2025-01-01 00:02:07', 2, 2, 1.1, 8.1, '18', 10.333);",
"insert into ct1 values ('2025-01-01 00:02:08', 2, 2, 1.1, 9.1, '19', 11.333);",
"insert into ct1 values ('2025-01-01 00:02:09', 3, 3, 1.1, 10.1, '20', 12.33);",
"insert into ct2 values ('2025-01-01 00:03:00', 0, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct2 values ('2025-01-01 00:03:01', 0, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct2 values ('2025-01-01 00:03:02', 1, 1, 1.1, 3.1, '13', 5.3333);",
"insert into ct2 values ('2025-01-01 00:03:03', 1, 1, 1.1, 4.1, '14', 6.3333);",
"insert into ct2 values ('2025-01-01 00:03:04', 1, 1, 1.1, 5.1, '15', 7.3333);",
"insert into ct2 values ('2025-01-01 00:03:05', 2, 2, 1.1, 6.1, '16', 8.3333);",
"insert into ct2 values ('2025-01-01 00:03:06', 2, 2, 1.1, 7.1, '17', 9.3333);",
"insert into ct2 values ('2025-01-01 00:03:07', 2, 2, 1.1, 8.1, '18', 10.333);",
"insert into ct2 values ('2025-01-01 00:03:08', 2, 2, 1.1, 9.1, '19', 11.333);",
"insert into ct2 values ('2025-01-01 00:03:09', 3, 3, 1.1, 10.1, '20', 12.33);",
"insert into ct3 values ('2025-01-01 00:04:00', 0, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct3 values ('2025-01-01 00:04:01', 0, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct3 values ('2025-01-01 00:04:02', 1, 1, 1.1, 3.1, '13', 5.3333);",
"insert into ct3 values ('2025-01-01 00:04:03', 1, 1, 1.1, 4.1, '14', 6.3333);",
"insert into ct3 values ('2025-01-01 00:04:04', 1, 1, 1.1, 5.1, '15', 7.3333);",
"insert into ct3 values ('2025-01-01 00:04:05', 2, 2, 1.1, 6.1, '16', 8.3333);",
"insert into ct3 values ('2025-01-01 00:04:06', 2, 2, 1.1, 7.1, '17', 9.3333);",
"insert into ct3 values ('2025-01-01 00:04:07', 2, 2, 1.1, 8.1, '18', 10.333);",
"insert into ct3 values ('2025-01-01 00:04:08', 2, 2, 1.1, 9.1, '19', 11.333);",
"insert into ct3 values ('2025-01-01 00:04:09', 3, 3, 1.1, 10.1, '20', 12.33);",
]
tdSql.executes(sqls)
def insert_history(self):
sqls = [
"insert into ct0 values ('2025-01-01 00:00:00', 1, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct0 values ('2025-01-01 00:00:01', 1, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct0 values ('2025-01-01 00:00:02', 1, 0, 1.1, 3.1, '13', 5.3333);",
"insert into ct0 values ('2025-01-01 00:00:03', 1, 0, 1.1, 4.1, '14', 6.3333);",
"insert into ct0 values ('2025-01-01 00:00:04', 1, 0, 1.1, 5.1, '15', 7.3333);",
"insert into ct0 values ('2025-01-01 00:00:15', 1, 0, 1.1, 6.1, '16', 8.3333);",
"insert into ct0 values ('2025-01-01 00:00:26', 1, 0, 1.1, 7.1, '17', 9.3333);",
"insert into ct0 values ('2025-01-01 00:00:27', 1, 0, 1.1, 8.1, '18', 10.3333);",
"insert into ct0 values ('2025-01-01 00:00:28', 1, 0, 1.1, 9.1, '19', 11.3333);",
"insert into ct0 values ('2025-01-01 00:00:29', 1, 0, 1.1, 10.1, '20', 12.3333);",
"insert into ct0 values ('2025-01-01 00:00:40', 1, 0, 1.1, 11.1, '21', 13.3333);",
"insert into ct0 values ('2025-01-01 00:01:41', 2, 9, 2.1, 211.1, '31', 14.3333);",
"insert into ct0 values ('2025-01-01 00:01:44', 2, 9, 2.1, 211.1, '31', 14.3333);",
"insert into ct1 values ('2025-01-01 00:00:00', 0, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct1 values ('2025-01-01 00:00:01', 0, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct1 values ('2025-01-01 00:00:02', 1, 1, 1.1, 3.1, '13', 5.3333);",
"insert into ct1 values ('2025-01-01 00:00:03', 1, 1, 1.1, 4.1, '14', 6.3333);",
"insert into ct1 values ('2025-01-01 00:00:04', 1, 1, 1.1, 5.1, '15', 7.3333);",
"insert into ct1 values ('2025-01-01 00:00:05', 2, 2, 1.1, 6.1, '16', 8.3333);",
"insert into ct1 values ('2025-01-01 00:00:06', 2, 2, 1.1, 7.1, '17', 9.3333);",
"insert into ct1 values ('2025-01-01 00:00:07', 2, 2, 1.1, 8.1, '18', 10.333);",
"insert into ct1 values ('2025-01-01 00:00:08', 2, 2, 1.1, 9.1, '19', 11.333);",
"insert into ct1 values ('2025-01-01 00:00:09', 3, 3, 1.1, 10.1, '20', 12.33);",
"insert into ct2 values ('2025-01-01 00:00:00', 0, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct2 values ('2025-01-01 00:00:01', 0, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct2 values ('2025-01-01 00:00:02', 1, 1, 1.1, 3.1, '13', 5.3333);",
"insert into ct2 values ('2025-01-01 00:00:03', 1, 1, 1.1, 4.1, '14', 6.3333);",
"insert into ct2 values ('2025-01-01 00:00:04', 1, 1, 1.1, 5.1, '15', 7.3333);",
"insert into ct2 values ('2025-01-01 00:00:05', 2, 2, 1.1, 6.1, '16', 8.3333);",
"insert into ct2 values ('2025-01-01 00:00:06', 2, 2, 1.1, 7.1, '17', 9.3333);",
"insert into ct2 values ('2025-01-01 00:00:07', 2, 2, 1.1, 8.1, '18', 10.333);",
"insert into ct2 values ('2025-01-01 00:00:08', 2, 2, 1.1, 9.1, '19', 11.333);",
"insert into ct2 values ('2025-01-01 00:00:09', 3, 3, 1.1, 10.1, '20', 12.33);",
"insert into ct3 values ('2025-01-01 00:00:00', 0, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct3 values ('2025-01-01 00:00:01', 0, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct3 values ('2025-01-01 00:00:02', 1, 1, 1.1, 3.1, '13', 5.3333);",
"insert into ct3 values ('2025-01-01 00:00:03', 1, 1, 1.1, 4.1, '14', 6.3333);",
"insert into ct3 values ('2025-01-01 00:00:04', 1, 1, 1.1, 5.1, '15', 7.3333);",
"insert into ct3 values ('2025-01-01 00:00:05', 2, 2, 1.1, 6.1, '16', 8.3333);",
"insert into ct3 values ('2025-01-01 00:00:06', 2, 2, 1.1, 7.1, '17', 9.3333);",
"insert into ct3 values ('2025-01-01 00:00:07', 2, 2, 1.1, 8.1, '18', 10.333);",
"insert into ct3 values ('2025-01-01 00:00:08', 2, 2, 1.1, 9.1, '19', 11.333);",
"insert into ct3 values ('2025-01-01 00:00:09', 3, 3, 1.1, 10.1, '20', 12.33);",
]
tdSql.executes(sqls)
def check1(self):
tdLog.info("do check the results")
tdSql.checkResultsByFunc(
sql=f"select * from {self.db}.res_ct0",
func=lambda: tdSql.getRows() == 9
)
class Basic10(StreamCheckItem):
def __init__(self):
self.db = "sdb10"
self.stb = "stb"
def create(self):
tdLog.info(f"=============== create database")
tdSql.execute(f"create database {self.db} vgroups 4;")
tdSql.execute(f"use {self.db}")
tdSql.execute(f"create table if not exists {self.stb} (ts timestamp, cint int, cbool bool, cfloat float, cdouble double, cbytes varchar(100), cdecimal decimal(10, 2)) tags (tag1 int, tag2 int);")
tdSql.query(f"show stables")
tdSql.checkRows(1)
tdLog.info(f"=============== create sub table")
tdSql.execute(f"create table ct0 using {self.stb} tags(0, 1);")
tdSql.execute(f"create table ct1 using {self.stb} tags(1, 2);")
tdSql.execute(f"create table ct2 using {self.stb} tags(2, 3);")
tdSql.execute(f"create table ct3 using {self.stb} tags(3, 4);")
tdSql.query(f"show tables")
tdSql.checkRows(4)
tdLog.info(f"=============== create stream")
tdSql.execute(
f"create stream s3 count_window(1) from ct0 stream_options(FILL_HISTORY) "
f"notify('ws://localhost:12345/basic10_s3') on(window_open|window_close) notify_options(notify_history) "
f"into "
f"res_ct0 (ts, endts, original_ts, cint, cbool, cfloat, cdouble, cbytes, cdecimal) as "
f"select ((_tlocaltime/1000000) & 100000) + ts, _twend, ts, cint, cbool, cfloat, cdouble, cbytes, cdecimal from ct0 "
)
def insert1(self):
time.sleep(5)
tdLog.info(f"=============== insert data into stb")
sqls = [
"insert into ct0 values ('2025-01-01 00:01:00', 1, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct0 values ('2025-01-01 00:01:01', 1, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct0 values ('2025-01-01 00:01:02', 1, 0, 1.1, 3.1, '13', 5.3333);",
"insert into ct0 values ('2025-01-01 00:01:03', 1, 0, 1.1, 4.1, '14', 6.3333);",
"insert into ct0 values ('2025-01-01 00:01:04', 1, 0, 1.1, 5.1, '15', 7.3333);",
"insert into ct0 values ('2025-01-01 00:01:15', 1, 0, 1.1, 6.1, '16', 8.3333);",
"insert into ct0 values ('2025-01-01 00:01:26', 1, 0, 1.1, 7.1, '17', 9.3333);",
"insert into ct0 values ('2025-01-01 00:01:27', 1, 0, 1.1, 8.1, '18', 10.3333);",
"insert into ct0 values ('2025-01-01 00:01:28', 1, 0, 1.1, 9.1, '19', 11.3333);",
"insert into ct0 values ('2025-01-01 00:01:29', 1, 0, 1.1, 10.1, '20', 12.3333);",
"insert into ct0 values ('2025-01-01 00:01:40', 1, 0, 1.1, 11.1, '21', 13.3333);",
"insert into ct1 values ('2025-01-01 00:02:00', 0, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct1 values ('2025-01-01 00:02:01', 0, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct1 values ('2025-01-01 00:02:02', 1, 1, 1.1, 3.1, '13', 5.3333);",
"insert into ct1 values ('2025-01-01 00:02:03', 1, 1, 1.1, 4.1, '14', 6.3333);",
"insert into ct1 values ('2025-01-01 00:02:04', 1, 1, 1.1, 5.1, '15', 7.3333);",
"insert into ct1 values ('2025-01-01 00:02:05', 2, 2, 1.1, 6.1, '16', 8.3333);",
"insert into ct1 values ('2025-01-01 00:02:06', 2, 2, 1.1, 7.1, '17', 9.3333);",
"insert into ct1 values ('2025-01-01 00:02:07', 2, 2, 1.1, 8.1, '18', 10.333);",
"insert into ct1 values ('2025-01-01 00:02:08', 2, 2, 1.1, 9.1, '19', 11.333);",
"insert into ct1 values ('2025-01-01 00:02:09', 3, 3, 1.1, 10.1, '20', 12.33);",
"insert into ct2 values ('2025-01-01 00:03:00', 0, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct2 values ('2025-01-01 00:03:01', 0, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct2 values ('2025-01-01 00:03:02', 1, 1, 1.1, 3.1, '13', 5.3333);",
"insert into ct2 values ('2025-01-01 00:03:03', 1, 1, 1.1, 4.1, '14', 6.3333);",
"insert into ct2 values ('2025-01-01 00:03:04', 1, 1, 1.1, 5.1, '15', 7.3333);",
"insert into ct2 values ('2025-01-01 00:03:05', 2, 2, 1.1, 6.1, '16', 8.3333);",
"insert into ct2 values ('2025-01-01 00:03:06', 2, 2, 1.1, 7.1, '17', 9.3333);",
"insert into ct2 values ('2025-01-01 00:03:07', 2, 2, 1.1, 8.1, '18', 10.333);",
"insert into ct2 values ('2025-01-01 00:03:08', 2, 2, 1.1, 9.1, '19', 11.333);",
"insert into ct2 values ('2025-01-01 00:03:09', 3, 3, 1.1, 10.1, '20', 12.33);",
"insert into ct3 values ('2025-01-01 00:04:00', 0, 0, 1.1, 1.1, '11', 3.3333);",
"insert into ct3 values ('2025-01-01 00:04:01', 0, 0, 1.1, 2.1, '12', 4.3333);",
"insert into ct3 values ('2025-01-01 00:04:02', 1, 1, 1.1, 3.1, '13', 5.3333);",
"insert into ct3 values ('2025-01-01 00:04:03', 1, 1, 1.1, 4.1, '14', 6.3333);",
"insert into ct3 values ('2025-01-01 00:04:04', 1, 1, 1.1, 5.1, '15', 7.3333);",
"insert into ct3 values ('2025-01-01 00:04:05', 2, 2, 1.1, 6.1, '16', 8.3333);",
"insert into ct3 values ('2025-01-01 00:04:06', 2, 2, 1.1, 7.1, '17', 9.3333);",
"insert into ct3 values ('2025-01-01 00:04:07', 2, 2, 1.1, 8.1, '18', 10.333);",
"insert into ct3 values ('2025-01-01 00:04:08', 2, 2, 1.1, 9.1, '19', 11.333);",
"insert into ct3 values ('2025-01-01 00:04:09', 3, 3, 1.1, 10.1, '20', 12.33);",
]
tdSql.executes(sqls)
def check1(self):
tdLog.info("do check the results")
tdSql.checkResultsByFunc(
sql=f"select * from {self.db}.res_ct0",
func=lambda: tdSql.getRows() == 3
)
class Basic11(StreamCheckItem):
def __init__(self):
self.db = "sdb11"
self.stb = "stb"
def create(self):
tdLog.info(f"=============== create database")
tdSql.execute(f"create database {self.db} vgroups 4;")
tdSql.execute(f"use {self.db}")
tdSql.execute(f"create table if not exists {self.stb} (ts timestamp, cint int, cbool bool, cfloat float, cdouble double, cbytes varchar(100), cdecimal decimal(10, 2)) tags (tag1 int, tag2 int);")
tdSql.query(f"show stables")
tdSql.checkRows(1)
tdLog.info(f"=============== create sub table")
tdSql.execute(f"create table ct0 using {self.stb} tags(0, 1);")
tdSql.execute(f"create table ct1 using {self.stb} tags(1, 2);")
tdSql.execute(f"create table ct2 using {self.stb} tags(2, 3);")
tdSql.execute(f"create table ct3 using {self.stb} tags(3, 4);")
tdSql.query(f"show tables")
tdSql.checkRows(4)
tdLog.info(f"=============== create stream")
tdSql.execute(
f"create stream s3 count_window(1) from ct0 stream_options(FILL_HISTORY) "
f"notify('ws://localhost:12345/basic11_s3') on(window_open|window_close) notify_options(notify_history) "
f"into "
f"res_ct0 (ts, endts, original_ts, cint, cbool, cfloat, cdouble, cbytes, cdecimal) as "
f"select _wstart, _wend, _twstart, count(*), count(cbool), sum(cfloat), last(cdouble), last(cbytes),sum(cdecimal) from ct0 interval(10a) "
)
def insert1(self):
time.sleep(5)
tdLog.info(f"=============== insert data into stb")
ts = 1735660860000
for i in range(10000):
sql = f"insert into ct0 values ({ts}, {i}, 0, {random()}, {random()}, '11', 3.3333333);"
tdSql.execute(sql)
ts += 1000
def check1(self):
tdLog.info("do check the results")
tdSql.checkResultsByFunc(
sql=f"select * from {self.db}.res_ct0",
func=lambda: tdSql.getRows() == 3
)
class Basic12(StreamCheckItem):
def __init__(self):
self.db = "sdb11"
self.stb = "stb"
def create(self):
tdLog.info(f"=============== create database")
tdSql.execute(f"create database {self.db} vgroups 4;")
tdSql.execute(f"use {self.db}")
tdSql.execute(f"create table if not exists {self.stb} (ts timestamp, cint int, cbool bool, cfloat float, cdouble double, cbytes varchar(100), cdecimal decimal(10, 2)) tags (tag1 int, tag2 int);")
tdSql.query(f"show stables")
tdSql.checkRows(1)
tdLog.info(f"=============== create sub table")
tdSql.execute(f"create table ct0 using {self.stb} tags(0, 1);")
tdSql.execute(f"create table ct1 using {self.stb} tags(1, 2);")
tdSql.execute(f"create table ct2 using {self.stb} tags(2, 3);")
tdSql.execute(f"create table ct3 using {self.stb} tags(3, 4);")
tdSql.query(f"show tables")
tdSql.checkRows(4)
tdLog.info(f"=============== create stream")
tdSql.error(
f"create stream s3 count_window(1) from ct0 stream_options(FILL_HISTORY) "
f"notify('ws://localhost:12345/notify') into res_ct0 as "
f"select _wstart, _wend, _twstart, count(*), count(cbool), sum(cfloat), last(cdouble), last(cbytes),sum(cdecimal) from ct0 interval(10a) "
)
tdSql.error(
f"create stream s3 session(ts, 20s) from ct0 stream_options(FILL_HISTORY) "
f"notify('ws://localhost:12345/notify') into res_ct0 as "
f"select _wstart, _wend, _twstart, count(*), count(cbool), sum(cfloat), last(cdouble), last(cbytes),sum(cdecimal) from ct0 interval(10a) "
)
tdSql.error(
f"create stream s3 state_window(cint) from ct0 stream_options(FILL_HISTORY) "
f"notify('http://localhost:12345/notify') into res_ct0 as "
f"select _wstart, _wend, _twstart, count(*), count(cbool), sum(cfloat), last(cdouble), last(cbytes),sum(cdecimal) from ct0 interval(10a) "
)
tdSql.error(
f"create stream s3 event_window(start with cdouble < 4 or cdecimal >8 end with cast(cbytes as int) > 13) from ct0 stream_options(FILL_HISTORY) "
f"notify('http://localhost:12345/notify') into res_ct0 as "
f"select _wstart, _wend, _twstart, count(*), count(cbool), sum(cfloat), last(cdouble), last(cbytes),sum(cdecimal) from ct0 interval(10a) "
)
tdSql.error(
f"create stream s3 event_window(start with cdouble < 4 or cdecimal >8 end with cast(cbytes as int) > 13) from ct0 stream_options(FILL_HISTORY) "
f"notify('http://localhost:12345/notify') on(window_both) into res_ct0 as "
f"select _wstart, _wend, _twstart, count(*), count(cbool), sum(cfloat), last(cdouble), last(cbytes),sum(cdecimal) from ct0 interval(10a) "
)
tdSql.error(
f"create stream s3 period(10s) from ct0 "
f"notify('http://localhost:12345/notify') on(window_open|window_close|) notify_options(notify_history) into res_ct0 as "
f"select _wstart, _wend, _twstart, count(*), count(cbool), sum(cfloat), last(cdouble), last(cbytes),sum(cdecimal) from ct0 "
)
tdSql.error(
f"create stream s3 period(10s) from ct0 "
f"notify('http://localhost:12345/notify') on(window_open|window_close|) notify_options() into res_ct0 as "
f"select _wstart, _wend, _twstart, count(*), count(cbool), sum(cfloat), last(cdouble), last(cbytes),sum(cdecimal) from ct0 "
)
tdSql.error(
f"create stream s3 period(10s) from ct0 on(window_open|window_close) "
f"notify('http://localhost:12345/notify') notify_options(on_failure_pause) into res_ct0 as "
f"select _wstart, _wend, _twstart, count(*), count(cbool), sum(cfloat), last(cdouble), last(cbytes),sum(cdecimal) from ct0 "
)
def insert1(self):
pass
# time.sleep(5)
#
# tdLog.info(f"=============== insert data into stb")
#
# ts = 1735660860000
# for i in range(10000):
# sql = f"insert into ct0 values ({ts}, {i}, 0, {random()}, {random()}, '11', 3.3333333);"
# tdSql.execute(sql)
# ts += 1000
def check1(self):
pass
# tdLog.info("do check the results")
# tdSql.checkResultsByFunc(
# sql=f"select * from {self.db}.res_ct0",
# func=lambda: tdSql.getRows() == 3
# )
class Basic13(StreamCheckItem):
def __init__(self):
self.db = "sdb13"
self.stb = "stb"
def create(self):
tdLog.info(f"=============== create database")
tdSql.execute(f"create database {self.db} vgroups 4;")
tdSql.execute(f"use {self.db}")
tdSql.execute(f"create table if not exists {self.stb} (ts timestamp, startTime timestamp, c1 int) tags (tag1 int);")
tdSql.query(f"show stables")
tdSql.checkRows(1)
tdLog.info(f"=============== create sub table")
tdSql.execute(f"create table ct0 using {self.stb} tags(0);")
tdSql.execute(f"create table ct1 using {self.stb} tags(1);")
tdSql.execute(f"create table ct2 using {self.stb} tags(2);")
tdSql.execute(f"create table ct3 using {self.stb} tags(3);")
tdSql.query(f"show tables")
tdSql.checkRows(4)
tdLog.info(f"=============== create stream")
tdSql.execute(
f"create stream s0 state_window(c1) from ct0 "
f"notify('ws://localhost:12345/basic13_s0') on(window_open|window_close) notify_options(notify_history) "
f"into "
f"res_ct0 (startTime, c1) as "
f"select startTime, c1 from ct0 "
f"where _twstart <= _c0 and _c0 <= _twend "
)
def insert1(self):
tdLog.info(f"=============== insert data into ct0 null time data")
sqls = [
"insert into ct0 values ('2025-01-01 00:00:00.000', NULL, 1);",
"insert into ct0 values ('2025-01-01 00:00:01.000', NULL, 1);",
"insert into ct0 values ('2025-01-01 00:00:02.000', NULL, 1);",
"insert into ct0 values ('2025-01-01 00:00:03.000', NULL, 2);",
"insert into ct0 values ('2025-01-01 00:00:04.000', NULL, 2);",
"insert into ct0 values ('2025-01-01 00:00:05.000', NULL, 3);",
"insert into ct0 values ('2025-01-01 00:00:06.000', NULL, 3);",
"insert into ct0 values ('2025-01-01 00:00:07.000', NULL, 4);",
"insert into ct0 values ('2025-01-01 00:00:08.000', NULL, 4);",
"insert into ct0 values ('2025-01-01 00:00:09.000', NULL, 4);",
"insert into ct0 values ('2025-01-01 00:00:10.000', NULL, 4);",
]
tdSql.executes(sqls)
def check1(self):
tdLog.info("desc the stream res_ct0")
tdSql.query(f"desc {self.db}.res_ct0")
tdSql.checkRows(2)
tdSql.query(f"select * from {self.db}.res_ct0")
tdSql.checkRows(0)
expect_event(
os.path.join(NOTIFY_RESULT_DIR, "basic13_s0.log"),
streamName="sdb13.s0",
eventType="WINDOW_OPEN",
triggerType="State",
windowStart=1735660800000
)
expect_event(
os.path.join(NOTIFY_RESULT_DIR, "basic13_s0.log"),
streamName="sdb13.s0",
eventType="WINDOW_OPEN",
triggerType="State",
windowStart=1735660803000
)
expect_event(
os.path.join(NOTIFY_RESULT_DIR, "basic13_s0.log"),
streamName="sdb13.s0",
eventType="WINDOW_OPEN",
triggerType="State",
windowStart=1735660807000
)
expect_event_count(
os.path.join(NOTIFY_RESULT_DIR, "basic13_s0.log"),
streamName="sdb13.s0",
eventType="WINDOW_OPEN",
triggerType="State",
expectCount=1,
windowStart=1735660800000
)
expect_rows(os.path.join(NOTIFY_RESULT_DIR, "basic13_s0.log"),
rows=2,
streamName="sdb13.s0",
eventType="WINDOW_CLOSE",
tableName="res_ct0",
windowStart=1735660805000,
windowEnd=1735660806000)
def insert2(self):
tdLog.info(f"=============== insert data into ct0 not null time data")
sqls = [
"insert into ct0 values ('2025-01-01 00:00:00.000', '2025-01-01 00:00:00.000', 1);",
"insert into ct0 values ('2025-01-01 00:00:01.000', '2025-01-01 00:00:01.000', 1);",
"insert into ct0 values ('2025-01-01 00:00:02.000', '2025-01-01 00:00:02.000', 1);",
"insert into ct0 values ('2025-01-01 00:00:03.000', '2025-01-01 00:00:03.000', 2);",
"insert into ct0 values ('2025-01-01 00:00:04.000', '2025-01-01 00:00:04.000', 2);",
"insert into ct0 values ('2025-01-01 00:00:05.000', '2025-01-01 00:00:05.000', 3);",
"insert into ct0 values ('2025-01-01 00:00:06.000', '2025-01-01 00:00:06.000', 3);",
"insert into ct0 values ('2025-01-01 00:00:07.000', '2025-01-01 00:00:07.000', 4);",
"insert into ct0 values ('2025-01-01 00:00:08.000', '2025-01-01 00:00:08.000', 4);",
"insert into ct0 values ('2025-01-01 00:00:09.000', '2025-01-01 00:00:09.000', 4);",
"insert into ct0 values ('2025-01-01 00:00:10.000', '2025-01-01 00:00:10.000', 4);",
]
tdSql.executes(sqls)
def check2(self):
tdLog.info("desc the stream res_ct0")
tdSql.query(f"desc {self.db}.res_ct0")
tdSql.checkRows(2)
tdSql.checkResultsByFunc(
sql=f"select * from {self.db}.res_ct0",
func=lambda: tdSql.getRows() == 7
)
expect_event_count(
os.path.join(NOTIFY_RESULT_DIR, "basic13_s0.log"),
streamName="sdb13.s0",
eventType="WINDOW_OPEN",
triggerType="State",
expectCount=2,
windowStart=1735660800000
)
expect_event_count(
os.path.join(NOTIFY_RESULT_DIR, "basic13_s0.log"),
streamName="sdb13.s0",
eventType="WINDOW_OPEN",
triggerType="State",
expectCount=2,
windowStart=1735660805000
)
expect_event_count(
os.path.join(NOTIFY_RESULT_DIR, "basic13_s0.log"),
streamName="sdb13.s0",
eventType="WINDOW_OPEN",
triggerType="State",
expectCount=2,
windowStart=1735660807000
)
expect_event_count(
os.path.join(NOTIFY_RESULT_DIR, "basic13_s0.log"),
streamName="sdb13.s0",
eventType="WINDOW_CLOSE",
triggerType="State",
tableName="res_ct0",
expectCount=2,
windowEnd=1735660806000
)
class Basic14(StreamCheckItem):
def __init__(self):
self.db = "sdb14"
self.stb = "stb"
def create(self):
tdLog.info(f"=============== create database")
tdSql.execute(f"create database {self.db} vgroups 4;")
tdSql.execute(f"use {self.db}")
tdSql.execute(f"create table if not exists {self.stb} (ts timestamp, c0 int, c1 int) tags (tag1 int);")
tdSql.query(f"show stables")
tdSql.checkRows(1)
tdLog.info(f"=============== create sub table")
tdSql.execute(f"create table ct0 using {self.stb} tags(0);")
tdSql.execute(f"create table ct1 using {self.stb} tags(1);")
tdSql.execute(f"create table ct2 using {self.stb} tags(2);")
tdSql.execute(f"create table ct3 using {self.stb} tags(3);")
tdSql.query(f"show tables")
tdSql.checkRows(4)
tdLog.info(f"=============== create stream")
tdSql.execute(
f"create stream if not exists `sdb14`.`s1` "
f"event_window( start with (`c0`)>= 5 end with (`c1`)<5 ) true_for(5s) "
f"from `sdb14`.`stb` partition by tbname stream_options(ignore_disorder|event_type(window_open|window_close)) "
f"notify('ws://localhost:12345/basic14_s1') on(window_open|window_close) "
f"into `sdb14`.`res_st` output_subtable(concat('ana_', tbname,'_end')) "
f"as select _c0 as output_timestamp, `c0` from %%tbname where ts >= _twstart and ts <_twend "
)
def insert1(self):
tdLog.info(f"=============== insert1 data into ct0 open window data")
sqls = [
"insert into ct0 values ('2025-01-01 00:00:00.000', 6, 7);",
"insert into ct0 values ('2025-01-01 00:00:01.000', 7, 7);",
"insert into ct0 values ('2025-01-01 00:00:02.000', 8, 7);",
"insert into ct0 values ('2025-01-01 00:00:03.000', 9, 7);",
"insert into ct0 values ('2025-01-01 00:00:04.000', 10, 7);",
"insert into ct0 values ('2025-01-01 00:00:05.000', 11, 8);",
]
tdSql.executes(sqls)
def check1(self):
tdLog.info(f"check1 the stream {self.db}.s1")
tdSql.query(f"desc {self.db}.ana_ct0_end")
tdSql.checkRows(3)
tdSql.query(f"select * from {self.db}.ana_ct0_end")
tdSql.checkRows(0)
expect_event_count(
os.path.join(NOTIFY_RESULT_DIR, "basic14_s1.log"),
streamName="sdb14.s1",
eventType="WINDOW_OPEN",
triggerType="Event",
tableName="ana_ct0_end",
expectCount=1,
windowStart=1735660800000
)
def insert2(self):
tdLog.info(f"=============== insert2 data into ct0 close windows data")
sqls = [
"insert into ct0 values ('2025-01-01 00:00:06.000', 5, 1);",
]
tdSql.executes(sqls)
def check2(self):
tdLog.info(f"check2 the stream {self.db}.s1")
tdSql.query(f"desc {self.db}.ana_ct0_end")
tdSql.checkRows(3)
tdSql.checkResultsByFunc(
sql=f"select * from {self.db}.ana_ct0_end",
func=lambda: tdSql.getRows() == 6
and tdSql.compareData(0, 0, "2025-01-01 00:00:00.000")
and tdSql.compareData(0, 1, 6)
and tdSql.compareData(1, 0, "2025-01-01 00:00:01.000")
and tdSql.compareData(1, 1, 7)
and tdSql.compareData(2, 0, "2025-01-01 00:00:02.000")
and tdSql.compareData(2, 1, 8)
and tdSql.compareData(3, 0, "2025-01-01 00:00:03.000")
and tdSql.compareData(3, 1, 9)
and tdSql.compareData(4, 0, "2025-01-01 00:00:04.000")
and tdSql.compareData(4, 1, 10)
and tdSql.compareData(5, 0, "2025-01-01 00:00:05.000")
and tdSql.compareData(5, 1, 11),
)
expect_event_count(
os.path.join(NOTIFY_RESULT_DIR, "basic14_s1.log"),
streamName="sdb14.s1",
eventType="WINDOW_CLOSE",
triggerType="Event",
tableName="ana_ct0_end",
expectCount=1,
windowStart=1735660800000
)
expect_rows(os.path.join(NOTIFY_RESULT_DIR, "basic14_s1.log"),
rows=6,
streamName="sdb14.s1",
eventType="WINDOW_CLOSE",
tableName="ana_ct0_end",
windowStart=1735660800000,
windowEnd=1735660806000)
def insert3(self):
tdLog.info(f"=============== insert3 data into ct0 open window data")
sqls = [
"insert into ct0 values ('2025-01-01 00:00:07.000', 11, 8);",
"insert into ct0 values ('2025-01-01 00:00:08.000', 11, 8);",
"insert into ct0 values ('2025-01-01 00:00:09.000', 11, 8);",
"insert into ct0 values ('2025-01-01 00:00:10.000', 11, 8);",
"insert into ct0 values ('2025-01-01 00:00:11.000', 11, 8);",
"insert into ct0 values ('2025-01-01 00:00:12.000', 11, 8);",
]
tdSql.executes(sqls)
def check3(self):
tdLog.info(f"check3 the stream {self.db}.s1")
tdSql.query(f"desc {self.db}.ana_ct0_end")
tdSql.checkRows(3)
expect_event_count(
os.path.join(NOTIFY_RESULT_DIR, "basic14_s1.log"),
streamName="sdb14.s1",
eventType="WINDOW_OPEN",
triggerType="Event",
tableName="ana_ct0_end",
expectCount=1,
windowStart=1735660807000
)
class Basic15(StreamCheckItem):
def __init__(self):
self.db = "idmp"
self.stb = "stb"
def create(self):
tdLog.info(f"=============== create database")
tdSql.execute(f"create database {self.db} vgroups 4;")
tdSql.execute(f"use {self.db}")
tdSql.execute(f"create table if not exists {self.stb} (ts timestamp, `电流` float) tags(t1 int);")
tdSql.query(f"show stables")
tdSql.checkRows(1)
tdLog.info(f"=============== create sub table")
tdSql.execute(f"create table st0 using {self.stb} tags(0);")
tdSql.execute(f"create table st1 using {self.stb} tags(1);")
tdSql.execute(f"create table st2 using {self.stb} tags(2);")
tdSql.execute(f"create table st3 using {self.stb} tags(3);")
tdSql.query(f"show tables")
tdSql.checkRows(4)
tdLog.info(f"=============== create stream")
tdSql.execute(
f"create stream if not exists `idmp`.`s1` "
f"period( 10s,0s) from `idmp`.`st0` "
f"stream_options(ignore_disorder|ignore_nodata_trigger) "
f"notify('ws://localhost:12345/basic15_s1') on(window_open|window_close) "
f"into `idmp`.`res_st` as "
f"select cast(_tlocaltime/1000000 as timestamp)+0s as output_timestamp, avg(`电流`) "
f"as `平均电流` from st0 where ts > (cast(_tprev_localtime/1000000 as timestamp)-1200000) and ts <=cast(_tlocaltime/1000000 as timestamp)"
)
def insert1(self):
tdLog.info(f"=============== insert data into ct0 open window data")
sqls = [
"insert into st0 values (now-31s, 6);",
"insert into st0 values (now-25s, 7);",
"insert into st0 values (now-20s, 8);",
"insert into st0 values (now-15s, 9);",
"insert into st0 values (now-10s, 10);",
"insert into st0 values (now-5s, 11);",
"insert into st0 values (now, 12);",
]
tdSql.executes(sqls)
def check1(self):
tdLog.info(f"check the stream {self.db}.s1")
tdSql.checkResultsByFunc(
sql=f"select * from {self.db}.res_st",
func=lambda: tdSql.getRows() == 1
)
expect_event_count(
os.path.join(NOTIFY_RESULT_DIR, "basic15_s1.log"),
streamName="idmp.s1",
eventType="ON_TIME",
triggerType="Period",
tableName="res_st",
expectCount=1,
)
class Basic16(StreamCheckItem):
def __init__(self):
self.db = "idmp2"
self.stb = "stb"
def create(self):
tdLog.info(f"=============== create database")
tdSql.execute(f"create database {self.db} vgroups 4;")
tdSql.execute(f"use {self.db}")
tdSql.execute(f"create table if not exists {self.stb} (ts timestamp, `电流` float) tags(t1 int);")
tdSql.query(f"show stables")
tdSql.checkRows(1)
tdLog.info(f"=============== create sub table")
tdSql.execute(f"create table st0 using {self.stb} tags(0);")
tdSql.execute(f"create table st1 using {self.stb} tags(1);")
tdSql.execute(f"create table st2 using {self.stb} tags(2);")
tdSql.execute(f"create table st3 using {self.stb} tags(3);")
tdSql.query(f"show tables")
tdSql.checkRows(4)
tdLog.info(f"=============== create stream")
tdSql.execute(
f"create stream if not exists {self.db}.`s1` "
f"sliding(1m) from `{self.db}`.`{self.stb}` partition by tbname "
f"stream_options(ignore_disorder|ignore_nodata_trigger) "
f"notify('ws://localhost:12345/basic16_s1') on(window_open|window_close) "
f"into `{self.db}`.`res_st` output_subtable(concat('ana_', tbname,'_ana')) as "
f"select _tcurrent_ts+0s as output_timestamp, avg(`电流`) as `属性1` from %%tbname "
)
def insert1(self):
tdLog.info(f"=============== insert data into st0 open window data")
sqls = [
"insert into st0 values ('2025-01-01 00:00:00.000', 6);",
"insert into st0 values ('2025-01-01 00:01:01.000', 7);",
]
tdSql.executes(sqls)
def check1(self):
tdLog.info(f"check the stream {self.db}.s1")
tdSql.checkResultsByFunc(
sql=f"select * from {self.db}.res_st",
func=lambda: tdSql.getRows() == 1
)
expect_event_count(
os.path.join(NOTIFY_RESULT_DIR, "basic16_s1.log"),
streamName="idmp2.s1",
eventType="ON_TIME",
triggerType="Sliding",
tableName="ana_st0_ana",
expectCount=1,
)
def insert2(self):
tdLog.info(f"=============== insert2 data into st0 open window data")
sqls = [
"insert into st0 values ('2025-01-01 00:02:02.000', 8);",
"insert into st0 values ('2025-01-01 00:03:03.000', 9);",
"insert into st0 values ('2025-01-01 00:04:03.000', 10);",
"insert into st0 values ('2025-01-01 00:05:03.000', 11);",
]
tdSql.executes(sqls)
def check2(self):
tdLog.info(f"check the stream {self.db}.s1")
tdSql.checkResultsByFunc(
sql=f"select * from {self.db}.res_st",
func=lambda: tdSql.getRows() == 5
)
expect_event_count(
os.path.join(NOTIFY_RESULT_DIR, "basic16_s1.log"),
streamName="idmp2.s1",
eventType="ON_TIME",
triggerType="Sliding",
tableName="ana_st0_ana",
expectCount=5,
)
class Basic17(StreamCheckItem):
def __init__(self):
self.db = "sdb17"
self.stb = "stb"
self.stream = "nproc_detection"
self.result_table = "nproc_detect_res"
def create(self):
tdLog.info("=============== create database")
tdSql.execute(f"create database {self.db} vgroups 1;")
tdSql.execute(f"use {self.db}")
tdSql.execute(
f"create stable {self.stb} (ts timestamp, nproc int) tags (ip varchar(32));"
)
tdSql.query("show stables")
tdSql.checkRows(1)
tdLog.info("=============== create sub table")
tdSql.execute(f"create table ct1 using {self.stb} tags ('127.0.0.1');")
tdSql.query("show tables")
tdSql.checkRows(1)
tdLog.info("=============== create stream")
tdSql.execute(
f"create stream if not exists {self.stream} "
f"count_window(3, 1) from {self.stb} partition by tbname "
f"notify('ws://localhost:12345/basic17_s0') on(window_close) "
f"into {self.result_table} "
f"as select _twend ts, diff(dif) as derived_diff "
f"from (select ts, diff(nproc) as dif from %%tbname where _c0 >= _twstart and _c0 <= _twend);"
)
def insert1(self):
tdLog.info("=============== insert crash repro rows")
tdSql.execute(
"insert into ct1 values ('2026-01-01 00:00:00.000', 1000), ('2026-01-01 00:00:10.000', 950), ('2026-01-01 00:00:20.000', 100), ('2026-01-01 00:00:30.000', 50);"
)
def check1(self):
tdLog.info("check the stream crash repro result")
tdSql.checkResultsByFunc(
sql=f"select * from {self.db}.{self.result_table} order by ts",
func=lambda: tdSql.getRows() == 2
and tdSql.compareData(0, 0, "2026-01-01 00:00:20.000")
and tdSql.compareData(0, 1, -800)
and tdSql.compareData(0, 2, "ct1")
and tdSql.compareData(1, 0, "2026-01-01 00:00:30.000")
and tdSql.compareData(1, 1, 800)
and tdSql.compareData(1, 2, "ct1"),
)
expect_event(
os.path.join(NOTIFY_RESULT_DIR, "basic17_s0.log"),
streamName=f"{self.db}.{self.stream}",
eventType="WINDOW_CLOSE",
result_pred=lambda data: len(data) > 0,
)
class Basic18(StreamCheckItem):
def __init__(self):
self.db = "sdb18"
def create(self):
tdLog.info("=============== create database")
tdSql.execute(f"create database {self.db} vgroups 1")
tdSql.execute(f"use {self.db}")
tdSql.execute("create table t_single (ts timestamp, c0 int, c1 int)")
tdSql.execute("create table t_order (ts timestamp, c0 int, c1 int)")
tdSql.execute("create table t_history (ts timestamp, c0 int, c1 int)")
tdSql.execute(
"create stream s_single "
"event_window(start with (c0 = 1, c1 = 1)) "
"from t_single "
"stream_options(DELETE_RECALC|event_type(window_open|window_close)) "
"notify('ws://localhost:12345/basic18_single') "
"on(window_open|window_close) notify_options(notify_history) "
"into r_single as "
"select _twstart, _twend, count(*) from t_single "
"where ts >= _twstart and ts <= _twend"
)
tdSql.execute(
"create stream s_order "
"event_window(start with (c0 = 1, c1 = 1)) "
"from t_order "
"stream_options(event_type(window_open|window_close)) "
"notify('ws://localhost:12345/basic18_order') "
"on(window_open|window_close) notify_options(notify_history) "
"into r_order as "
"select _twstart, _twend, count(*) from t_order "
"where ts >= _twstart and ts <= _twend"
)
tdSql.execute(
"create stream s_history "
"event_window(start with (c0 = 1, c1 = 1)) "
"from t_history "
"stream_options(event_type(window_open|window_close)) "
"notify('ws://localhost:12345/basic18_history') "
"on(window_open|window_close) notify_options(notify_history) "
"into r_history as "
"select _twstart, _twend, count(*) from t_history "
"where ts >= _twstart and ts <= _twend"
)
def insert1(self):
tdSql.execute("insert into t_single values ('2025-01-01 00:00:00.000', 1, 0)")
tdSql.execute("insert into t_single values ('2025-01-01 00:00:01.000', 0, 0)")
tdSql.execute("insert into t_order values ('2025-01-01 00:00:00.000', 1, 0)")
tdSql.execute("insert into t_history values ('2025-01-01 00:00:00.000', 1, 0)")
def check1(self):
single_log = os.path.join(NOTIFY_RESULT_DIR, "basic18_single.log")
events = _wait_notify_events(single_log, 2)
actual = [_subevent_key(e) for e in events[:2]]
expected = [
("WINDOW_OPEN", -1, 0, 1735660800000),
("WINDOW_CLOSE", -1, 0, 1735660800000),
]
assert actual == expected, events
assert len(events) == 2, events
order_log = os.path.join(NOTIFY_RESULT_DIR, "basic18_order.log")
_wait_notify_events(order_log, 1)
time.sleep(1)
events = _load_notify_events(order_log)
assert [_subevent_key(e) for e in events] == [("WINDOW_OPEN", -1, 0, 1735660800000)], events
history_log = os.path.join(NOTIFY_RESULT_DIR, "basic18_history.log")
_wait_notify_events(history_log, 1)
time.sleep(1)
events = _load_notify_events(history_log)
assert [_subevent_key(e) for e in events] == [("WINDOW_OPEN", -1, 0, 1735660800000)], events
def insert2(self):
tdSql.execute("insert into t_order values ('2025-01-01 00:00:01.000', 0, 1)")
tdSql.execute("insert into t_history values ('2025-01-01 00:00:01.000', 0, 1)")
tdSql.execute("delete from t_history where ts = '2025-01-01 00:00:01.000'")
def check2(self):
order_log = os.path.join(NOTIFY_RESULT_DIR, "basic18_order.log")
events = _wait_notify_events(order_log, 4)
actual = [_subevent_key(e) for e in events[:4]]
expected = [
("WINDOW_OPEN", -1, 0, 1735660800000),
("WINDOW_OPEN", 0, 0, 1735660800000),
("WINDOW_CLOSE", 0, 0, 1735660800000),
("WINDOW_OPEN", 1, 1, 1735660801000),
]
assert actual == expected, events
parent_open = events[0]
first_child_open = events[1]
first_child_close = events[2]
second_child_open = events[3]
parent_trigger_id = parent_open.get("triggerId")
assert parent_trigger_id, events
assert first_child_open.get("triggerId") != parent_trigger_id, events
assert first_child_close.get("triggerId") != parent_trigger_id, events
assert first_child_close.get("triggerId") == first_child_open.get("triggerId"), events
assert first_child_open.get("parentTriggerId") == parent_trigger_id, events
assert first_child_close.get("parentTriggerId") == parent_trigger_id, events
assert second_child_open.get("parentTriggerId") == parent_trigger_id, events
history_log = os.path.join(NOTIFY_RESULT_DIR, "basic18_history.log")
events = _wait_notify_events(history_log, 4)
actual = [_subevent_key(e) for e in events[:4]]
assert actual == expected, events
parent_open = events[0]
parent_trigger_id = parent_open.get("triggerId")
assert parent_trigger_id, events
for child_event in events[1:4]:
assert child_event.get("triggerId") != parent_trigger_id, events
assert child_event.get("parentTriggerId") == parent_trigger_id, events