forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVolumesRWTest.java
More file actions
35 lines (27 loc) · 1.12 KB
/
Copy pathVolumesRWTest.java
File metadata and controls
35 lines (27 loc) · 1.12 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.api.model;
import com.github.dockerjava.test.serdes.JSONTestHelper;
import org.junit.Test;
import static org.hamcrest.Matchers.arrayContaining;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.notNullValue;
import static org.hamcrest.MatcherAssert.assertThat;
public class VolumesRWTest {
@Test
public void usesToJson() throws Exception {
VolumesRW volumes = new VolumesRW(
new VolumeRW(new Volume("/foo")),
new VolumeRW(new Volume("/bar"), AccessMode.ro)
);
String json = JSONTestHelper.getMapper().writeValueAsString(volumes);
assertThat(json, is("{\"/foo\":true,\"/bar\":false}"));
}
@Test
public void usesFromJson() throws Exception {
VolumesRW volumes = JSONTestHelper.getMapper().readValue("{\"/foo\":true,\"/bar\":false}", VolumesRW.class);
assertThat(volumes, notNullValue());
assertThat(volumes.getVolumesRW(), arrayContaining(
new VolumeRW(new Volume("/foo")),
new VolumeRW(new Volume("/bar"), AccessMode.ro)
));
}
}