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.
98 lines
3.4 KiB
98 lines
3.4 KiB
9 years ago
|
package com.jayway.jsonpath.matchers;
|
||
|
|
||
|
import com.jayway.jsonpath.Configuration;
|
||
|
import com.jayway.jsonpath.matchers.helpers.StrictParsingConfiguration;
|
||
|
import com.jayway.jsonpath.matchers.helpers.TestingMatchers;
|
||
|
import org.hamcrest.Description;
|
||
|
import org.hamcrest.Matcher;
|
||
|
import org.hamcrest.StringDescription;
|
||
|
import org.junit.AfterClass;
|
||
|
import org.junit.BeforeClass;
|
||
|
import org.junit.Test;
|
||
|
|
||
|
import java.io.File;
|
||
|
|
||
|
import static com.jayway.jsonpath.matchers.IsJson.isJson;
|
||
|
import static com.jayway.jsonpath.matchers.helpers.ResourceHelpers.resource;
|
||
|
import static com.jayway.jsonpath.matchers.helpers.ResourceHelpers.resourceAsFile;
|
||
|
import static com.jayway.jsonpath.matchers.helpers.TestingMatchers.withPathEvaluatedTo;
|
||
|
import static org.hamcrest.Matchers.*;
|
||
|
import static org.junit.Assert.assertThat;
|
||
|
|
||
|
public class IsJsonTest {
|
||
|
private static final String BOOKS_JSON_STRING = resource("books.json");
|
||
|
private static final File BOOKS_JSON_FILE = resourceAsFile("books.json");
|
||
|
|
||
|
@BeforeClass
|
||
|
public static void setupStrictJsonParsing() {
|
||
|
Configuration.setDefaults(new StrictParsingConfiguration());
|
||
|
}
|
||
|
|
||
|
@AfterClass
|
||
|
public static void setupDefaultJsonParsing() {
|
||
|
Configuration.setDefaults(null);
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void shouldMatchJsonObjectEvaluatedToTrue() {
|
||
|
Object parsedJson = parseJson(BOOKS_JSON_STRING);
|
||
|
assertThat(parsedJson, isJson(withPathEvaluatedTo(true)));
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void shouldNotMatchJsonObjectEvaluatedToFalse() {
|
||
|
Object parsedJson = parseJson(BOOKS_JSON_STRING);
|
||
|
assertThat(parsedJson, not(isJson(withPathEvaluatedTo(false))));
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void shouldMatchJsonStringEvaluatedToTrue() {
|
||
|
assertThat(BOOKS_JSON_STRING, isJson(withPathEvaluatedTo(true)));
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void shouldNotMatchJsonStringEvaluatedToFalse() {
|
||
|
assertThat(BOOKS_JSON_STRING, not(isJson(withPathEvaluatedTo(false))));
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void shouldMatchJsonFileEvaluatedToTrue() {
|
||
|
assertThat(BOOKS_JSON_FILE, isJson(withPathEvaluatedTo(true)));
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void shouldNotMatchJsonFileEvaluatedToFalse() {
|
||
|
assertThat(BOOKS_JSON_FILE, not(isJson(withPathEvaluatedTo(false))));
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void shouldBeDescriptive() {
|
||
|
Matcher<Object> matcher = isJson(withPathEvaluatedTo(true));
|
||
|
Description description = new StringDescription();
|
||
|
matcher.describeTo(description);
|
||
|
assertThat(description.toString(), startsWith("is json"));
|
||
|
assertThat(description.toString(), containsString(TestingMatchers.MATCH_TRUE_TEXT));
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void shouldDescribeMismatchOfValidJson() {
|
||
|
Matcher<Object> matcher = isJson(withPathEvaluatedTo(true));
|
||
|
Description description = new StringDescription();
|
||
|
matcher.describeMismatch(BOOKS_JSON_STRING, description);
|
||
|
assertThat(description.toString(), containsString(TestingMatchers.MISMATCHED_TEXT));
|
||
|
}
|
||
|
|
||
|
@Test
|
||
|
public void shouldDescribeMismatchOfInvalidJson() {
|
||
|
Matcher<Object> matcher = isJson(withPathEvaluatedTo(true));
|
||
|
Description description = new StringDescription();
|
||
|
matcher.describeMismatch("invalid-json", description);
|
||
|
assertThat(description.toString(), containsString("\"invalid-json\""));
|
||
|
}
|
||
|
|
||
|
private static Object parseJson(String json) {
|
||
|
return Configuration.defaultConfiguration().jsonProvider().parse(json);
|
||
|
}
|
||
|
|
||
|
}
|