forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathListVolumesCmdIT.java
More file actions
32 lines (23 loc) · 1.32 KB
/
Copy pathListVolumesCmdIT.java
File metadata and controls
32 lines (23 loc) · 1.32 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
package com.github.dockerjava.cmd;
import com.github.dockerjava.api.command.CreateVolumeResponse;
import com.github.dockerjava.api.command.ListVolumesResponse;
import com.github.dockerjava.api.exception.DockerException;
import org.junit.Test;
import java.util.Collections;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.greaterThanOrEqualTo;
public class ListVolumesCmdIT extends CmdIT {
@Test
public void listVolumes() throws DockerException {
CreateVolumeResponse createVolumeResponse = dockerRule.getClient().createVolumeCmd().withName("volume1")
.withDriver("local").withLabels(Collections.singletonMap("is-timelord", "yes")).exec();
assertThat(createVolumeResponse.getName(), equalTo("volume1"));
assertThat(createVolumeResponse.getDriver(), equalTo("local"));
assertThat(createVolumeResponse.getLabels(), equalTo(Collections.singletonMap("is-timelord", "yes")));
assertThat(createVolumeResponse.getMountpoint(), containsString("/volume1/"));
ListVolumesResponse listVolumesResponse = dockerRule.getClient().listVolumesCmd().exec();
assertThat(listVolumesResponse.getVolumes().size(), greaterThanOrEqualTo(1));
}
}