forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVolumesTest.java
More file actions
34 lines (27 loc) · 1.01 KB
/
Copy pathVolumesTest.java
File metadata and controls
34 lines (27 loc) · 1.01 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
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 VolumesTest {
@Test
public void usesToJson() throws Exception {
Volumes volumes = new Volumes(
new Volume("/foo"),
new Volume("/bar")
);
String json = JSONTestHelper.getMapper().writeValueAsString(volumes);
assertThat(json, is("{\"/foo\":{},\"/bar\":{}}"));
}
@Test
public void usesFromJson() throws Exception {
Volumes volumes = JSONTestHelper.getMapper().readValue("{\"/foo\":{},\"/bar\":{}}", Volumes.class);
assertThat(volumes, notNullValue());
assertThat(volumes.getVolumes(), arrayContaining(
new Volume("/foo"),
new Volume("/bar")
));
}
}