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