forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAttachContainerCmdIT.java
More file actions
298 lines (236 loc) · 10.3 KB
/
Copy pathAttachContainerCmdIT.java
File metadata and controls
298 lines (236 loc) · 10.3 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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
package com.github.dockerjava.cmd;
import com.github.dockerjava.api.DockerClient;
import com.github.dockerjava.api.async.ResultCallback;
import com.github.dockerjava.api.command.CreateContainerResponse;
import com.github.dockerjava.api.model.Frame;
import com.github.dockerjava.api.model.StreamType;
import org.junit.Assume;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.InputStream;
import java.io.PipedInputStream;
import java.io.PipedOutputStream;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import static com.github.dockerjava.core.DockerRule.DEFAULT_IMAGE;
import static java.util.concurrent.TimeUnit.SECONDS;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.emptyString;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.not;
import static org.junit.Assert.*;
/**
* @author Kanstantsin Shautsou
*/
public class AttachContainerCmdIT extends CmdIT {
private static final Logger LOG = LoggerFactory.getLogger(AttachContainerCmdIT.class);
@Rule
public ExpectedException expectedException = ExpectedException.none();
@Test
public void attachContainerWithStdin() throws Exception {
DockerClient dockerClient = dockerRule.getClient();
Assume.assumeTrue("supports stdin attach", getFactoryType().supportsStdinAttach());
String snippet = "hello world";
CreateContainerResponse container = dockerClient.createContainerCmd("busybox")
.withCmd("/bin/sh", "-c", "read line && echo $line")
.withTty(false)
.withAttachStdin(true)
.withAttachStdout(true)
.withAttachStderr(true)
.withStdinOpen(true)
.exec();
LOG.info("Created container: {}", container.toString());
assertThat(container.getId(), not(is(emptyString())));
AttachContainerTestCallback callback = new AttachContainerTestCallback() {
@Override
public void onNext(Frame frame) {
assertEquals(frame.getStreamType(), StreamType.STDOUT);
super.onNext(frame);
}
};
try (
PipedOutputStream out = new PipedOutputStream();
PipedInputStream in = new PipedInputStream(out)
) {
dockerClient.attachContainerCmd(container.getId())
.withStdErr(true)
.withStdOut(true)
.withFollowStream(true)
.withStdIn(in)
.exec(callback);
assertTrue("Processing of the response should start shortly after executing `attachContainerCmd`",
callback.awaitStarted(5, SECONDS));
dockerClient.startContainerCmd(container.getId()).exec();
out.write((snippet + "\n").getBytes());
out.flush();
callback.awaitCompletion(15, SECONDS);
callback.close();
}
assertThat(callback.toString(), containsString(snippet));
}
@Test
public void attachContainerWithoutTTY() throws Exception {
DockerClient dockerClient = dockerRule.getClient();
String snippet = "hello world";
CreateContainerResponse container = dockerClient.createContainerCmd(DEFAULT_IMAGE)
.withCmd("echo", snippet)
.withTty(false)
.withAttachStdout(true)
.withAttachStderr(true)
.exec();
LOG.info("Created container: {}", container.toString());
assertThat(container.getId(), not(is(emptyString())));
AttachContainerTestCallback callback = new AttachContainerTestCallback() {
@Override
public void onNext(Frame frame) {
assertThat(frame.getStreamType(), equalTo(StreamType.STDOUT));
super.onNext(frame);
}
};
dockerClient.attachContainerCmd(container.getId())
.withStdErr(true)
.withStdOut(true)
.withFollowStream(true)
.withLogs(true)
.exec(callback);
assertTrue("Processing of the response should start shortly after executing `attachContainerCmd`",
callback.awaitStarted(5, SECONDS));
dockerClient.startContainerCmd(container.getId()).exec();
callback.awaitCompletion(30, TimeUnit.SECONDS);
callback.close();
assertThat(callback.toString(), containsString(snippet));
}
@Test
public void attachContainerWithTTY() throws Exception {
DockerClient dockerClient = dockerRule.getClient();
File baseDir = new File(Thread.currentThread().getContextClassLoader()
.getResource("attachContainerTestDockerfile").getFile());
String imageId = dockerRule.buildImage(baseDir);
CreateContainerResponse container = dockerClient.createContainerCmd(imageId)
.withTty(true)
.withAttachStdout(true)
.withAttachStderr(true)
.exec();
LOG.info("Created container: {}", container.toString());
assertThat(container.getId(), not(is(emptyString())));
AttachContainerTestCallback callback = new AttachContainerTestCallback() {
@Override
public void onNext(Frame frame) {
assertThat(frame.getStreamType(), equalTo(StreamType.RAW));
super.onNext(frame);
}
};
dockerClient.attachContainerCmd(container.getId())
.withStdErr(true)
.withStdOut(true)
.withFollowStream(true)
.exec(callback);
assertTrue("Processing of the response should start shortly after executing `attachContainerCmd`",
callback.awaitStarted(5, SECONDS));
dockerClient.startContainerCmd(container.getId()).exec();
callback.awaitCompletion(15, TimeUnit.SECONDS);
callback.close();
LOG.debug("log: {}", callback.toString());
// HexDump.dump(collectFramesCallback.toString().getBytes(), 0, System.out, 0);
assertThat(callback.toString(), containsString("stdout\r\nstderr"));
}
@Test
public void attachContainerStdinUnsupported() throws Exception {
DockerClient dockerClient = dockerRule.getClient();
Assume.assumeFalse("does not support stdin attach", getFactoryType().supportsStdinAttach());
expectedException.expect(UnsupportedOperationException.class);
String snippet = "hello world";
CreateContainerResponse container = dockerClient.createContainerCmd(DEFAULT_IMAGE)
.withCmd("echo", snippet)
.withTty(false)
.withAttachStdin(true)
.withAttachStdout(true)
.withAttachStderr(true)
.exec();
LOG.info("Created container: {}", container.toString());
assertThat(container.getId(), not(is(emptyString())));
AttachContainerTestCallback callback = new AttachContainerTestCallback() {
@Override
public void onNext(Frame frame) {
assertThat(frame.getStreamType(), equalTo(StreamType.STDOUT));
super.onNext(frame);
}
};
InputStream stdin = new ByteArrayInputStream("".getBytes());
dockerClient.attachContainerCmd(container.getId())
.withStdErr(true)
.withStdOut(true)
.withFollowStream(true)
.withLogs(true)
.withStdIn(stdin)
.exec(callback);
assertFalse("Processing of the response is not expected to be started" +
" because `attachContainerCmd` with stdin is not supported", callback.awaitStarted(5, SECONDS));
dockerClient.startContainerCmd(container.getId()).exec();
callback.awaitCompletion(30, TimeUnit.SECONDS);
callback.close();
}
/**
* {@link ResultCallback#onComplete()} should be called immediately after
* container exit. It was broken for Netty and TLS connection.
*/
@Test
public void attachContainerClosesStdoutWhenContainerExits() throws Exception {
DockerClient dockerClient = dockerRule.getClient();
CreateContainerResponse container = dockerClient.createContainerCmd(DEFAULT_IMAGE)
.withCmd("echo", "hello")
.withTty(false)
.withAttachStdout(true)
.withAttachStderr(true)
.exec();
LOG.info("Created container: {}", container.toString());
CountDownLatch gotLine = new CountDownLatch(1);
try (
ResultCallback.Adapter<Frame> resultCallback = dockerClient.attachContainerCmd(container.getId())
.withStdOut(true)
.withStdErr(true)
.withFollowStream(true)
.exec(new ResultCallback.Adapter<Frame>() {
@Override
public void onNext(Frame item) {
LOG.info("Got frame: {}", item);
if (item.getStreamType() == StreamType.STDOUT) {
gotLine.countDown();
}
super.onNext(item);
}
@Override
public void onComplete() {
LOG.info("On complete");
super.onComplete();
}
})
) {
resultCallback.awaitStarted(5, SECONDS);
LOG.info("Attach started");
dockerClient.startContainerCmd(container.getId()).exec();
LOG.info("Container started");
assertTrue("Should get first line quickly after the start", gotLine.await(15, SECONDS));
resultCallback.awaitCompletion(5, SECONDS);
}
}
public static class AttachContainerTestCallback extends ResultCallback.Adapter<Frame> {
private final 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();
}
}
}