forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreateConfigCmdExecIT.java
More file actions
31 lines (24 loc) · 1.05 KB
/
Copy pathCreateConfigCmdExecIT.java
File metadata and controls
31 lines (24 loc) · 1.05 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
package com.github.dockerjava.cmd.swarm;
import com.github.dockerjava.api.DockerClient;
import com.github.dockerjava.api.command.CreateConfigResponse;
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;
public class CreateConfigCmdExecIT extends SwarmCmdIT {
public static final Logger LOG = LoggerFactory.getLogger(CreateConfigCmdExecIT.class);
@Test
public void testCreateConfig() {
DockerClient dockerClient = startSwarm();
String configName = RandomStringUtils.random(10, true, false);
CreateConfigResponse response = dockerClient.createConfigCmd()
.withName(configName)
.withData("configuration data".getBytes()).exec();
assertThat(response, notNullValue());
String configId = response.getId();
assertThat(configId, notNullValue());
dockerClient.removeConfigCmd(configId).exec();
}
}