forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConnectToNetworkCmdImplTest.java
More file actions
97 lines (74 loc) · 3.87 KB
/
Copy pathConnectToNetworkCmdImplTest.java
File metadata and controls
97 lines (74 loc) · 3.87 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.command.CreateContainerResponse;
import com.github.dockerjava.api.command.CreateNetworkResponse;
import com.github.dockerjava.api.command.InspectContainerResponse;
import com.github.dockerjava.api.model.ContainerNetwork;
import com.github.dockerjava.api.model.Network;
import com.github.dockerjava.client.AbstractDockerClientTest;
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 java.util.Collections;
@Test(groups = "integration")
public class ConnectToNetworkCmdImplTest extends AbstractDockerClientTest {
@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 connectToNetwork() throws InterruptedException {
CreateContainerResponse container = dockerClient.createContainerCmd("busybox").withCmd("sleep", "9999").exec();
dockerClient.startContainerCmd(container.getId()).exec();
CreateNetworkResponse network = dockerClient.createNetworkCmd().withName("testNetwork").exec();
dockerClient.connectToNetworkCmd().withNetworkId(network.getId()).withContainerId(container.getId()).exec();
Network updatedNetwork = dockerClient.inspectNetworkCmd().withNetworkId(network.getId()).exec();
assertTrue(updatedNetwork.getContainers().containsKey(container.getId()));
InspectContainerResponse inspectContainerResponse = dockerClient.inspectContainerCmd(container.getId()).exec();
assertNotNull(inspectContainerResponse.getNetworkSettings().getNetworks().get("testNetwork"));
}
@Test
public void connectToNetworkWithContainerNetwork() throws InterruptedException {
CreateContainerResponse container = dockerClient.createContainerCmd("busybox").withCmd("sleep", "9999").exec();
dockerClient.startContainerCmd(container.getId()).exec();
CreateNetworkResponse network = dockerClient.createNetworkCmd()
.withName("testNetwork")
.withIpam(new Network.Ipam()
.withConfig(new Network.Ipam.Config()
.withSubnet("10.100.100.0/24")))
.exec();
dockerClient.connectToNetworkCmd()
.withNetworkId(network.getId())
.withContainerId(container.getId())
.withContainerNetwork(new ContainerNetwork()
.withAliases("testing")
.withIpamConfig(new ContainerNetwork.Ipam()
.withIpv4Address("10.100.100.100")))
.exec();
Network updatedNetwork = dockerClient.inspectNetworkCmd().withNetworkId(network.getId()).exec();
Network.ContainerNetworkConfig containerNetworkConfig = updatedNetwork.getContainers().get(container.getId());
assertNotNull(containerNetworkConfig);
assertEquals(containerNetworkConfig.getIpv4Address(), "10.100.100.100/24");
InspectContainerResponse inspectContainerResponse = dockerClient.inspectContainerCmd(container.getId()).exec();
ContainerNetwork testNetwork = inspectContainerResponse.getNetworkSettings().getNetworks().get("testNetwork");
assertNotNull(testNetwork);
assertEquals(testNetwork.getAliases(), Collections.singletonList("testing"));
assertEquals(testNetwork.getGateway(), "10.100.100.1");
assertEquals(testNetwork.getIpAddress(), "10.100.100.100");
}
}