Skip to content

Commit 7f924e4

Browse files
authoredMay 27, 2021
Update swaggest/json-schema to fix const handling (#41)
1 parent ec0b9e8 commit 7f924e4

File tree

5 files changed

+130
-17
lines changed

5 files changed

+130
-17
lines changed
 

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.2.33] - 2021-05-27
8+
9+
### Fixes
10+
- Handling of `const` constraints in generated classes.
11+
712
## [0.2.32] - 2021-04-25
813

914
### Added
@@ -88,6 +93,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8893
### Fixed
8994
- Description trimming bug.
9095

96+
[0.2.33]: https://github.com/swaggest/php-code-builder/compare/v0.2.32...v0.2.33
9197
[0.2.32]: https://github.com/swaggest/php-code-builder/compare/v0.2.31...v0.2.32
9298
[0.2.31]: https://github.com/swaggest/php-code-builder/compare/v0.2.30...v0.2.31
9399
[0.2.30]: https://github.com/swaggest/php-code-builder/compare/v0.2.29...v0.2.30

‎composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
],
1515
"require": {
1616
"ext-json": "*",
17-
"swaggest/json-schema": "^0.12.31",
17+
"swaggest/json-schema": "^0.12.33",
1818
"swaggest/code-builder": "^0.3.4",
1919
"php": ">=5.6.0"
2020
},

‎composer.lock

+16-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<?php
2+
3+
namespace Swaggest\PhpCodeBuilder\Tests\PHPUnit\Issues;
4+
5+
use Swaggest\JsonSchema\Exception\ConstException;
6+
use Swaggest\JsonSchema\Exception\ObjectException;
7+
use Swaggest\JsonSchema\Schema;
8+
use Swaggest\PhpCodeBuilder\App\PhpApp;
9+
use Swaggest\PhpCodeBuilder\JsonSchema\ClassHookCallback;
10+
use Swaggest\PhpCodeBuilder\JsonSchema\PhpBuilder;
11+
use Swaggest\PhpCodeBuilder\PhpClass;
12+
use Swaggest\PhpCodeBuilder\Tests\Tmp\Issue40\Sample;
13+
14+
/**
15+
* @see https://github.com/swaggest/php-code-builder/issues/40
16+
*/
17+
class Issue40Test extends \PHPUnit_Framework_TestCase
18+
{
19+
function testIssue40()
20+
{
21+
$schemaJson = <<<'JSON'
22+
{
23+
"type": "object",
24+
"properties": {
25+
"foo": {
26+
"type": "string",
27+
"const":"abc"
28+
}
29+
}
30+
}
31+
JSON;
32+
33+
$appPath = realpath(__DIR__ . '/../../Tmp') . '/Issue40';
34+
$appNs = 'Swaggest\PhpCodeBuilder\Tests\Tmp\\Issue40';
35+
36+
$app = new PhpApp();
37+
$app->setNamespaceRoot($appNs, '.');
38+
39+
$schema = Schema::import(json_decode($schemaJson));
40+
$builder = new PhpBuilder();
41+
$builder->buildSetters = false;
42+
$builder->makeEnumConstants = true;
43+
44+
$builder->classCreatedHook = new ClassHookCallback(
45+
function (PhpClass $class, $path, $schema) use ($app, $appNs) {
46+
$class->setNamespace($appNs);
47+
if ('#' === $path) {
48+
$class->setName('Sample'); // Class name for root schema
49+
}
50+
$app->addClass($class);
51+
}
52+
);
53+
54+
55+
$builder->getType($schema);
56+
57+
$app->clearOldFiles($appPath);
58+
$app->store($appPath);
59+
60+
exec('git diff ' . $appPath, $out);
61+
$out = implode("\n", $out);
62+
$this->assertSame('', $out, "Generated files changed");
63+
64+
}
65+
66+
67+
function testGeneratedInvalid()
68+
{
69+
$this->setExpectedException(ConstException::class, 'Const failed at #->$ref[#/definitions/Swaggest\PhpCodeBuilder\Tests\Tmp\Issue40\Sample]->properties:foo');
70+
Sample::import((object)array('foo' => 'bar'));
71+
}
72+
73+
function testGeneratedValid()
74+
{
75+
Sample::import((object)array('foo' => 'abc'));
76+
}
77+
78+
}

‎tests/src/Tmp/Issue40/Sample.php

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?php
2+
/**
3+
* @file ATTENTION!!! The code below was carefully crafted by a mean machine.
4+
* Please consider to NOT put any emotional human-generated modifications as the splendid AI will throw them away with no mercy.
5+
*/
6+
7+
namespace Swaggest\PhpCodeBuilder\Tests\Tmp\Issue40;
8+
9+
use Swaggest\JsonSchema\Constraint\Properties;
10+
use Swaggest\JsonSchema\Schema;
11+
use Swaggest\JsonSchema\Structure\ClassStructure;
12+
13+
14+
class Sample extends ClassStructure
15+
{
16+
/** @var string */
17+
public $foo;
18+
19+
/**
20+
* @param Properties|static $properties
21+
* @param Schema $ownerSchema
22+
*/
23+
public static function setUpProperties($properties, Schema $ownerSchema)
24+
{
25+
$properties->foo = Schema::string();
26+
$properties->foo->const = "abc";
27+
$ownerSchema->type = Schema::OBJECT;
28+
}
29+
}

0 commit comments

Comments
 (0)
Please sign in to comment.