forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInspectExecCmdImplTest.java
More file actions
144 lines (120 loc) · 6.68 KB
/
Copy pathInspectExecCmdImplTest.java
File metadata and controls
144 lines (120 loc) · 6.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
package com.github.dockerjava.core.command;
import static com.github.dockerjava.core.RemoteApiVersion.VERSION_1_22;
import static com.github.dockerjava.utils.TestUtils.getVersion;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.isEmptyString;
import static org.hamcrest.Matchers.not;
import static org.hamcrest.Matchers.notNullValue;
import static org.hamcrest.Matchers.nullValue;
import java.io.IOException;
import java.lang.reflect.Method;
import java.security.SecureRandom;
import com.github.dockerjava.core.RemoteApiVersion;
import org.testng.ITestResult;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.AfterTest;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Test;
import com.github.dockerjava.api.command.CreateContainerResponse;
import com.github.dockerjava.api.command.ExecCreateCmdResponse;
import com.github.dockerjava.api.command.InspectContainerResponse;
import com.github.dockerjava.api.command.InspectExecResponse;
import com.github.dockerjava.client.AbstractDockerClientTest;
import com.github.dockerjava.test.serdes.JSONTestHelper;
@Test(groups = "integration")
public class InspectExecCmdImplTest extends AbstractDockerClientTest {
@BeforeTest
public void beforeTest() throws Exception {
super.beforeTest();
}
@AfterTest
public void afterTest() {
super.afterTest();
}
@BeforeMethod
public void beforeMethod(Method method) {
super.beforeMethod(method);
}
@AfterMethod
public void afterMethod(ITestResult result) {
super.afterMethod(result);
}
@Test(groups = "ignoreInCircleCi")
public void inspectExec() throws Exception {
String containerName = "generated_" + new SecureRandom().nextInt();
CreateContainerResponse container = dockerClient.createContainerCmd("busybox").withCmd("sleep", "9999")
.withName(containerName).exec();
LOG.info("Created container {}", container.toString());
assertThat(container.getId(), not(isEmptyString()));
dockerClient.startContainerCmd(container.getId()).exec();
// Check that file does not exist
ExecCreateCmdResponse checkFileExec1 = dockerClient.execCreateCmd(container.getId()).withAttachStdout(true)
.withAttachStderr(true).withCmd("test", "-e", "/marker").exec();
LOG.info("Created exec {}", checkFileExec1.toString());
assertThat(checkFileExec1.getId(), not(isEmptyString()));
dockerClient.execStartCmd(checkFileExec1.getId()).withDetach(false)
.exec(new ExecStartResultCallback(System.out, System.err)).awaitCompletion();
InspectExecResponse first = dockerClient.inspectExecCmd(checkFileExec1.getId()).exec();
assertThat(first.isRunning(), is(false));
assertThat(first.getExitCode(), is(1));
// Create the file
ExecCreateCmdResponse touchFileExec = dockerClient.execCreateCmd(container.getId()).withAttachStdout(true)
.withAttachStderr(true).withCmd("touch", "/marker").exec();
LOG.info("Created exec {}", touchFileExec.toString());
assertThat(touchFileExec.getId(), not(isEmptyString()));
dockerClient.execStartCmd(touchFileExec.getId()).withDetach(false)
.exec(new ExecStartResultCallback(System.out, System.err)).awaitCompletion();
InspectExecResponse second = dockerClient.inspectExecCmd(touchFileExec.getId()).exec();
assertThat(second.isRunning(), is(false));
assertThat(second.getExitCode(), is(0));
// Check that file does exist now
ExecCreateCmdResponse checkFileExec2 = dockerClient.execCreateCmd(container.getId()).withAttachStdout(true)
.withAttachStderr(true).withCmd("test", "-e", "/marker").exec();
LOG.info("Created exec {}", checkFileExec2.toString());
assertThat(checkFileExec2.getId(), not(isEmptyString()));
dockerClient.execStartCmd(checkFileExec2.getId()).withDetach(false)
.exec(new ExecStartResultCallback(System.out, System.err)).awaitCompletion();
InspectExecResponse third = dockerClient.inspectExecCmd(checkFileExec2.getId()).exec();
assertThat(third.isRunning(), is(false));
assertThat(third.getExitCode(), is(0));
// Get container info and check its roundtrip to ensure the consistency
InspectContainerResponse containerInfo = dockerClient.inspectContainerCmd(container.getId()).exec();
assertEquals(containerInfo.getId(), container.getId());
JSONTestHelper.testRoundTrip(containerInfo);
}
@Test(groups = "ignoreInCircleCi")
public void inspectExecNetworkSettings() throws IOException {
final RemoteApiVersion apiVersion = getVersion(dockerClient);
String containerName = "generated_" + new SecureRandom().nextInt();
CreateContainerResponse container = dockerClient.createContainerCmd("busybox").withCmd("sleep", "9999")
.withName(containerName).exec();
LOG.info("Created container {}", container.toString());
assertThat(container.getId(), not(isEmptyString()));
dockerClient.startContainerCmd(container.getId()).exec();
ExecCreateCmdResponse exec = dockerClient.execCreateCmd(container.getId()).withAttachStdout(true)
.withAttachStderr(true).withCmd("/bin/bash").exec();
LOG.info("Created exec {}", exec.toString());
assertThat(exec.getId(), not(isEmptyString()));
InspectExecResponse inspectExecResponse = dockerClient.inspectExecCmd(exec.getId()).exec();
if (apiVersion.isGreaterOrEqual(RemoteApiVersion.VERSION_1_22)) {
assertThat(inspectExecResponse.getExitCode(), is(nullValue()));
assertThat(inspectExecResponse.getCanRemove(), is(false));
assertThat(inspectExecResponse.getContainerID(), is(container.getId()));
} else {
assertThat(inspectExecResponse.getExitCode(), is(0));
assertNotNull(inspectExecResponse.getContainer().getNetworkSettings().getNetworks().get("bridge"));
}
assertThat(inspectExecResponse.isOpenStdin(), is(false));
assertThat(inspectExecResponse.isOpenStdout(), is(true));
assertThat(inspectExecResponse.isRunning(), is(false));
final InspectExecResponse.Container inspectContainer = inspectExecResponse.getContainer();
if (apiVersion.isGreaterOrEqual(VERSION_1_22)) {
assertThat(inspectContainer, nullValue());
} else {
assertThat(inspectContainer, notNullValue());
assertNotNull(inspectContainer.getNetworkSettings().getNetworks().get("bridge"));
}
}
}