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.
131 lines
4.5 KiB
131 lines
4.5 KiB
package com.jayway.jsonpath; |
|
|
|
import org.junit.Ignore; |
|
import org.junit.Test; |
|
|
|
import static com.jayway.jsonpath.internal.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() { |
|
assertThat(compile("$.").toString()); |
|
assertThat(compile("$.prop.").toString()); |
|
} |
|
|
|
@Test(expected = InvalidPathException.class) |
|
public void a_path_may_not_end_with_scan() { |
|
assertThat(compile("$..").toString()); |
|
assertThat(compile("$.prop..").toString()); |
|
} |
|
|
|
@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']"); |
|
} |
|
|
|
@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("$[?]"); |
|
} |
|
|
|
@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']..[*]"); |
|
} |
|
|
|
}
|
|
|