2018-05-05 14:49:17 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of the NelmioApiDocBundle package.
|
|
|
|
*
|
|
|
|
* (c) Nelmio
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Nelmio\ApiDocBundle\Tests\Functional;
|
|
|
|
|
2019-05-02 10:02:16 +02:00
|
|
|
use Hateoas\Configuration\Embedded;
|
|
|
|
|
2018-05-05 14:49:17 +02:00
|
|
|
class BazingaFunctionalTest extends WebTestCase
|
|
|
|
{
|
2019-12-19 15:41:14 +01:00
|
|
|
protected function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
static::createClient([], ['HTTP_HOST' => 'api.example.com']);
|
|
|
|
}
|
|
|
|
|
2018-05-05 14:49:17 +02:00
|
|
|
public function testModelComplexDocumentationBazinga()
|
|
|
|
{
|
|
|
|
$this->assertEquals([
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => [
|
|
|
|
'_links' => [
|
|
|
|
'readOnly' => true,
|
|
|
|
'properties' => [
|
|
|
|
'example' => [
|
|
|
|
'properties' => [
|
|
|
|
'href' => [
|
|
|
|
'type' => 'string',
|
|
|
|
],
|
|
|
|
'str_att' => [
|
|
|
|
'type' => 'string',
|
|
|
|
'default' => 'bar',
|
|
|
|
],
|
|
|
|
'float_att' => [
|
|
|
|
'type' => 'number',
|
|
|
|
'default' => 5.6,
|
|
|
|
],
|
|
|
|
'bool_att' => [
|
|
|
|
'type' => 'boolean',
|
|
|
|
'default' => false,
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'type' => 'object',
|
|
|
|
],
|
|
|
|
'route' => [
|
|
|
|
'properties' => [
|
|
|
|
'href' => [
|
|
|
|
'type' => 'string',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'type' => 'object',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'_embedded' => [
|
|
|
|
'readOnly' => true,
|
|
|
|
'properties' => [
|
|
|
|
'route' => [
|
|
|
|
'type' => 'object',
|
|
|
|
],
|
2019-05-02 10:02:16 +02:00
|
|
|
'embed_with_group' => [
|
|
|
|
'type' => 'object',
|
|
|
|
],
|
2018-05-05 14:49:17 +02:00
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
2020-05-28 13:19:11 +02:00
|
|
|
'schema' => 'BazingaUser',
|
|
|
|
], json_decode($this->getModel('BazingaUser')->toJson(), true));
|
2018-05-05 14:49:17 +02:00
|
|
|
}
|
|
|
|
|
2019-05-02 10:02:16 +02:00
|
|
|
public function testWithGroup()
|
|
|
|
{
|
|
|
|
$this->assertEquals([
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => [
|
|
|
|
'_embedded' => [
|
|
|
|
'readOnly' => true,
|
|
|
|
'properties' => [
|
|
|
|
'embed_with_group' => [
|
|
|
|
'type' => 'object',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
2020-05-28 13:19:11 +02:00
|
|
|
'schema' => 'BazingaUser_grouped',
|
|
|
|
], json_decode($this->getModel('BazingaUser_grouped')->toJson(), true));
|
2019-05-02 10:02:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testWithType()
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
new \ReflectionMethod(Embedded::class, 'getType');
|
|
|
|
} catch (\ReflectionException $e) {
|
|
|
|
$this->markTestSkipped('Typed embedded properties require at least willdurand/hateoas 3.0');
|
|
|
|
}
|
|
|
|
$this->assertEquals([
|
|
|
|
'type' => 'object',
|
|
|
|
'properties' => [
|
|
|
|
'_embedded' => [
|
|
|
|
'readOnly' => true,
|
|
|
|
'properties' => [
|
|
|
|
'typed_bazinga_users' => [
|
|
|
|
'items' => [
|
2020-05-28 13:19:11 +02:00
|
|
|
'$ref' => '#/components/schemas/BazingaUser',
|
2019-05-02 10:02:16 +02:00
|
|
|
],
|
|
|
|
'type' => 'array',
|
|
|
|
],
|
|
|
|
'typed_bazinga_name' => [
|
|
|
|
'type' => 'string',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
2020-05-28 13:19:11 +02:00
|
|
|
'schema' => 'BazingaUserTyped',
|
|
|
|
], json_decode($this->getModel('BazingaUserTyped')->toJson(), true));
|
2019-05-02 10:02:16 +02:00
|
|
|
}
|
|
|
|
|
2018-05-05 14:49:17 +02:00
|
|
|
protected static function createKernel(array $options = [])
|
|
|
|
{
|
|
|
|
return new TestKernel(true, true);
|
|
|
|
}
|
|
|
|
}
|