Created
October 2, 2014 14:31
-
-
Save mosheeshel/c427b43c36b256731a0b to your computer and use it in GitHub Desktop.
JUnit @rule for starting a docker container from within an Integration test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package rules; | |
import com.google.common.collect.Lists; | |
import com.google.common.collect.Maps; | |
import com.spotify.docker.client.DefaultDockerClient; | |
import com.spotify.docker.client.DockerClient; | |
import com.spotify.docker.client.DockerException; | |
import com.spotify.docker.client.messages.ContainerConfig; | |
import com.spotify.docker.client.messages.ContainerCreation; | |
import com.spotify.docker.client.messages.HostConfig; | |
import com.spotify.docker.client.messages.PortBinding; | |
import org.eclipse.jdt.launching.SocketUtil; | |
import org.junit.rules.ExternalResource; | |
import org.junit.runner.Description; | |
import org.junit.runners.model.Statement; | |
import java.util.ArrayList; | |
import java.util.List; | |
import java.util.Map; | |
/** | |
* Created with IntelliJ IDEA. | |
* User: moshe | |
* Date: 9/23/14 | |
* Time: 11:57 AM | |
*/ | |
public class DockerContainerRule extends ExternalResource { | |
public static final String DOCKER_SERVICE_URL = "http://localhost:2375"; | |
private final DockerClient dockerClient; | |
private final HostConfig hostConfig; | |
private final Map<String, String> externalServicePorts = Maps.newHashMap(); | |
private ContainerCreation container; | |
public DockerContainerRule(String imageName, Map<String, Map.Entry<String, String>> portMapping, String[] cmd) { | |
this(imageName, portMapping, DOCKER_SERVICE_URL, cmd); | |
} | |
public DockerContainerRule(String imageName, Map<String, Map.Entry<String, String>> portMapping, String dockerServiceUrl, String[] cmd) { | |
List<String> exposedPorts = new ArrayList<>(); | |
for (Map.Entry<String, Map.Entry<String, String>> entry : portMapping.entrySet()) { | |
exposedPorts.add(entry.getValue().getKey() + "/tcp"); | |
} | |
ContainerConfig containerConfig = ContainerConfig.builder() | |
.image(imageName) | |
.networkDisabled(false) | |
.cmd(cmd) | |
.exposedPorts(exposedPorts.toArray(new String[exposedPorts.size()])) | |
.build(); | |
dockerClient = new DefaultDockerClient(dockerServiceUrl); | |
Map<String, List<PortBinding>> portBindings = Maps.newHashMap(); | |
// you can leave the host IP empty for the PortBinding.of first parameter | |
for (Map.Entry<String, Map.Entry<String, String>> entry : portMapping.entrySet()) { | |
String externalPort = isSet(entry.getValue().getValue()) ? entry.getValue().getValue() : Integer.toString(SocketUtil.findFreePort()); | |
externalServicePorts.put(entry.getKey(), externalPort); | |
portBindings.put(entry.getValue().getKey() + "/tcp", Lists.newArrayList(PortBinding.of("0.0.0.0", externalPort))); | |
} | |
hostConfig = HostConfig.builder() | |
.portBindings(portBindings) | |
.build(); | |
try { | |
//dockerClient.pull(imageName); | |
container = dockerClient.createContainer(containerConfig); | |
} catch (DockerException | InterruptedException e) { | |
e.printStackTrace(); | |
} | |
} | |
private boolean isSet(String value) { | |
return value != null && !value.equals(""); | |
} | |
public Map<String, String> getExternalServicePorts() { | |
return externalServicePorts; | |
} | |
@Override | |
public Statement apply(Statement base, Description description) { | |
return super.apply(base, description); | |
} | |
@Override | |
protected void before() throws Throwable { | |
super.before(); | |
dockerClient.startContainer(container.id(), hostConfig); | |
Thread.sleep(5000); | |
} | |
@Override | |
protected void after() { | |
super.after(); | |
try { | |
dockerClient.killContainer(container.id()); | |
dockerClient.removeContainer(container.id(), true); | |
} catch (DockerException | InterruptedException e) { | |
e.printStackTrace(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See https://gist.github.com/mosheeshel/b095077e4d7673533aa8
And https://gist.github.com/mosheeshel/f43f80ddca9f75f11927