forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInspectConfigCmdIT.java
More file actions
35 lines (27 loc) · 1.31 KB
/
Copy pathInspectConfigCmdIT.java
File metadata and controls
35 lines (27 loc) · 1.31 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
package com.github.dockerjava.cmd.swarm;
import com.github.dockerjava.api.DockerClient;
import com.github.dockerjava.api.command.CreateConfigResponse;
import com.github.dockerjava.api.exception.DockerException;
import com.github.dockerjava.api.model.Config;
import org.apache.commons.lang3.RandomStringUtils;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.notNullValue;
import static org.junit.Assert.assertEquals;
public class InspectConfigCmdIT extends SwarmCmdIT {
public static final Logger LOG = LoggerFactory.getLogger(InspectConfigCmdIT.class);
@Test
public void inspectConfig() throws DockerException {
DockerClient dockerClient = startSwarm();
String configName = RandomStringUtils.random(10, true, false);
CreateConfigResponse configResponse = dockerClient.createConfigCmd()
.withName(configName)
.withData("configuration data".getBytes()).exec();
LOG.info("Config created with ID {}", configResponse.getId());
Config config = dockerClient.inspectConfigCmd(configResponse.getId()).exec();
assertEquals(configResponse.getId(), config.getId());
assertEquals(configName, config.getSpec().getName());
}
}