This is an automated email from the ASF dual-hosted git repository.
piotr pushed a change to branch connectors_fix
in repository https://gitbox.apache.org/repos/asf/iggy.git
from d13f09333 fix consumer group recovery after runtime restart
add 4052619bf refactor(integration): remove legacy test infrastructure
(#2678)
new 02b40f137 Merge
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
Cargo.lock | 3 +-
bdd/rust/Cargo.toml | 1 -
bdd/rust/tests/helpers/cluster.rs | 19 +-
bdd/rust/tests/steps/auth.rs | 26 +-
bdd/rust/tests/steps/leader_redirection.rs | 6 +-
core/harness_derive/src/codegen.rs | 2 +-
core/integration/Cargo.toml | 2 +-
core/integration/src/bench_utils.rs | 20 +-
core/integration/src/file.rs | 32 -
core/integration/src/harness/handle/server.rs | 99 ++-
core/integration/src/harness/helpers.rs | 2 -
.../src/harness/orchestrator/builder.rs | 10 +-
.../src/harness/orchestrator/harness.rs | 199 +-----
core/integration/src/http_client.rs | 52 --
core/integration/src/lib.rs | 17 -
core/integration/src/quic_client.rs | 55 --
core/integration/src/tcp_client.rs | 82 ---
core/integration/src/test_connectors_runtime.rs | 266 -------
core/integration/src/test_mcp_server.rs | 274 --------
core/integration/src/test_server.rs | 769 ---------------------
core/integration/src/test_tls_utils.rs | 52 --
core/integration/src/websocket_client.rs | 76 --
core/integration/tests/cli/common/mod.rs | 72 +-
.../tests/cli/context/test_context_applied.rs | 8 +-
.../tests/cli/system/test_me_command.rs | 10 +-
core/integration/tests/config_provider/mod.rs | 7 +-
.../connectors/fixtures/quickwit/container.rs | 33 +
.../tests/connectors/postgres/postgres_sink.rs | 6 +-
.../tests/connectors/postgres/postgres_source.rs | 10 +-
.../tests/connectors/quickwit/quickwit_sink.rs | 36 +-
.../tests/connectors/random/random_source.rs | 2 +-
.../data_integrity/verify_after_server_restart.rs | 171 ++---
core/integration/tests/mod.rs | 72 +-
core/integration/tests/sdk/producer/background.rs | 195 +-----
core/integration/tests/server/cg.rs | 77 ++-
.../tests/server/concurrent_addition.rs | 55 +-
core/integration/tests/server/general.rs | 157 ++++-
core/integration/tests/server/message_retrieval.rs | 112 ++-
core/integration/tests/server/mod.rs | 140 ----
.../server/scenarios/authentication_scenario.rs | 10 +-
.../tests/server/scenarios/bench_scenario.rs | 25 +-
.../tests/server/scenarios/concurrent_scenario.rs | 101 +--
...umer_group_auto_commit_reconnection_scenario.rs | 14 +-
.../scenarios/consumer_group_join_scenario.rs | 19 +-
...er_group_new_messages_after_restart_scenario.rs | 54 +-
.../consumer_group_offset_cleanup_scenario.rs | 12 +-
...h_multiple_clients_polling_messages_scenario.rs | 18 +-
...with_single_client_polling_messages_scenario.rs | 12 +-
.../consumer_timestamp_polling_scenario.rs | 12 +-
.../server/scenarios/create_message_payload.rs | 12 +-
.../scenarios/cross_protocol_pat_scenario.rs | 133 +---
.../tests/server/scenarios/encryption_scenario.rs | 91 +--
.../server/scenarios/log_rotation_scenario.rs | 71 +-
.../server/scenarios/message_headers_scenario.rs | 12 +-
.../server/scenarios/message_size_scenario.rs | 12 +-
core/integration/tests/server/scenarios/mod.rs | 10 +-
.../tests/server/scenarios/offset_scenario.rs | 11 +-
.../tests/server/scenarios/permissions_scenario.rs | 159 ++---
.../scenarios/read_during_persistence_scenario.rs | 65 +-
.../scenarios/segment_rotation_race_scenario.rs | 60 +-
.../scenarios/single_message_per_batch_scenario.rs | 11 +-
.../tests/server/scenarios/snapshot_scenario.rs | 13 +-
.../stale_client_consumer_group_scenario.rs | 50 +-
.../scenarios/stream_size_validation_scenario.rs | 13 +-
.../tests/server/scenarios/system_scenario.rs | 16 +-
.../tests/server/scenarios/tcp_tls_scenario.rs | 4 +-
.../tests/server/scenarios/timestamp_scenario.rs | 11 +-
.../tests/server/scenarios/user_scenario.rs | 10 +-
.../server/scenarios/websocket_tls_scenario.rs | 4 +-
core/integration/tests/server/specific.rs | 297 ++------
.../server/src/websocket/websocket_tls_listener.rs | 2 +-
71 files changed, 1129 insertions(+), 3442 deletions(-)
delete mode 100644 core/integration/src/file.rs
delete mode 100644 core/integration/src/http_client.rs
delete mode 100644 core/integration/src/quic_client.rs
delete mode 100644 core/integration/src/tcp_client.rs
delete mode 100644 core/integration/src/test_connectors_runtime.rs
delete mode 100644 core/integration/src/test_mcp_server.rs
delete mode 100644 core/integration/src/test_server.rs
delete mode 100644 core/integration/src/test_tls_utils.rs
delete mode 100644 core/integration/src/websocket_client.rs