mirror of
https://github.com/valitydev/jesse.git
synced 2024-11-06 09:35:23 +00:00
146 lines
3.5 KiB
Erlang
146 lines
3.5 KiB
Erlang
%%%=============================================================================
|
|
%% Copyright 2012- Klarna AB
|
|
%% Copyright 2015- 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.
|
|
%%
|
|
%%
|
|
%% @doc jesse test suite which covers Draft 03. It uses JSON-Schema-Test-Suite
|
|
%% (https://github.com/json-schema/JSON-Schema-Test-Suite) as the test data.
|
|
%% @end
|
|
%%%=============================================================================
|
|
|
|
-module(jesse_tests_draft3_SUITE).
|
|
|
|
-compile([ export_all
|
|
]).
|
|
|
|
-define(EXCLUDED_FUNS, [ module_info
|
|
, all
|
|
, init_per_suite
|
|
, end_per_suite
|
|
]).
|
|
|
|
-include_lib("common_test/include/ct.hrl").
|
|
|
|
-import(jesse_tests_util, [ get_tests/2
|
|
, do_test/2
|
|
]).
|
|
|
|
all() ->
|
|
Exports = ?MODULE:module_info(exports),
|
|
[F || {F, _} <- Exports, not lists:member(F, ?EXCLUDED_FUNS)].
|
|
|
|
init_per_suite(Config) ->
|
|
inets:start(),
|
|
get_tests( "JSON-Schema-Test-Suite/tests/draft3"
|
|
, <<"http://json-schema.org/draft-03/schema#">>
|
|
)
|
|
++ get_tests( "JSON-Schema-Test-Suite-extra/draft3"
|
|
, <<"http://json-schema.org/draft-03/schema#">>
|
|
)
|
|
++ Config.
|
|
|
|
end_per_suite(_Config) ->
|
|
inets:stop().
|
|
|
|
%%% Testcases
|
|
|
|
additionalItems(Config) ->
|
|
do_test("additionalItems", Config).
|
|
|
|
additionalProperties(Config) ->
|
|
do_test("additionalProperties", Config).
|
|
|
|
default(Config) ->
|
|
do_test("default", Config).
|
|
|
|
dependencies(Config) ->
|
|
do_test("dependencies", Config).
|
|
|
|
disallow(Config) ->
|
|
do_test("disallow", Config).
|
|
|
|
divisibleBy(Config) ->
|
|
do_test("divisibleBy", Config).
|
|
|
|
enum(Config) ->
|
|
do_test("enum", Config).
|
|
|
|
extends(Config) ->
|
|
do_test("extends", Config).
|
|
|
|
items(Config) ->
|
|
do_test("items", Config).
|
|
|
|
maximum(Config) ->
|
|
do_test("maximum", Config).
|
|
|
|
maxItems(Config) ->
|
|
do_test("maxItems", Config).
|
|
|
|
maxLength(Config) ->
|
|
do_test("maxLength", Config).
|
|
|
|
minimum(Config) ->
|
|
do_test("minimum", Config).
|
|
|
|
minItems(Config) ->
|
|
do_test("minItems", Config).
|
|
|
|
minLength(Config) ->
|
|
do_test("minLength", Config).
|
|
|
|
pattern(Config) ->
|
|
do_test("pattern", Config).
|
|
|
|
patternProperties(Config) ->
|
|
do_test("patternProperties", Config).
|
|
|
|
properties(Config) ->
|
|
do_test("properties", Config).
|
|
|
|
ref(Config) ->
|
|
do_test("ref", Config).
|
|
|
|
refRemote(Config) ->
|
|
TestDir = os:getenv("TEST_DIR"),
|
|
DocumentRoot = filename:join(TestDir, "JSON-Schema-Test-Suite/remotes"),
|
|
ServerOpts = [ {port, 1234}
|
|
, {server_name, "localhost"}
|
|
, {server_root, "."}
|
|
, {document_root, DocumentRoot}
|
|
],
|
|
inets:start(httpd, ServerOpts),
|
|
do_test("refRemote", Config).
|
|
|
|
required(Config) ->
|
|
do_test("required", Config).
|
|
|
|
type(Config) ->
|
|
do_test("type", Config).
|
|
|
|
uniqueItems(Config) ->
|
|
do_test("uniqueItems", Config).
|
|
|
|
%% Extra
|
|
|
|
itemsExtra(Config) ->
|
|
do_test("itemsExtra", Config).
|
|
|
|
remoteRefExtra(Config) ->
|
|
do_test("remoteRefExtra", Config).
|
|
|
|
unicodePatternProperties(Config) ->
|
|
do_test("unicodePatternProperties", Config).
|