forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInitializeSwarmCmdExecTest.java
More file actions
97 lines (81 loc) · 3.46 KB
/
Copy pathInitializeSwarmCmdExecTest.java
File metadata and controls
97 lines (81 loc) · 3.46 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
package com.github.dockerjava.core.command;
import com.github.dockerjava.api.exception.DockerException;
import com.github.dockerjava.api.exception.NotAcceptableException;
import com.github.dockerjava.api.model.Swarm;
import com.github.dockerjava.api.model.SwarmCAConfig;
import com.github.dockerjava.api.model.SwarmDispatcherConfig;
import com.github.dockerjava.api.model.SwarmOrchestration;
import com.github.dockerjava.api.model.SwarmRaftConfig;
import com.github.dockerjava.api.model.SwarmSpec;
import com.github.dockerjava.api.model.TaskDefaults;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
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 java.lang.reflect.Method;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.is;
@Test(groups = "swarm-integration")
public class InitializeSwarmCmdExecTest extends AbstractSwarmDockerClientTest {
public static final Logger LOG = LoggerFactory.getLogger(InitializeSwarmCmdExecTest.class);
@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 initializeSwarm() throws DockerException {
SwarmSpec swarmSpec = new SwarmSpec()
.withName("swarm")
.withDispatcher(new SwarmDispatcherConfig()
.withHeartbeatPeriod(10000000L)
).withOrchestration(new SwarmOrchestration()
.withTaskHistoryRententionLimit(100)
).withCaConfig(new SwarmCAConfig()
.withNodeCertExpiry(60 * 60 * 1000000000L /*ns */))
.withRaft(new SwarmRaftConfig()
.withElectionTick(8)
.withSnapshotInterval(20000)
.withHeartbeatTick(5)
.withLogEntriesForSlowFollowers(200)
).withTaskDefaults(new TaskDefaults());
dockerClient.initializeSwarmCmd(swarmSpec)
.withListenAddr("127.0.0.1")
.withAdvertiseAddr("127.0.0.1")
.exec();
LOG.info("Initialized swarm: {}", swarmSpec.toString());
Swarm swarm = dockerClient.inspectSwarmCmd().exec();
LOG.info("Inspected swarm: {}", swarm.toString());
assertThat(swarm.getSpec(), is(equalTo(swarmSpec)));
}
@Test(expectedExceptions = NotAcceptableException.class)
public void initializingSwarmThrowsWhenAlreadyInSwarm() throws DockerException {
SwarmSpec swarmSpec = new SwarmSpec()
.withName("swarm");
dockerClient.initializeSwarmCmd(swarmSpec)
.withListenAddr("127.0.0.1")
.withAdvertiseAddr("127.0.0.1")
.exec();
LOG.info("Initialized swarm: {}", swarmSpec.toString());
// Initializing a swarm if already in swarm mode should fail
dockerClient.initializeSwarmCmd(swarmSpec)
.withListenAddr("127.0.0.1")
.exec();
}
}