forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInspectVolumeCmdIT.java
More file actions
39 lines (27 loc) · 1.43 KB
/
Copy pathInspectVolumeCmdIT.java
File metadata and controls
39 lines (27 loc) · 1.43 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
package com.github.dockerjava.cmd;
import com.github.dockerjava.api.command.InspectVolumeResponse;
import com.github.dockerjava.api.exception.DockerException;
import com.github.dockerjava.api.exception.NotFoundException;
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;
public class InspectVolumeCmdIT extends CmdIT {
@Test
public void inspectVolume() throws DockerException {
String volumeName = "volume1";
dockerRule.getClient().createVolumeCmd().withName(volumeName).withDriver("local")
.withLabels(Collections.singletonMap("is-timelord", "yes")).exec();
InspectVolumeResponse inspectVolumeResponse = dockerRule.getClient().inspectVolumeCmd(volumeName).exec();
assertThat(inspectVolumeResponse.getName(), equalTo("volume1"));
assertThat(inspectVolumeResponse.getDriver(), equalTo("local"));
assertThat(inspectVolumeResponse.getLabels(), equalTo(Collections.singletonMap("is-timelord", "yes")));
assertThat(inspectVolumeResponse.getMountpoint(), containsString("/volume1/"));
}
@Test(expected = NotFoundException.class)
public void inspectNonExistentVolume() throws DockerException {
String volumeName = "non-existing";
dockerRule.getClient().inspectVolumeCmd(volumeName).exec();
}
}