Skip to content

Commit

Permalink
fix: correctly set the schema ID when passing it as assoc array
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarlovi committed Nov 26, 2024
1 parent 3772314 commit 4d83fbf
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/JsonSchema/Validator.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ public function validate(&$value, $schema = null, $checkMode = null)
// add provided schema to SchemaStorage with internal URI to allow internal $ref resolution
if (is_object($schema) && property_exists($schema, 'id')) {
$schemaURI = $schema->id;
} elseif (is_array($schema) && array_key_exists('id', $schema)) {
$schemaURI = $schema['id'];
} else {
$schemaURI = SchemaStorage::INTERNAL_PROVIDED_SCHEMA_URI;
}
Expand Down
11 changes: 11 additions & 0 deletions tests/ValidatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,17 @@ public function testValidateWithAssocSchema(): void
$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
{
if (version_compare(phpversion(), '5.5.0', '<')) {
Expand Down
11 changes: 11 additions & 0 deletions tests/fixtures/relative.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"id": "tests/fixtures/relative.json",
"type": "object",
"properties": {
"foo": {
"$ref": "foobar.json"
}
},
"required": ["foo"],
"additionalProperties": false
}

0 comments on commit 4d83fbf

Please sign in to comment.