|
|
|
package com.jayway.jsonpath;
|
|
|
|
|
|
|
|
import com.jayway.jsonpath.internal.ParseContextImpl;
|
|
|
|
import org.junit.Ignore;
|
|
|
|
import org.junit.Test;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import static com.jayway.jsonpath.internal.path.PathCompiler.compile;
|
|
|
|
import static org.assertj.core.api.Assertions.assertThat;
|
|
|
|
|
|
|
|
public class PathCompilerTest {
|
|
|
|
|
|
|
|
|
|
|
|
@Ignore("Backward compatibility <= 2.0.0")
|
|
|
|
@Test(expected = InvalidPathException.class)
|
|
|
|
public void a_path_must_start_with_$_or_at() {
|
|
|
|
compile("x");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Ignore("Backward compatibility <= 2.0.0")
|
|
|
|
@Test(expected = InvalidPathException.class)
|
|
|
|
public void a_square_bracket_may_not_follow_a_period() {
|
|
|
|
compile("$.[");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test(expected = InvalidPathException.class)
|
|
|
|
public void a_root_path_must_be_followed_by_period_or_bracket() {
|
|
|
|
compile("$X");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void a_root_path_can_be_compiled() {
|
|
|
|
assertThat(compile("$").toString()).isEqualTo("$");
|
|
|
|
assertThat(compile("@").toString()).isEqualTo("@");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test(expected = InvalidPathException.class)
|
|
|
|
public void a_path_may_not_end_with_period() {
|
|
|
|
compile("$.");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test(expected = InvalidPathException.class)
|
|
|
|
public void a_path_may_not_end_with_period_2() {
|
|
|
|
compile("$.prop.");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test(expected = InvalidPathException.class)
|
|
|
|
public void a_path_may_not_end_with_scan() {
|
|
|
|
compile("$..");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test(expected = InvalidPathException.class)
|
|
|
|
public void a_path_may_not_end_with_scan_2() {
|
|
|
|
compile("$.prop..");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void a_property_token_can_be_compiled() {
|
|
|
|
assertThat(compile("$.prop").toString()).isEqualTo("$['prop']");
|
|
|
|
assertThat(compile("$.1prop").toString()).isEqualTo("$['1prop']");
|
|
|
|
assertThat(compile("$.@prop").toString()).isEqualTo("$['@prop']");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void a_bracket_notation_property_token_can_be_compiled() {
|
|
|
|
assertThat(compile("$['prop']").toString()).isEqualTo("$['prop']");
|
|
|
|
assertThat(compile("$['1prop']").toString()).isEqualTo("$['1prop']");
|
|
|
|
assertThat(compile("$['@prop']").toString()).isEqualTo("$['@prop']");
|
|
|
|
assertThat(compile("$[ '@prop' ]").toString()).isEqualTo("$['@prop']");
|
|
|
|
assertThat(compile("$[\"prop\"]").toString()).isEqualTo("$[\"prop\"]");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void a_multi_property_token_can_be_compiled() {
|
|
|
|
assertThat(compile("$['prop0', 'prop1']").toString()).isEqualTo("$['prop0','prop1']");
|
|
|
|
assertThat(compile("$[ 'prop0' , 'prop1' ]").toString()).isEqualTo("$['prop0','prop1']");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void a_property_chain_can_be_compiled() {
|
|
|
|
assertThat(compile("$.abc").toString()).isEqualTo("$['abc']");
|
|
|
|
assertThat(compile("$.aaa.bbb").toString()).isEqualTo("$['aaa']['bbb']");
|
|
|
|
assertThat(compile("$.aaa.bbb.ccc").toString()).isEqualTo("$['aaa']['bbb']['ccc']");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test(expected = InvalidPathException.class)
|
|
|
|
public void a_property_may_not_contain_blanks() {
|
|
|
|
assertThat(compile("$.foo bar").toString());
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void a_wildcard_can_be_compiled() {
|
|
|
|
assertThat(compile("$.*").toString()).isEqualTo("$[*]");
|
|
|
|
assertThat(compile("$[*]").toString()).isEqualTo("$[*]");
|
|
|
|
assertThat(compile("$[ * ]").toString()).isEqualTo("$[*]");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void a_wildcard_can_follow_a_property() {
|
|
|
|
assertThat(compile("$.prop[*]").toString()).isEqualTo("$['prop'][*]");
|
|
|
|
assertThat(compile("$['prop'][*]").toString()).isEqualTo("$['prop'][*]");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void an_array_index_path_can_be_compiled() {
|
|
|
|
assertThat(compile("$[1]").toString()).isEqualTo("$[1]");
|
|
|
|
assertThat(compile("$[1,2,3]").toString()).isEqualTo("$[1,2,3]");
|
|
|
|
assertThat(compile("$[ 1 , 2 , 3 ]").toString()).isEqualTo("$[1,2,3]");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void an_array_slice_path_can_be_compiled() {
|
|
|
|
assertThat(compile("$[-1:]").toString()).isEqualTo("$[-1:]");
|
|
|
|
assertThat(compile("$[1:2]").toString()).isEqualTo("$[1:2]");
|
|
|
|
assertThat(compile("$[:2]").toString()).isEqualTo("$[:2]");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void an_inline_criteria_can_be_parsed() {
|
|
|
|
assertThat(compile("$[?(@.foo == 'bar')]").toString()).isEqualTo("$[?]");
|
|
|
|
assertThat(compile("$[?(@.foo == \"bar\")]").toString()).isEqualTo("$[?]");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void a_placeholder_criteria_can_be_parsed() {
|
|
|
|
|
|
|
|
Predicate p = new Predicate() {
|
|
|
|
@Override
|
|
|
|
public boolean apply(PredicateContext ctx) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
assertThat(compile("$[?]", p).toString()).isEqualTo("$[?]");
|
|
|
|
assertThat(compile("$[?,?]", p, p).toString()).isEqualTo("$[?,?]");
|
|
|
|
assertThat(compile("$[?,?,?]", p, p, p).toString()).isEqualTo("$[?,?,?]");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void a_scan_token_can_be_parsed() {
|
|
|
|
assertThat(compile("$..['prop']..[*]").toString()).isEqualTo("$..['prop']..[*]");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void issue_predicate_can_have_escaped_backslash_in_prop() {
|
|
|
|
String json = "{\n"
|
|
|
|
+ " \"logs\": [\n"
|
|
|
|
+ " {\n"
|
|
|
|
+ " \"message\": \"it\\\\\",\n"
|
|
|
|
+ " \"id\": 2\n"
|
|
|
|
+ " }\n"
|
|
|
|
+ " ]\n"
|
|
|
|
+ "}";
|
|
|
|
// message: it\ -> (after json escaping) -> "it\\" -> (after java escaping) -> "\"it\\\\\""
|
|
|
|
|
|
|
|
List<String> result = JsonPath.read(json, "$.logs[?(@.message == 'it\\\\')].message");
|
|
|
|
|
|
|
|
assertThat(result).containsExactly("it\\");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void issue_predicate_can_have_bracket_in_regex() {
|
|
|
|
String json = "{\n"
|
|
|
|
+ " \"logs\": [\n"
|
|
|
|
+ " {\n"
|
|
|
|
+ " \"message\": \"(it\",\n"
|
|
|
|
+ " \"id\": 2\n"
|
|
|
|
+ " }\n"
|
|
|
|
+ " ]\n"
|
|
|
|
+ "}";
|
|
|
|
|
|
|
|
List<String> result = JsonPath.read(json, "$.logs[?(@.message =~ /\\(it/)].message");
|
|
|
|
|
|
|
|
assertThat(result).containsExactly("(it");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void issue_predicate_can_have_and_in_regex() {
|
|
|
|
String json = "{\n"
|
|
|
|
+ " \"logs\": [\n"
|
|
|
|
+ " {\n"
|
|
|
|
+ " \"message\": \"it\",\n"
|
|
|
|
+ " \"id\": 2\n"
|
|
|
|
+ " }\n"
|
|
|
|
+ " ]\n"
|
|
|
|
+ "}";
|
|
|
|
|
|
|
|
List<String> result = JsonPath.read(json, "$.logs[?(@.message =~ /&&|it/)].message");
|
|
|
|
|
|
|
|
assertThat(result).containsExactly("it");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void issue_predicate_can_have_and_in_prop() {
|
|
|
|
String json = "{\n"
|
|
|
|
+ " \"logs\": [\n"
|
|
|
|
+ " {\n"
|
|
|
|
+ " \"message\": \"&& it\",\n"
|
|
|
|
+ " \"id\": 2\n"
|
|
|
|
+ " }\n"
|
|
|
|
+ " ]\n"
|
|
|
|
+ "}";
|
|
|
|
|
|
|
|
List<String> result = JsonPath.read(json, "$.logs[?(@.message == '&& it')].message");
|
|
|
|
|
|
|
|
assertThat(result).containsExactly("&& it");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void issue_predicate_brackets_must_change_priorities() {
|
|
|
|
String json = "{\n"
|
|
|
|
+ " \"logs\": [\n"
|
|
|
|
+ " {\n"
|
|
|
|
+ " \"id\": 2\n"
|
|
|
|
+ " }\n"
|
|
|
|
+ " ]\n"
|
|
|
|
+ "}";
|
|
|
|
|
|
|
|
List<String> result = JsonPath.read(json, "$.logs[?(@.message && (@.id == 1 || @.id == 2))].id");
|
|
|
|
assertThat(result).isEmpty();
|
|
|
|
|
|
|
|
result = JsonPath.read(json, "$.logs[?((@.id == 2 || @.id == 1) && @.message)].id");
|
|
|
|
assertThat(result).isEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void issue_predicate_or_has_lower_priority_than_and() {
|
|
|
|
String json = "{\n"
|
|
|
|
+ " \"logs\": [\n"
|
|
|
|
+ " {\n"
|
|
|
|
+ " \"id\": 2\n"
|
|
|
|
+ " }\n"
|
|
|
|
+ " ]\n"
|
|
|
|
+ "}";
|
|
|
|
|
|
|
|
List<String> result = JsonPath.read(json, "$.logs[?(@.x && @.y || @.id)]");
|
|
|
|
assertThat(result).hasSize(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void issue_predicate_can_have_double_quotes() {
|
|
|
|
String json = "{\n"
|
|
|
|
+ " \"logs\": [\n"
|
|
|
|
+ " {\n"
|
|
|
|
+ " \"message\": \"\\\"it\\\"\",\n"
|
|
|
|
+ " }\n"
|
|
|
|
+ " ]\n"
|
|
|
|
+ "}";
|
|
|
|
List<String> result = JsonPath.read(json, "$.logs[?(@.message == '\"it\"')].message");
|
|
|
|
assertThat(result).containsExactly("\"it\"");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void issue_predicate_can_have_single_quotes() {
|
|
|
|
String json = "{\n"
|
|
|
|
+ " \"logs\": [\n"
|
|
|
|
+ " {\n"
|
|
|
|
+ " \"message\": \"'it'\",\n"
|
|
|
|
+ " }\n"
|
|
|
|
+ " ]\n"
|
|
|
|
+ "}";
|
|
|
|
DocumentContext parse = JsonPath.parse(json);
|
|
|
|
JsonPath compile = JsonPath.compile("$.logs[?(@.message == \"'it'\")].message");
|
|
|
|
List<String> result = parse.read(compile);
|
|
|
|
assertThat(result).containsExactly("'it'");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void issue_predicate_can_have_single_quotes_escaped() {
|
|
|
|
String json = "{\n"
|
|
|
|
+ " \"logs\": [\n"
|
|
|
|
+ " {\n"
|
|
|
|
+ " \"message\": \"'it'\",\n"
|
|
|
|
+ " }\n"
|
|
|
|
+ " ]\n"
|
|
|
|
+ "}";
|
|
|
|
DocumentContext parse = JsonPath.parse(json);
|
|
|
|
JsonPath compile = JsonPath.compile("$.logs[?(@.message == '\\'it\\'')].message");
|
|
|
|
List<String> result = parse.read(compile);
|
|
|
|
assertThat(result).containsExactly("'it'");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void issue_predicate_can_have_square_bracket_in_prop() {
|
|
|
|
String json = "{\n"
|
|
|
|
+ " \"logs\": [\n"
|
|
|
|
+ " {\n"
|
|
|
|
+ " \"message\": \"] it\",\n"
|
|
|
|
+ " \"id\": 2\n"
|
|
|
|
+ " }\n"
|
|
|
|
+ " ]\n"
|
|
|
|
+ "}";
|
|
|
|
|
|
|
|
List<String> result = JsonPath.read(json, "$.logs[?(@.message == '] it')].message");
|
|
|
|
|
|
|
|
assertThat(result).containsExactly("] it");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void a_function_can_be_compiled() {
|
|
|
|
assertThat(compile("$.aaa.foo()").toString()).isEqualTo("$['aaa'].foo()");
|
|
|
|
assertThat(compile("$.aaa.foo(5)").toString()).isEqualTo("$['aaa'].foo(...)");
|
|
|
|
assertThat(compile("$.aaa.foo($.bar)").toString()).isEqualTo("$['aaa'].foo(...)");
|
|
|
|
assertThat(compile("$.aaa.foo(5,10,15)").toString()).isEqualTo("$['aaa'].foo(...)");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test(expected = InvalidPathException.class)
|
|
|
|
public void array_indexes_must_be_separated_by_commas() {
|
|
|
|
compile("$[0, 1, 2 4]");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test(expected = InvalidPathException.class)
|
|
|
|
public void trailing_comma_after_list_is_not_accepted() {
|
|
|
|
compile("$['1','2',]");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test(expected = InvalidPathException.class)
|
|
|
|
public void accept_only_a_single_comma_between_indexes() {
|
|
|
|
compile("$['1', ,'3']");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test(expected = InvalidPathException.class)
|
|
|
|
public void property_must_be_separated_by_commas() {
|
|
|
|
compile("$['aaa'}'bbb']");
|
|
|
|
}
|
|
|
|
}
|