All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jayway.restassured.module.jsv.JsonSchemaValidatorSettings Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show newest version
/*
 * Copyright 2013 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.jayway.restassured.module.jsv;

import com.github.fge.jsonschema.main.JsonSchemaFactory;

/**
 * Settings for the JsonSchemaValidator
 */
public class JsonSchemaValidatorSettings {
    private JsonSchemaFactory jsonSchemaFactory;
    private boolean checkedValidation;
    private boolean parseUriAndUrlsAsJsonNode;

    private JsonSchemaValidatorSettings(JsonSchemaFactory jsonSchemaFactory, boolean checkedValidation, boolean parseUriAndUrlsAsJsonNode) {
        if (jsonSchemaFactory == null) {
            throw new IllegalArgumentException(JsonSchemaFactory.class.getSimpleName() + " cannot be null");
        }
        this.jsonSchemaFactory = jsonSchemaFactory;
        this.checkedValidation = checkedValidation;
        this.parseUriAndUrlsAsJsonNode = parseUriAndUrlsAsJsonNode;
    }

    /**
     * Initializes JsonSchemaValidatorSettings with a specific {@link JsonSchemaFactory} and checked validation.
     * It will also use checked validation and treating uri's and url's as Strings. To change the latter refer to {@link #parseUriAndUrlsAsJsonNode(boolean)}.
     */
    public JsonSchemaValidatorSettings(JsonSchemaFactory jsonSchemaFactory, boolean checkedValidation) {
        this(jsonSchemaFactory, checkedValidation, false);
    }

    /**
     * Initializes JsonSchemaValidatorSettings with a specific {@link JsonSchemaFactory}. The settings will also use checked validation and treating uri's and url's as Strings.
     */
    public JsonSchemaValidatorSettings(JsonSchemaFactory jsonSchemaFactory) {
        this(jsonSchemaFactory, true);
    }

    /**
     * Initializes JsonSchemaValidatorSettings with a default {@link JsonSchemaFactory} (generated by JsonSchemaFactory.byDefault())
     * and using checked validation and treating uri's and url's as Strings.
     */
    public JsonSchemaValidatorSettings() {
        this(JsonSchemaFactory.byDefault(), true);
    }

    public JsonSchemaFactory jsonSchemaFactory() {
        return jsonSchemaFactory;
    }

    public boolean shouldParseUriAndUrlsAsJsonNode() {
        return parseUriAndUrlsAsJsonNode;
    }

    public boolean shouldUseCheckedValidation() {
        return checkedValidation;
    }

    /**
     * Instruct the JsonSchemaValidator to use checked validation or not.
     *
     * @param shouldUseCheckedValidation true to use checked validation, false otherwise.
     * @return A new instance of JsonSchemaValidatorSettings
     */
    public JsonSchemaValidatorSettings checkedValidation(boolean shouldUseCheckedValidation) {
        return new JsonSchemaValidatorSettings(jsonSchemaFactory, shouldUseCheckedValidation, parseUriAndUrlsAsJsonNode);
    }

    /**
     * Instruct the JsonSchemaValidator to parse URI's and URL's as JsonNode before they are passed to validation.
     * If true then JsonSchemaValidator.matchesJsonSchema(url) handled like this:
     * 
     * instanceSettings.jsonSchemaFactory().getJsonSchema(JsonLoader.fromURL(url))
     * 
* If false then JsonSchemaValidator.matchesJsonSchema(url) handled like this: *
     * instanceSettings.jsonSchemaFactory().getJsonSchema(url)
     * 
* The latter is good for you need to resolve relative ref in a parent schema because the validator does not know what is the base URI * of the parent schema if first having parsed it as a JsonNode. *

* Default is false. *

* * @param parseUriAndUrlsAsJsonNode true to parse URI's and URL's as {@link com.fasterxml.jackson.databind.JsonNode}'s, false otherwise. * @return A new instance of JsonSchemaValidatorSettings */ public JsonSchemaValidatorSettings parseUriAndUrlsAsJsonNode(boolean parseUriAndUrlsAsJsonNode) { return new JsonSchemaValidatorSettings(jsonSchemaFactory, checkedValidation, parseUriAndUrlsAsJsonNode); } /** * Set a {@link JsonSchemaFactory} instance that will be used when creating the validator. * * @param jsonSchemaFactory The {@link JsonSchemaFactory} instance to use. * @return A new instance of JsonSchemaValidatorSettings */ public JsonSchemaValidatorSettings jsonSchemaFactory(JsonSchemaFactory jsonSchemaFactory) { return new JsonSchemaValidatorSettings(jsonSchemaFactory, checkedValidation, parseUriAndUrlsAsJsonNode); } /** * Syntactic sugar. * * @return The same settings instance. */ public JsonSchemaValidatorSettings and() { return this; } /** * Syntactic sugar. * * @return The same settings instance. */ public JsonSchemaValidatorSettings with() { return this; } /** * Create a new instance of {@link com.jayway.restassured.module.jsv.JsonSchemaValidatorSettings}. Same as calling {@link #JsonSchemaValidatorSettings()}. * * @return A default instance of the {@link com.jayway.restassured.module.jsv.JsonSchemaValidatorSettings}. */ public static JsonSchemaValidatorSettings settings() { return new JsonSchemaValidatorSettings(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy