Skip to content

Commit 87919a4

Browse files
authored
Explicitly disable validation for default and const values (#120)
1 parent f92567a commit 87919a4

File tree

4 files changed

+36
-1
lines changed

4 files changed

+36
-1
lines changed

src/JsonSchema.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ public static function setUpProperties($properties, JsonBasicSchema $ownerSchema
173173
$ownerSchema->addPropertyMapping('$schema', self::names()->schema);
174174
$properties->title = JsonBasicSchema::string();
175175
$properties->description = JsonBasicSchema::string();
176-
$properties->default = new JsonBasicSchema();
176+
$properties->default = (object)array();
177177
$properties->multipleOf = JsonBasicSchema::number();
178178
$properties->multipleOf->minimum = 0;
179179
$properties->multipleOf->exclusiveMinimum = true;

src/Wrapper.php

+3
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,9 @@ public function getProperties()
105105
*/
106106
public function getProperty($name)
107107
{
108+
if ($name === Schema::CONST_PROPERTY || $name === Schema::DEFAULT_PROPERTY) {
109+
return null;
110+
}
108111
return isset($this->schema->properties[$name]) ? $this->schema->properties[$name] : null;
109112
}
110113

tests/src/Helper/WithConst.php

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?php
2+
3+
namespace Swaggest\JsonSchema\Tests\Helper;
4+
5+
use Swaggest\JsonSchema\Constraint\Properties;
6+
use Swaggest\JsonSchema\Schema;
7+
use Swaggest\JsonSchema\Structure\ClassStructure;
8+
9+
class WithConst extends ClassStructure
10+
{
11+
/** @var string */
12+
public $foo;
13+
14+
/**
15+
* @param Properties|static $properties
16+
* @param Schema $ownerSchema
17+
*/
18+
public static function setUpProperties($properties, Schema $ownerSchema)
19+
{
20+
$properties->foo = Schema::string();
21+
$properties->foo->const = "abc";
22+
23+
$ownerSchema->type = Schema::OBJECT;
24+
}
25+
}

tests/src/PHPUnit/ClassStructure/ClassStructureTest.php

+7
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
use Swaggest\JsonSchema\Tests\Helper\SampleProperties;
99
use Swaggest\JsonSchema\Tests\Helper\SampleStructure;
1010
use Swaggest\JsonSchema\Tests\Helper\StructureWithItems;
11+
use Swaggest\JsonSchema\Tests\Helper\WithConst;
1112

1213
class ClassStructureTest extends \PHPUnit_Framework_TestCase
1314
{
@@ -142,4 +143,10 @@ public function testPatternPropertiesMismatch()
142143
$properties->setXValue('xfoo', 'bar');
143144
}
144145

146+
function testGeneratedValid()
147+
{
148+
$v = WithConst::import((object)array('foo' => 'abc'));
149+
$this->assertSame('{"foo":"abc"}', json_encode($v));
150+
}
151+
145152
}

0 commit comments

Comments
 (0)