com.adobe.testing.s3mock.testcontainers.S3MockContainer Maven / Gradle / Ivy
/*
* Copyright 2017-2022 Adobe.
*
* 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.
*/
package com.adobe.testing.s3mock.testcontainers;
import java.nio.file.Path;
import org.testcontainers.containers.BindMode;
import org.testcontainers.containers.GenericContainer;
import org.testcontainers.containers.wait.strategy.Wait;
import org.testcontainers.utility.DockerImageName;
public class S3MockContainer extends GenericContainer {
public static final String IMAGE_NAME = "adobe/s3mock";
private static final int S3MOCK_DEFAULT_HTTP_PORT = 9090;
private static final int S3MOCK_DEFAULT_HTTPS_PORT = 9191;
private static final DockerImageName DEFAULT_IMAGE_NAME = DockerImageName.parse(IMAGE_NAME);
/**
* Create a S3MockContainer.
*
* @param tag in the format of "2.1.27"
*/
public S3MockContainer(String tag) {
this(DEFAULT_IMAGE_NAME.withTag(tag));
}
/**
* Create a S3MockContainer.
*
* @param dockerImageName in the format of {@link DockerImageName#parse(String)} where the
* parameter is the full image name like "adobe/s3mock:2.1.27"
*/
public S3MockContainer(final DockerImageName dockerImageName) {
super(dockerImageName);
dockerImageName.assertCompatibleWith(DEFAULT_IMAGE_NAME);
addExposedPort(S3MOCK_DEFAULT_HTTP_PORT);
addExposedPort(S3MOCK_DEFAULT_HTTPS_PORT);
waitingFor(Wait.forHttp("/favicon.ico")
.forPort(S3MOCK_DEFAULT_HTTP_PORT)
.withMethod("GET")
.forStatusCode(200));
}
public S3MockContainer withRetainFilesOnExit(boolean retainFilesOnExit) {
this.addEnv("retainFilesOnExit", String.valueOf(retainFilesOnExit));
return self();
}
public S3MockContainer withValidKmsKeys(String kmsKeys) {
//TODO: this uses the legacy-style properties. Leave for now as test that property translation
// works in S3MockApplication.
this.addEnv("validKmsKeys", kmsKeys);
return self();
}
public S3MockContainer withInitialBuckets(String initialBuckets) {
//TODO: this uses the legacy-style properties. Leave for now as test that property translation
// works in S3MockApplication.
this.addEnv("initialBuckets", initialBuckets);
return self();
}
/**
* Mount a volume from the host system for the S3Mock to use as the "root".
* Docker must be able to read / write into this directory (!)
*
* @param root absolute path in host system
*/
public S3MockContainer withVolumeAsRoot(String root) {
this.withFileSystemBind(root, "/s3mockroot", BindMode.READ_WRITE);
//TODO: this uses the legacy-style properties. Leave for now as test that property translation
// works in S3MockApplication.
this.addEnv("root", "/s3mockroot");
return self();
}
/**
* Mount a volume from the host system for the S3Mock to use as the "root".
* Docker must be able to read / write into this directory (!)
*
* @param root absolute path in host system
*/
public S3MockContainer withVolumeAsRoot(Path root) {
return this.withVolumeAsRoot(root.toString());
}
public String getHttpEndpoint() {
return String.format("http://%s:%d", getHost(), getHttpServerPort());
}
public String getHttpsEndpoint() {
return String.format("https://%s:%d", getHost(), getHttpsServerPort());
}
public Integer getHttpServerPort() {
return getMappedPort(S3MOCK_DEFAULT_HTTP_PORT);
}
public Integer getHttpsServerPort() {
return getMappedPort(S3MOCK_DEFAULT_HTTPS_PORT);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy