forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAttachContainerCmdExecTest.java
More file actions
174 lines (132 loc) · 5.77 KB
/
Copy pathAttachContainerCmdExecTest.java
File metadata and controls
174 lines (132 loc) · 5.77 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
package com.github.dockerjava.netty.exec;
import static java.util.concurrent.TimeUnit.SECONDS;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.isEmptyString;
import static org.hamcrest.Matchers.not;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.InputStream;
import java.lang.reflect.Method;
import java.util.concurrent.TimeUnit;
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.InspectContainerResponse;
import com.github.dockerjava.api.model.Frame;
import com.github.dockerjava.api.model.StreamType;
import com.github.dockerjava.core.command.AttachContainerResultCallback;
import com.github.dockerjava.netty.AbstractNettyDockerClientTest;
@Test(groups = "integration")
public class AttachContainerCmdExecTest extends AbstractNettyDockerClientTest {
@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
public void attachContainerWithoutTTY() throws Exception {
String snippet = "hello world";
CreateContainerResponse container = dockerClient.createContainerCmd("busybox").withCmd("echo", snippet)
.withTty(false).exec();
LOG.info("Created container: {}", container.toString());
assertThat(container.getId(), not(isEmptyString()));
dockerClient.startContainerCmd(container.getId()).exec();
AttachContainerTestCallback callback = new AttachContainerTestCallback() {
@Override
public void onNext(Frame frame) {
assertEquals(frame.getStreamType(), StreamType.STDOUT);
super.onNext(frame);
};
};
dockerClient.attachContainerCmd(container.getId()).withStdErr(true).withStdOut(true).withFollowStream(true)
.withLogs(true).exec(callback).awaitCompletion(10, SECONDS);
callback.close();
assertThat(callback.toString(), containsString(snippet));
}
@Test
public void attachContainerWithStdin() throws Exception {
String snippet = "hello world";
CreateContainerResponse container = dockerClient.createContainerCmd("busybox")
.withCmd("/bin/sh", "-c", "sleep 1 && read line && echo $line")
.withTty(false)
.withStdinOpen(true)
.exec();
LOG.info("Created container: {}", container.toString());
assertThat(container.getId(), not(isEmptyString()));
dockerClient.startContainerCmd(container.getId()).exec();
Thread.sleep(SECONDS.toMillis(10)); //wait bash initialisation
InspectContainerResponse inspectContainerResponse = dockerClient.inspectContainerCmd(container.getId()).exec();
assertTrue(inspectContainerResponse.getState().getRunning());
AttachContainerTestCallback callback = new AttachContainerTestCallback() {
@Override
public void onNext(Frame frame) {
assertEquals(frame.getStreamType(), StreamType.STDOUT);
super.onNext(frame);
}
};
InputStream stdin = new ByteArrayInputStream((snippet + "\n").getBytes());
dockerClient.attachContainerCmd(container.getId())
.withStdErr(true)
.withStdOut(true)
.withFollowStream(true)
.withStdIn(stdin)
.exec(callback)
.awaitCompletion(15, SECONDS);
callback.close();
assertThat(callback.toString(), containsString(snippet));
}
@Test
public void attachContainerWithTTY() throws Exception {
File baseDir = new File(Thread.currentThread().getContextClassLoader()
.getResource("attachContainerTestDockerfile").getFile());
String imageId = buildImage(baseDir);
CreateContainerResponse container = dockerClient.createContainerCmd(imageId).withTty(true).exec();
LOG.info("Created container: {}", container.toString());
assertThat(container.getId(), not(isEmptyString()));
dockerClient.startContainerCmd(container.getId()).exec();
AttachContainerTestCallback callback = new AttachContainerTestCallback() {
@Override
public void onNext(Frame frame) {
assertEquals(frame.getStreamType(), StreamType.RAW);
super.onNext(frame);
};
};
dockerClient.attachContainerCmd(container.getId())
.withStdErr(true)
.withStdOut(true)
.withFollowStream(true)
.exec(callback)
.awaitCompletion(10, SECONDS);
callback.close();
// HexDump.dump(collectFramesCallback.toString().getBytes(), 0, System.out, 0);
assertThat(callback.toString(), containsString("stdout\r\nstderr"));
}
public static class AttachContainerTestCallback extends AttachContainerResultCallback {
private StringBuffer log = new StringBuffer();
@Override
public void onNext(Frame item) {
log.append(new String(item.getPayload()));
super.onNext(item);
}
@Override
public String toString() {
return log.toString();
}
}
}