You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
3.6 KiB
107 lines
3.6 KiB
11 years ago
|
package com.jayway.jsonpath;
|
||
|
|
||
|
import com.fasterxml.jackson.databind.JsonNode;
|
||
|
import com.fasterxml.jackson.databind.node.ArrayNode;
|
||
|
import com.fasterxml.jackson.databind.node.ObjectNode;
|
||
11 years ago
|
import com.jayway.jsonpath.spi.mapper.MappingException;
|
||
11 years ago
|
import org.junit.Test;
|
||
|
|
||
11 years ago
|
import java.io.IOException;
|
||
|
import java.util.List;
|
||
|
|
||
11 years ago
|
import static com.jayway.jsonpath.JsonPath.using;
|
||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||
|
|
||
11 years ago
|
public class JacksonJsonNodeJsonProviderTest extends BaseTest {
|
||
11 years ago
|
|
||
11 years ago
|
private static final String JSON =
|
||
|
"[" +
|
||
|
"{\n" +
|
||
|
" \"foo\" : \"foo0\",\n" +
|
||
|
" \"bar\" : 0,\n" +
|
||
|
" \"baz\" : true,\n" +
|
||
|
" \"gen\" : {\"eric\" : \"yepp\"}" +
|
||
|
"}," +
|
||
|
"{\n" +
|
||
|
" \"foo\" : \"foo1\",\n" +
|
||
|
" \"bar\" : 1,\n" +
|
||
|
" \"baz\" : true,\n" +
|
||
|
" \"gen\" : {\"eric\" : \"yepp\"}" +
|
||
|
"}," +
|
||
|
"{\n" +
|
||
|
" \"foo\" : \"foo2\",\n" +
|
||
|
" \"bar\" : 2,\n" +
|
||
|
" \"baz\" : true,\n" +
|
||
|
" \"gen\" : {\"eric\" : \"yepp\"}" +
|
||
|
"}" +
|
||
|
"]";
|
||
|
|
||
11 years ago
|
@Test
|
||
|
public void json_can_be_parsed() {
|
||
11 years ago
|
ObjectNode node = using(JACKSON_JSON_NODE_CONFIGURATION).parse(JSON_DOCUMENT).read("$");
|
||
11 years ago
|
assertThat(node.get("string-property").asText()).isEqualTo("string-value");
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void strings_are_unwrapped() {
|
||
11 years ago
|
JsonNode node = using(JACKSON_JSON_NODE_CONFIGURATION).parse(JSON_DOCUMENT).read("$.string-property");
|
||
|
String unwrapped = using(JACKSON_JSON_NODE_CONFIGURATION).parse(JSON_DOCUMENT).read("$.string-property", String.class);
|
||
11 years ago
|
|
||
|
assertThat(unwrapped).isEqualTo("string-value");
|
||
|
assertThat(unwrapped).isEqualTo(node.asText());
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void ints_are_unwrapped() {
|
||
11 years ago
|
JsonNode node = using(JACKSON_JSON_NODE_CONFIGURATION).parse(JSON_DOCUMENT).read("$.int-max-property");
|
||
|
int unwrapped = using(JACKSON_JSON_NODE_CONFIGURATION).parse(JSON_DOCUMENT).read("$.int-max-property", int.class);
|
||
11 years ago
|
assertThat(unwrapped).isEqualTo(Integer.MAX_VALUE);
|
||
|
assertThat(unwrapped).isEqualTo(node.asInt());
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void longs_are_unwrapped() {
|
||
11 years ago
|
JsonNode node = using(JACKSON_JSON_NODE_CONFIGURATION).parse(JSON_DOCUMENT).read("$.long-max-property");
|
||
|
long unwrapped = using(JACKSON_JSON_NODE_CONFIGURATION).parse(JSON_DOCUMENT).read("$.long-max-property", long.class);
|
||
11 years ago
|
|
||
|
assertThat(unwrapped).isEqualTo(Long.MAX_VALUE);
|
||
|
assertThat(unwrapped).isEqualTo(node.asLong());
|
||
|
}
|
||
|
|
||
|
|
||
|
@Test
|
||
|
public void list_of_numbers() {
|
||
11 years ago
|
ArrayNode objs = using(JACKSON_JSON_NODE_CONFIGURATION).parse(JSON_DOCUMENT).read("$.store.book[*].display-price");
|
||
11 years ago
|
System.out.println(objs.toString());
|
||
|
}
|
||
11 years ago
|
|
||
11 years ago
|
@Test
|
||
|
public void test_type_ref() throws IOException {
|
||
|
TypeRef<List<FooBarBaz<Gen>>> typeRef = new TypeRef<List<FooBarBaz<Gen>>>() {};
|
||
11 years ago
|
|
||
11 years ago
|
List<FooBarBaz<Gen>> list = using(JACKSON_JSON_NODE_CONFIGURATION).parse(JSON).read("$", typeRef);
|
||
11 years ago
|
|
||
11 years ago
|
assertThat(list.get(0).gen.eric).isEqualTo("yepp");
|
||
11 years ago
|
}
|
||
|
|
||
11 years ago
|
@Test(expected = MappingException.class)
|
||
|
public void test_type_ref_fail() throws IOException {
|
||
|
TypeRef<List<FooBarBaz<Integer>>> typeRef = new TypeRef<List<FooBarBaz<Integer>>>() {};
|
||
|
|
||
11 years ago
|
using(JACKSON_JSON_NODE_CONFIGURATION).parse(JSON).read("$", typeRef);
|
||
11 years ago
|
}
|
||
|
|
||
|
public static class FooBarBaz<T> {
|
||
|
public T gen;
|
||
|
public String foo;
|
||
|
public Long bar;
|
||
|
public boolean baz;
|
||
|
}
|
||
|
|
||
|
|
||
|
public static class Gen {
|
||
|
public String eric;
|
||
|
}
|
||
11 years ago
|
|
||
|
}
|