forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogContainerCmdIT.java
More file actions
264 lines (199 loc) · 9.39 KB
/
Copy pathLogContainerCmdIT.java
File metadata and controls
264 lines (199 loc) · 9.39 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
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.exception.NotFoundException;
import com.github.dockerjava.api.model.Frame;
import com.github.dockerjava.api.model.StreamType;
import com.github.dockerjava.utils.LogContainerTestCallback;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.CopyOnWriteArrayList;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.stream.Collectors;
import java.util.stream.LongStream;
import static org.awaitility.Awaitility.await;
import static org.hamcrest.CoreMatchers.everyItem;
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.hasSize;
import static org.hamcrest.Matchers.hasToString;
import static org.hamcrest.Matchers.not;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
public class LogContainerCmdIT extends CmdIT {
private static final Logger LOG = LoggerFactory.getLogger(LogContainerCmdIT.class);
@Test
public void asyncLogContainerWithTtyEnabled() throws Exception {
CreateContainerResponse container = dockerRule.getClient().createContainerCmd("busybox")
.withCmd("/bin/sh", "-c", "while true; do echo hello; sleep 1; done")
.withTty(true)
.exec();
LOG.info("Created container: {}", container.toString());
assertThat(container.getId(), not(is(emptyString())));
dockerRule.getClient().startContainerCmd(container.getId())
.exec();
LogContainerTestCallback loggingCallback = new LogContainerTestCallback(true);
// this essentially test the since=0 case
dockerRule.getClient().logContainerCmd(container.getId())
.withStdErr(true)
.withStdOut(true)
.withFollowStream(true)
.withTailAll()
.exec(loggingCallback);
loggingCallback.awaitCompletion(3, TimeUnit.SECONDS);
assertTrue(loggingCallback.toString().contains("hello"));
assertEquals(loggingCallback.getCollectedFrames().get(0).getStreamType(), StreamType.RAW);
}
@Test
public void asyncLogContainerWithTtyDisabled() throws Exception {
CreateContainerResponse container = dockerRule.getClient().createContainerCmd("busybox")
.withCmd("/bin/sh", "-c", "while true; do echo hello; sleep 1; done")
.withTty(false)
.exec();
LOG.info("Created container: {}", container.toString());
assertThat(container.getId(), not(is(emptyString())));
dockerRule.getClient().startContainerCmd(container.getId())
.exec();
LogContainerTestCallback loggingCallback = new LogContainerTestCallback(true);
// this essentially test the since=0 case
dockerRule.getClient().logContainerCmd(container.getId())
.withStdErr(true)
.withStdOut(true)
.withFollowStream(true)
.withTailAll()
.exec(loggingCallback);
loggingCallback.awaitCompletion(3, TimeUnit.SECONDS);
assertTrue(loggingCallback.toString().contains("hello"));
assertEquals(StreamType.STDOUT, loggingCallback.getCollectedFrames().get(0).getStreamType());
}
@Test
public void asyncLogNonExistingContainer() throws Exception {
LogContainerTestCallback loggingCallback = new LogContainerTestCallback() {
@Override
public void onError(Throwable throwable) {
assertEquals(NotFoundException.class.getName(), throwable.getClass().getName());
try {
// close the callback to prevent the call to onComplete
close();
} catch (IOException e) {
throw new RuntimeException();
}
super.onError(throwable);
}
public void onComplete() {
super.onComplete();
throw new AssertionError("expected NotFoundException");
};
};
dockerRule.getClient().logContainerCmd("non-existing").withStdErr(true).withStdOut(true).exec(loggingCallback)
.awaitCompletion();
}
@Test
public void asyncMultipleLogContainer() throws Exception {
String snippet = "hello world";
CreateContainerResponse container = dockerRule.getClient().createContainerCmd("busybox")
.withCmd("/bin/echo", snippet)
.exec();
LOG.info("Created container: {}", container.toString());
assertThat(container.getId(), not(is(emptyString())));
dockerRule.getClient().startContainerCmd(container.getId()).exec();
int exitCode = dockerRule.getClient().waitContainerCmd(container.getId())
.start()
.awaitStatusCode();
assertThat(exitCode, equalTo(0));
LogContainerTestCallback loggingCallback = new LogContainerTestCallback();
dockerRule.getClient().logContainerCmd(container.getId())
.withStdErr(true)
.withStdOut(true)
.exec(loggingCallback);
loggingCallback.close();
loggingCallback = new LogContainerTestCallback();
dockerRule.getClient().logContainerCmd(container.getId())
.withStdErr(true)
.withStdOut(true)
.exec(loggingCallback);
loggingCallback.close();
loggingCallback = new LogContainerTestCallback();
dockerRule.getClient().logContainerCmd(container.getId())
.withStdErr(true)
.withStdOut(true)
.exec(loggingCallback);
loggingCallback.awaitCompletion();
assertTrue(loggingCallback.toString().contains(snippet));
}
@Test
public void asyncLogContainerWithSince() throws Exception {
String snippet = "hello world";
CreateContainerResponse container = dockerRule.getClient().createContainerCmd("busybox")
.withCmd("/bin/echo", snippet)
.exec();
LOG.info("Created container: {}", container.toString());
assertThat(container.getId(), not(is(emptyString())));
int timestamp = (int) (System.currentTimeMillis() / 1000);
dockerRule.getClient().startContainerCmd(container.getId()).exec();
int exitCode = dockerRule.getClient().waitContainerCmd(container.getId())
.start()
.awaitStatusCode();
assertThat(exitCode, equalTo(0));
LogContainerTestCallback loggingCallback = new LogContainerTestCallback();
dockerRule.getClient().logContainerCmd(container.getId())
.withStdErr(true)
.withStdOut(true)
.withSince(timestamp)
.withUntil(timestamp + 1000)
.exec(loggingCallback);
loggingCallback.awaitCompletion();
assertThat(loggingCallback.toString(), containsString(snippet));
}
@Test(timeout = 10_000)
public void simultaneousCommands() throws Exception {
// Create a new client to not affect other tests
DockerClient client = dockerRule.newClient();
CreateContainerResponse container = client.createContainerCmd("busybox")
.withCmd("/bin/sh", "-c", "echo hello world; sleep infinity")
.exec();
client.startContainerCmd(container.getId()).exec();
// Simulate 100 simultaneous connections
int connections = 100;
ExecutorService executor = Executors.newFixedThreadPool(connections);
try {
List<Frame> firstFrames = new CopyOnWriteArrayList<>();
executor.invokeAll(
LongStream.range(0, connections).<Callable<Object>>mapToObj(__ -> {
return () -> {
return client.logContainerCmd(container.getId())
.withStdOut(true)
.withFollowStream(true)
.exec(new ResultCallback.Adapter<Frame>() {
final AtomicBoolean first = new AtomicBoolean(true);
@Override
public void onNext(Frame object) {
if (first.compareAndSet(true, false)) {
firstFrames.add(object);
}
super.onNext(object);
}
});
};
}).collect(Collectors.toList())
);
await().atMost(5, TimeUnit.SECONDS).untilAsserted(() -> {
assertThat(firstFrames, hasSize(connections));
});
assertThat(firstFrames, everyItem(hasToString("STDOUT: hello world")));
} finally {
executor.shutdownNow();
}
}
}