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
|
<?php
declare(strict_types=1);
namespace JsonSchema\Tests;
use JsonSchema\Constraints\Constraint;
use JsonSchema\Constraints\Factory;
use JsonSchema\DraftIdentifiers;
use JsonSchema\Exception\InvalidArgumentException;
use JsonSchema\Validator;
use PHPUnit\Framework\TestCase;
class ValidatorTest extends TestCase
{
public function testValidateWithAssocSchema(): void
{
$schema = json_decode('{"properties":{"propertyOne":{"type":"array","items":[{"type":"string"}]}}}', true);
$data = json_decode('{"propertyOne":[42]}', true);
$validator = new Validator();
$validator->validate($data, $schema);
$this->assertFalse($validator->isValid(), 'Validation succeeded, but should have failed.');
}
public function testValidateWithAssocSchemaWithRelativeRefs(): void
{
$schema = json_decode(file_get_contents(__DIR__ . '/fixtures/relative.json'), true);
$data = json_decode('{"foo":{"foo": "bar"}}', false);
$validator = new Validator();
$validator->validate($data, $schema);
$this->assertTrue($validator->isValid(), 'Validation failed, but should have succeeded.');
}
public function testBadAssocSchemaInput(): void
{
$schema = ['propertyOne' => fopen('php://stdout', 'wb')];
$data = json_decode('{"propertyOne":[42]}', true);
$validator = new Validator();
$this->expectException(InvalidArgumentException::class);
$validator->validate($data, $schema);
}
public function testDeprecatedCheckDelegatesToValidate(): void
{
$schema = json_decode('{"type":"string"}');
$data = json_decode('42');
$validator = new Validator();
$validator->check($data, $schema);
$this->assertFalse($validator->isValid(), 'Validation succeeded, but should have failed.');
}
public function testDeprecatedCoerceDelegatesToValidate(): void
{
$schema = json_decode('{"type":"integer"}');
$data = json_decode('"42"');
$validator = new Validator();
$validator->coerce($data, $schema);
$this->assertTrue($validator->isValid(), 'Validation failed, but should have succeeded.');
}
/** @dataProvider draftIdentifiersNotSupportedForStrictMode */
public function testItThrowsForStrictValidationOnDraft(DraftIdentifiers $draft): void
{
$data = json_decode('"42"', false);
$schema = json_decode('{"type":"integer"}', false);
$factory = new Factory(null, null, Constraint::CHECK_MODE_NORMAL | Constraint::CHECK_MODE_STRICT);
$factory->setDefaultDialect($draft->getValue());
$validator = new Validator($factory);
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('Unknown constraint ' . $draft->toConstraintName());
$validator->validate($data, $schema);
}
public function draftIdentifiersNotSupportedForStrictMode(): \Generator
{
foreach (DraftIdentifiers::getEnumerators() as $draft) {
switch ($draft) {
case DraftIdentifiers::DRAFT_6():
break;
default:
yield $draft->toConstraintName() => [$draft];
}
}
}
}
|