JsonPath仓库
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.

26 lines
921 B

package com.jayway.jsonpath;
import org.junit.Test;
public class Issue_487 {
public static final Configuration jsonConf = Configuration.defaultConfiguration();
@Test//(expected = InvalidPathException.class)
public void test_read_with_comma_1(){ // originally throws InvalidPathException
DocumentContext dc = JsonPath.using(jsonConf)
.parse("{ \"key,\" : \"value\" }");
Object ans = dc.read(JsonPath.compile("$['key,']"));
//System.out.println(ans);
assert(ans.toString().equals("value"));
}
@Test
public void test_read_with_comma_2(){ // originally passed
DocumentContext dc = JsonPath.using(jsonConf)
.parse("{ \"key,\" : \"value\" }");
Object ans = dc.read(JsonPath.compile("$['key\\,']"));
//System.out.println(ans);
assert(ans.toString().equals("value"));
}
}