forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJoinSwarmCmdExecIT.java
More file actions
86 lines (68 loc) · 2.93 KB
/
Copy pathJoinSwarmCmdExecIT.java
File metadata and controls
86 lines (68 loc) · 2.93 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
package com.github.dockerjava.cmd.swarm;
import com.github.dockerjava.api.DockerClient;
import com.github.dockerjava.api.exception.DockerException;
import com.github.dockerjava.api.model.Info;
import com.github.dockerjava.api.model.LocalNodeState;
import com.github.dockerjava.api.model.Swarm;
import com.github.dockerjava.api.model.SwarmJoinTokens;
import com.github.dockerjava.api.model.SwarmSpec;
import com.google.common.collect.Lists;
import org.junit.Before;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.is;
public class JoinSwarmCmdExecIT extends SwarmCmdIT {
public static final Logger LOG = LoggerFactory.getLogger(JoinSwarmCmdExecIT.class);
private DockerClient docker1;
private DockerClient docker2;
@Before
public void setUp() throws Exception {
docker1 = startDockerInDocker();
docker2 = startDockerInDocker();
}
private SwarmJoinTokens initSwarmOnDocker(DockerClient docker) {
SwarmSpec swarmSpec = new SwarmSpec();
docker.initializeSwarmCmd(swarmSpec)
.exec();
LOG.info("Initialized swarm docker1: {}", swarmSpec.toString());
Swarm swarm = docker.inspectSwarmCmd().exec();
LOG.info("Inspected swarm on docker1: {}", swarm.toString());
return swarm.getJoinTokens();
}
@Test
public void joinSwarmAsWorker() throws Exception {
SwarmJoinTokens tokens = initSwarmOnDocker(docker1);
docker2.joinSwarmCmd()
.withRemoteAddrs(Lists.newArrayList("docker1"))
.withJoinToken(tokens.getWorker())
.exec();
LOG.info("docker2 joined docker1's swarm");
Info info = docker2.infoCmd().exec();
LOG.info("Inspected docker2: {}", info.toString());
assertThat(info.getSwarm().getLocalNodeState(), is(equalTo(LocalNodeState.ACTIVE)));
}
@Test
public void joinSwarmAsManager() throws DockerException, InterruptedException {
SwarmJoinTokens tokens = initSwarmOnDocker(docker1);
docker2.joinSwarmCmd()
.withRemoteAddrs(Lists.newArrayList("docker1"))
.withJoinToken(tokens.getManager())
.exec();
LOG.info("docker2 joined docker1's swarm");
Info info = docker2.infoCmd().exec();
LOG.info("Inspected docker2: {}", info.toString());
assertThat(info.getSwarm().getLocalNodeState(), is(equalTo(LocalNodeState.ACTIVE)));
}
@Test(expected = DockerException.class)
public void joinSwarmIfAlreadyInSwarm() throws Exception {
SwarmJoinTokens tokens = initSwarmOnDocker(docker1);
initSwarmOnDocker(docker2);
docker2.joinSwarmCmd()
.withRemoteAddrs(Lists.newArrayList("docker1"))
.withJoinToken(tokens.getWorker())
.exec();
}
}