aboutsummaryrefslogtreecommitdiff
path: root/test/kafka/internal/testutil/docker.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/kafka/internal/testutil/docker.go')
-rw-r--r--test/kafka/internal/testutil/docker.go68
1 files changed, 68 insertions, 0 deletions
diff --git a/test/kafka/internal/testutil/docker.go b/test/kafka/internal/testutil/docker.go
new file mode 100644
index 000000000..e839fe28c
--- /dev/null
+++ b/test/kafka/internal/testutil/docker.go
@@ -0,0 +1,68 @@
+package testutil
+
+import (
+ "os"
+ "testing"
+)
+
+// DockerEnvironment provides utilities for Docker-based integration tests
+type DockerEnvironment struct {
+ KafkaBootstrap string
+ KafkaGateway string
+ SchemaRegistry string
+ Available bool
+}
+
+// NewDockerEnvironment creates a new Docker environment helper
+func NewDockerEnvironment(t *testing.T) *DockerEnvironment {
+ t.Helper()
+
+ env := &DockerEnvironment{
+ KafkaBootstrap: os.Getenv("KAFKA_BOOTSTRAP_SERVERS"),
+ KafkaGateway: os.Getenv("KAFKA_GATEWAY_URL"),
+ SchemaRegistry: os.Getenv("SCHEMA_REGISTRY_URL"),
+ }
+
+ env.Available = env.KafkaBootstrap != ""
+
+ if env.Available {
+ t.Logf("Docker environment detected:")
+ t.Logf(" Kafka Bootstrap: %s", env.KafkaBootstrap)
+ t.Logf(" Kafka Gateway: %s", env.KafkaGateway)
+ t.Logf(" Schema Registry: %s", env.SchemaRegistry)
+ }
+
+ return env
+}
+
+// SkipIfNotAvailable skips the test if Docker environment is not available
+func (d *DockerEnvironment) SkipIfNotAvailable(t *testing.T) {
+ t.Helper()
+ if !d.Available {
+ t.Skip("Skipping Docker integration test - set KAFKA_BOOTSTRAP_SERVERS to run")
+ }
+}
+
+// RequireKafka ensures Kafka is available or skips the test
+func (d *DockerEnvironment) RequireKafka(t *testing.T) {
+ t.Helper()
+ if d.KafkaBootstrap == "" {
+ t.Skip("Kafka bootstrap servers not available")
+ }
+}
+
+// RequireGateway ensures Kafka Gateway is available or skips the test
+func (d *DockerEnvironment) RequireGateway(t *testing.T) {
+ t.Helper()
+ if d.KafkaGateway == "" {
+ t.Skip("Kafka Gateway not available")
+ }
+}
+
+// RequireSchemaRegistry ensures Schema Registry is available or skips the test
+func (d *DockerEnvironment) RequireSchemaRegistry(t *testing.T) {
+ t.Helper()
+ if d.SchemaRegistry == "" {
+ t.Skip("Schema Registry not available")
+ }
+}