package com.jayway.jsonassert; import com.jayway.jsonassert.impl.JsonAsserterImpl; import com.jayway.jsonassert.impl.matcher.*; import com.jayway.jsonpath.spi.JsonProvider; import com.jayway.jsonpath.spi.JsonProviderFactory; import org.hamcrest.Matcher; import java.io.*; import java.text.ParseException; import java.util.Collection; import java.util.Map; /** * User: kalle stenflo * Date: 1/24/11 * Time: 9:31 PM */ public class JsonAssert { private static JsonProvider jsonProvider = JsonProviderFactory.getInstance(); public static void setJsonProvider(JsonProvider jsonProvider) { JsonAssert.jsonProvider = jsonProvider; } /** * Creates a JSONAsserter * * @param json the JSON document to create a JSONAsserter for * @return a JSON asserter initialized with the provided document * @throws ParseException when the given JSON could not be parsed */ public static JsonAsserter with(String json) { return new JsonAsserterImpl(jsonProvider.parse(json)); } /** * Creates a JSONAsserter * * @param reader the reader of the json document * @return a JSON asserter initialized with the provided document * @throws ParseException when the given JSON could not be parsed */ public static JsonAsserter with(Reader reader) throws IOException { return new JsonAsserterImpl(jsonProvider.parse(convertReaderToString(reader))); } /** * Creates a JSONAsserter * * @param is the input stream * @return a JSON asserter initialized with the provided document * @throws ParseException when the given JSON could not be parsed */ public static JsonAsserter with(InputStream is) throws IOException { Reader reader = new InputStreamReader(is); return with(reader); } //Matchers public static CollectionMatcher collectionWithSize(Matcher sizeMatcher) { return new IsCollectionWithSize(sizeMatcher); } public static Matcher> mapContainingKey(Matcher keyMatcher) { return new IsMapContainingKey(keyMatcher); } public static Matcher> mapContainingValue(Matcher valueMatcher) { return new IsMapContainingValue(valueMatcher); } public static Matcher> emptyCollection() { return new IsEmptyCollection(); } private static String convertReaderToString(Reader reader) throws IOException { if (reader != null) { Writer writer = new StringWriter(); char[] buffer = new char[1024]; try { int n; while ((n = reader.read(buffer)) != -1) { writer.write(buffer, 0, n); } } finally { reader.close(); } return writer.toString(); } else { return ""; } } }