Files
greptimedb/tests-integration/tests/flow_ddl_event.rs
T
Weny Xu ed4271af40 feat(procedure): record event actor (#8849)
* feat(event): record procedure actor

Signed-off-by: WenyXu <wenymedia@gmail.com>

* test: handle streamed region migration output

Signed-off-by: WenyXu <wenymedia@gmail.com>

* test: cover procedure actors across SQL protocols

Signed-off-by: WenyXu <wenymedia@gmail.com>

---------

Signed-off-by: WenyXu <wenymedia@gmail.com>
2026-08-14 09:36:01 +00:00

188 lines
6.2 KiB
Rust

// Copyright 2023 Greptime Team
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
use std::sync::Arc;
use tests_integration::standalone::GreptimeDbStandaloneBuilder;
use tests_integration::test_util::setup_authenticated_grpc_database;
use uuid::Uuid;
use crate::event_recorder_test_util::{
assert_procedure_actor, assert_single_event, find_eventually_string,
};
const CREATE_FLOW_EVENT_TYPE: &str = "create_flow";
const DROP_FLOW_EVENT_TYPE: &str = "drop_flow";
const PROCEDURE_ACTOR: &str = "procedure_actor";
const PROCEDURE_ACTOR_PASSWORD: &str = "procedure_actor_pwd";
#[tokio::test(flavor = "multi_thread")]
async fn test_standalone_flow_ddl_events() {
common_telemetry::init_default_ut_logging();
let standalone = GreptimeDbStandaloneBuilder::new("test_standalone_flow_ddl_events")
.build()
.await;
let instance = standalone.fe_instance();
let suffix = Uuid::new_v4().simple();
let missing_source = format!("flow_ddl_event_missing_source_{suffix}");
let sink = format!("flow_ddl_event_sink_{suffix}");
let flow = format!("flow_ddl_event_{suffix}");
let (database, _grpc_server) = setup_authenticated_grpc_database(
instance.clone(),
PROCEDURE_ACTOR,
PROCEDURE_ACTOR_PASSWORD,
)
.await;
database
.sql(format!(
"CREATE TABLE {sink} (val STRING, ts TIMESTAMP TIME INDEX)"
))
.await
.unwrap();
database
.sql(format!(
"CREATE FLOW IF NOT EXISTS {flow} SINK TO {sink} EVAL INTERVAL '10s' \
WITH (defer_on_missing_source = true) AS SELECT val, ts FROM {missing_source}"
))
.await
.unwrap();
assert_create_events(instance, &flow).await;
database
.sql(format!("DROP FLOW IF EXISTS {flow}"))
.await
.unwrap();
assert_drop_events(instance, &flow).await;
}
async fn assert_create_events(instance: &Arc<frontend::instance::Instance>, flow: &str) {
let procedure_id = find_submitted_procedure_id(instance, CREATE_FLOW_EVENT_TYPE, flow).await;
assert_procedure_actor(instance, &procedure_id, Some(PROCEDURE_ACTOR)).await;
assert_single_event(
instance,
&format!(
r#"SELECT count(*) AS event_count
FROM greptime_private.events
WHERE type = '{CREATE_FLOW_EVENT_TYPE}'
AND procedure_id = '{procedure_id}'
AND procedure_state = 'Running'
AND json_path_match(procedure_trigger, '$.type == "Submitted"')
AND catalog_name = 'greptime'
AND flow_name = '{flow}'
AND flow_id IS NULL
AND json_path_match(payload, '$.version == 1')
AND json_path_match(payload, '$.or_replace == false')
AND json_path_match(payload, '$.create_if_not_exists == true')
AND json_path_match(payload, '$.expire_after == null')
AND json_path_match(payload, '$.eval_interval_secs == 10')"#,
),
)
.await;
assert_event_context(instance, CREATE_FLOW_EVENT_TYPE, &procedure_id).await;
assert_single_event(
instance,
&format!(
r#"SELECT count(*) AS event_count
FROM greptime_private.events
WHERE type = '{CREATE_FLOW_EVENT_TYPE}'
AND procedure_id = '{procedure_id}'
AND procedure_state = 'Done'
AND json_path_match(procedure_trigger, '$.type == "Succeeded"')
AND catalog_name = 'greptime'
AND flow_name = '{flow}'
AND flow_id IS NOT NULL
AND json_is_null(payload)"#,
),
)
.await;
}
async fn assert_event_context(
instance: &Arc<frontend::instance::Instance>,
event_type: &str,
procedure_id: &str,
) {
let actual = find_eventually_string(
instance,
&format!(
"SELECT json_to_string(event_context) AS event_context FROM greptime_private.events WHERE type = '{event_type}' AND procedure_id = '{procedure_id}' AND json_path_match(procedure_trigger, '$.type == \"Submitted\"')"
),
"event_context",
)
.await;
assert_eq!(r#"{"protocol":"grpc","reason":"manual"}"#, actual);
}
async fn assert_drop_events(instance: &Arc<frontend::instance::Instance>, flow: &str) {
let procedure_id = find_submitted_procedure_id(instance, DROP_FLOW_EVENT_TYPE, flow).await;
assert_procedure_actor(instance, &procedure_id, Some(PROCEDURE_ACTOR)).await;
assert_single_event(
instance,
&format!(
r#"SELECT count(*) AS event_count
FROM greptime_private.events
WHERE type = '{DROP_FLOW_EVENT_TYPE}'
AND procedure_id = '{procedure_id}'
AND procedure_state = 'Running'
AND json_path_match(procedure_trigger, '$.type == "Submitted"')
AND catalog_name = 'greptime'
AND flow_name = '{flow}'
AND flow_id IS NOT NULL
AND json_path_match(payload, '$.version == 1')
AND json_path_match(payload, '$.drop_if_exists == true')"#,
),
)
.await;
assert_event_context(instance, DROP_FLOW_EVENT_TYPE, &procedure_id).await;
assert_single_event(
instance,
&format!(
r#"SELECT count(*) AS event_count
FROM greptime_private.events
WHERE type = '{DROP_FLOW_EVENT_TYPE}'
AND procedure_id = '{procedure_id}'
AND procedure_state = 'Done'
AND json_path_match(procedure_trigger, '$.type == "Succeeded"')
AND catalog_name = 'greptime'
AND flow_name = '{flow}'
AND flow_id IS NOT NULL
AND json_is_null(payload)"#,
),
)
.await;
}
async fn find_submitted_procedure_id(
instance: &Arc<frontend::instance::Instance>,
event_type: &str,
flow_name: &str,
) -> String {
find_eventually_string(
instance,
&format!(
r#"SELECT procedure_id
FROM greptime_private.events
WHERE type = '{event_type}'
AND flow_name = '{flow_name}'
AND json_path_match(procedure_trigger, '$.type == "Submitted"')
ORDER BY timestamp DESC
LIMIT 1"#,
),
"procedure_id",
)
.await
}