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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
<?php
declare(strict_types=1);
namespace JsonSchema\Tests\Drafts;
class Draft4Test extends BaseDraftTestCase
{
/** @var bool */
protected $validateSchema = true;
/**
* {@inheritdoc}
*/
protected function getFilePaths(): array
{
return [
realpath(__DIR__ . self::RELATIVE_TESTS_ROOT . '/draft4'),
realpath(__DIR__ . self::RELATIVE_TESTS_ROOT . '/draft4/optional')
];
}
public function getInvalidTests(): \Generator
{
$skip = [
'id.json / id inside an enum is not a real identifier / no match on enum or $ref to id',
'ref.json / $ref prevents a sibling id from changing the base uri / $ref resolves to /definitions/base_foo, data does not validate',
'ref.json / Recursive references between schemas / invalid tree',
'ref.json / refs with quote / object with strings is invalid',
'ref.json / Location-independent identifier / mismatch',
'ref.json / Location-independent identifier with base URI change in subschema / mismatch',
'ref.json / empty tokens in $ref json-pointer / non-number is invalid',
'ref.json / id must be resolved against nearest parent, not just immediate parent / non-number is invalid',
'refRemote.json / Location-independent identifier in remote ref / string is invalid',
'refRemote.json / base URI change - change folder / string is invalid'
];
foreach (parent::getInvalidTests() as $name => $testcase) {
if (in_array($name, $skip, true)) {
continue;
}
yield $name => $testcase;
}
}
public function getInvalidForAssocTests(): \Generator
{
$skip = [
'ref.json / Recursive references between schemas / valid tree',
'type.json / object type matches objects / an array is not an object',
'type.json / array type matches arrays / an object is not an array',
];
foreach (parent::getInvalidForAssocTests() as $name => $testcase) {
if (in_array($name, $skip, true)) {
continue;
}
yield $name => $testcase;
}
}
public function getValidTests(): \Generator
{
$skip = [
'ref.json / $ref prevents a sibling id from changing the base uri / $ref resolves to /definitions/base_foo, data validates',
'ref.json / Recursive references between schemas / valid tree',
'ref.json / refs with quote / object with numbers is valid',
'ref.json / Location-independent identifier / match',
'ref.json / Location-independent identifier with base URI change in subschema / match',
'ref.json / empty tokens in $ref json-pointer / number is valid',
'ref.json / naive replacement of $ref with its destination is not correct / match the enum exactly',
'ref.json / id must be resolved against nearest parent, not just immediate parent / number is valid',
'refRemote.json / Location-independent identifier in remote ref / integer is valid',
'refRemote.json / base URI change - change folder / number is valid',
];
if ($this->is32Bit()) {
$skip[] = 'multipleOf.json / small multiple of large integer / any integer is a multiple of 1e-8'; // Test case contains a number which doesn't fit in 32 bits
}
foreach (parent::getValidTests() as $name => $testcase) {
if (in_array($name, $skip, true)) {
continue;
}
yield $name => $testcase;
}
}
public function getValidForAssocTests(): \Generator
{
$skip = [
'minProperties.json / minProperties validation / ignores arrays',
'required.json / required properties whose names are Javascript object property names / ignores arrays',
'required.json / required validation / ignores arrays',
'type.json / object type matches objects / an array is not an object',
'type.json / array type matches arrays / an object is not an array',
];
foreach (parent::getValidForAssocTests() as $name => $testcase) {
if (in_array($name, $skip, true)) {
continue;
}
yield $name => $testcase;
}
}
/**
* {@inheritdoc}
*/
protected function getSkippedTests(): array
{
return [
// Optional
'bignum.json',
'ecmascript-regex.json',
'format.json',
'float-overflow.json',
'zeroTerminatedFloats.json',
// Required
'not.json' // only one test case failing
];
}
}
|