Add service connection support for Hazelcast
See gh-42416
This commit is contained in:
committed by
Moritz Halbritter
parent
fb3dd68dd3
commit
cee7439dbe
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
* Copyright 2012-2024 the original author or authors.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* https://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.
|
||||
*/
|
||||
|
||||
package org.springframework.boot.testsupport.container;
|
||||
|
||||
import org.testcontainers.containers.GenericContainer;
|
||||
import org.testcontainers.utility.DockerImageName;
|
||||
|
||||
/**
|
||||
* A {@link GenericContainer} for Hazelcast.
|
||||
*
|
||||
* @author Dmytro Nosan
|
||||
*/
|
||||
public final class HazelcastContainer extends GenericContainer<HazelcastContainer> {
|
||||
|
||||
private static final int DEFAULT_PORT = 5701;
|
||||
|
||||
public HazelcastContainer(DockerImageName dockerImageName) {
|
||||
super(dockerImageName);
|
||||
addExposedPorts(DEFAULT_PORT);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -109,6 +109,11 @@ public enum TestImage {
|
||||
GRAFANA_OTEL_LGTM("grafana/otel-lgtm", "0.6.0", () -> LgtmStackContainer.class,
|
||||
(container) -> ((LgtmStackContainer) container).withStartupTimeout(Duration.ofMinutes(2))),
|
||||
|
||||
/**
|
||||
* A container image suitable for testing Hazelcast.
|
||||
*/
|
||||
HAZELCAST("hazelcast/hazelcast", "5.5.0-slim", () -> HazelcastContainer.class),
|
||||
|
||||
/**
|
||||
* A container image suitable for testing Confluent's distribution of Kafka.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user