1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
# vim: set ft=perl ts=8 sts=2 sw=2 tw=100 et :
use strictures 2;
use 5.020;
use stable 0.031 'postderef';
use experimental 'signatures';
no autovivification warn => qw(fetch store exists delete);
use if "$]" >= 5.022, experimental => 're_strict';
no if "$]" >= 5.031009, feature => 'indirect';
no if "$]" >= 5.033001, feature => 'multidimensional';
no if "$]" >= 5.033006, feature => 'bareword_filehandles';
no if "$]" >= 5.041009, feature => 'smartmatch';
no feature 'switch';
use open ':std', ':encoding(UTF-8)'; # force stdin, stdout, stderr into utf8
use lib 't/lib';
use Helper;
my $js = JSON::Schema::Modern->new;
cmp_result(
$js->validate_schema({ type => 'bloop' })->TO_JSON,
{
valid => false,
errors => supersetof(
{
instanceLocation => '/type',
keywordLocation => re(qr{/enum$}),
absoluteKeywordLocation => 'https://json-schema.org/draft/2020-12/meta/validation#/$defs/simpleTypes/enum',
error => 'value does not match',
},
),
},
'validate_schema on simple schema with no $schema keyword',
);
cmp_result(
$js->validate_schema({
'$schema' => 'https://json-schema.org/draft/2019-09/schema',
type => 'bloop',
})->TO_JSON,
{
valid => false,
errors => supersetof(
{
instanceLocation => '/type',
keywordLocation => re(qr{/enum$}),
absoluteKeywordLocation => 'https://json-schema.org/draft/2019-09/meta/validation#/$defs/simpleTypes/enum',
error => 'value does not match',
},
),
},
'validate_schema on schema with metaschema $schema keyword',
);
$js->add_schema('http://example.com/myschema', { '$id' => 'http://example.com/myschema', type => 'boolean' });
cmp_result(
$js->validate_schema({
'$schema' => 'http://example.com/myschema',
type => 'bloop',
})->TO_JSON,
{
valid => false,
errors => [
{
instanceLocation => '',
keywordLocation => '/type',
absoluteKeywordLocation => 'http://example.com/myschema#/type',
error => 'got object, not boolean',
},
],
},
'validate_schema with custom metaschema',
);
cmp_result(
$js->validate_schema({
'$id' => '#/$defs/foo',
'$schema' => 'http://json-schema.org/draft-07/schema#',
})->TO_JSON,
{
valid => false,
errors => [
{
instanceLocation => '',
keywordLocation => '/$id',
error => '$id value "#/$defs/foo" does not match required syntax',
},
],
},
'validate_schema with schema that validates against the metaschema, but fails in extra traverse checks',
);
done_testing;
|