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.
92 lines
2.7 KiB
92 lines
2.7 KiB
11 years ago
|
package com.jayway.jsonpath.old;
|
||
12 years ago
|
|
||
11 years ago
|
import com.jayway.jsonpath.Configuration;
|
||
|
import com.jayway.jsonpath.JsonPath;
|
||
|
import com.jayway.jsonpath.Option;
|
||
|
import com.jayway.jsonpath.PathNotFoundException;
|
||
11 years ago
|
import org.assertj.core.api.Assertions;
|
||
12 years ago
|
import org.junit.Test;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
import static junit.framework.Assert.assertEquals;
|
||
12 years ago
|
import static junit.framework.Assert.assertNull;
|
||
12 years ago
|
|
||
|
public class NullHandlingTest {
|
||
|
|
||
|
public static final String DOCUMENT = "{\n" +
|
||
|
" \"root-property\": \"root-property-value\",\n" +
|
||
|
" \"root-property-null\": null,\n" +
|
||
|
" \"children\": [\n" +
|
||
|
" {\n" +
|
||
|
" \"id\": 0,\n" +
|
||
|
" \"name\": \"name-0\",\n" +
|
||
|
" \"age\": 0\n" +
|
||
|
" },\n" +
|
||
|
" {\n" +
|
||
|
" \"id\": 1,\n" +
|
||
|
" \"name\": \"name-1\",\n" +
|
||
|
" \"age\": null" +
|
||
|
" },\n" +
|
||
|
" {\n" +
|
||
|
" \"id\": 3,\n" +
|
||
|
" \"name\": \"name-3\"\n" +
|
||
|
" }\n" +
|
||
|
" ]\n" +
|
||
|
"}";
|
||
|
|
||
|
|
||
|
@Test(expected = PathNotFoundException.class)
|
||
12 years ago
|
public void not_defined_property_throws_PathNotFoundException() {
|
||
12 years ago
|
JsonPath.read(DOCUMENT, "$.children[0].child.age");
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
|
||
12 years ago
|
@Test
|
||
12 years ago
|
public void last_token_defaults_to_null() {
|
||
|
|
||
11 years ago
|
//FIXME
|
||
|
|
||
11 years ago
|
|
||
11 years ago
|
Configuration configuration = Configuration.builder().options(Option.DEFAULT_PATH_LEAF_TO_NULL).build();
|
||
11 years ago
|
|
||
11 years ago
|
assertNull(JsonPath.parse(DOCUMENT, configuration).read("$.children[2].age"));
|
||
11 years ago
|
|
||
11 years ago
|
//assertNull(JsonPath.read(DOCUMENT, "$.children[2].age"));
|
||
12 years ago
|
}
|
||
|
|
||
|
|
||
|
@Test
|
||
|
public void null_property_returns_null() {
|
||
12 years ago
|
Integer age = JsonPath.read(DOCUMENT, "$.children[1].age");
|
||
|
assertEquals(null, age);
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void the_age_of_all_with_age_defined() {
|
||
11 years ago
|
//List<Integer> result = JsonPath.read(DOCUMENT, "$.children[*].age");
|
||
|
List<Integer> result = JsonPath.using(Configuration.defaultConfiguration().options(Option.SUPPRESS_EXCEPTIONS)).parse(DOCUMENT).read("$.children[*].age");
|
||
|
|
||
|
Assertions.assertThat(result).containsSequence(0, null);
|
||
12 years ago
|
|
||
|
}
|
||
12 years ago
|
|
||
12 years ago
|
@Test
|
||
12 years ago
|
public void path2() {
|
||
11 years ago
|
List<Object> result = JsonPath.read("{\"a\":[{\"b\":1,\"c\":2},{\"b\":5,\"c\":2}]}", "a[?(@.b==4)].c");
|
||
|
Assertions.assertThat(result).isEmpty();
|
||
12 years ago
|
}
|
||
|
|
||
11 years ago
|
@Test
|
||
12 years ago
|
public void path() {
|
||
11 years ago
|
String json = "{\"a\":[{\"b\":1,\"c\":2},{\"b\":5,\"c\":2}]}";
|
||
|
|
||
|
List<Object> result = JsonPath.using(Configuration.defaultConfiguration().options(Option.DEFAULT_PATH_LEAF_TO_NULL)).parse(json).read("a[?(@.b==5)].d");
|
||
|
|
||
|
|
||
|
System.out.println(result);
|
||
12 years ago
|
}
|
||
|
|
||
|
|
||
|
}
|