mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-04-03 22:03:33 +03:00
Merge pull request #1061 from discordier/feature/root-key-configuration-merge
[3.0] Allow configuration to be split on root key level.
This commit is contained in:
commit
026ee2ada1
2 changed files with 86 additions and 0 deletions
|
@ -23,6 +23,7 @@ final class Configuration implements ConfigurationInterface
|
|||
->root('nelmio_api_doc')
|
||||
->children()
|
||||
->arrayNode('documentation')
|
||||
->useAttributeAsKey('key')
|
||||
->info('The documentation used as base')
|
||||
->example(['info' => ['title' => 'My App']])
|
||||
->prototype('variable')->end()
|
||||
|
|
85
Tests/DependencyInjection/NelmioApiDocExtensionTest.php
Normal file
85
Tests/DependencyInjection/NelmioApiDocExtensionTest.php
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?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\Describer;
|
||||
|
||||
use Nelmio\ApiDocBundle\DependencyInjection\NelmioApiDocExtension;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
||||
|
||||
class NelmioApiDocExtensionTest extends TestCase
|
||||
{
|
||||
public function testMergesRootKeysFromMultipleConfigurations()
|
||||
{
|
||||
$container = new ContainerBuilder();
|
||||
$container->setParameter('kernel.bundles', []);
|
||||
$extension = new NelmioApiDocExtension();
|
||||
$extension->load([
|
||||
[
|
||||
'documentation' => [
|
||||
'info' => [
|
||||
'title' => 'API documentation',
|
||||
'description' => 'This is the api documentation, use it wisely',
|
||||
],
|
||||
],
|
||||
],
|
||||
[
|
||||
'documentation' => [
|
||||
'tags' => [
|
||||
[
|
||||
'name' => 'secured',
|
||||
'description' => 'Requires authentication',
|
||||
],
|
||||
[
|
||||
'name' => 'another',
|
||||
'description' => 'Another tag serving another purpose',
|
||||
],
|
||||
],
|
||||
],
|
||||
],
|
||||
[
|
||||
'documentation' => [
|
||||
'paths' => [
|
||||
'/api/v1/model' => [
|
||||
'get' => [
|
||||
'tags' => ['secured'],
|
||||
],
|
||||
],
|
||||
],
|
||||
],
|
||||
],
|
||||
], $container);
|
||||
|
||||
$this->assertSame([
|
||||
'info' => [
|
||||
'title' => 'API documentation',
|
||||
'description' => 'This is the api documentation, use it wisely',
|
||||
],
|
||||
'tags' => [
|
||||
[
|
||||
'name' => 'secured',
|
||||
'description' => 'Requires authentication',
|
||||
],
|
||||
[
|
||||
'name' => 'another',
|
||||
'description' => 'Another tag serving another purpose',
|
||||
],
|
||||
],
|
||||
'paths' => [
|
||||
'/api/v1/model' => [
|
||||
'get' => [
|
||||
'tags' => ['secured'],
|
||||
],
|
||||
],
|
||||
],
|
||||
], $container->getDefinition('nelmio_api_doc.describers.config')->getArgument(0));
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue