2016-07-12 00:33:55 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of the ApiDocBundle package.
|
|
|
|
*
|
|
|
|
* (c) EXSyst
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
2016-07-29 10:22:40 +02:00
|
|
|
use ApiPlatform\Core\Bridge\Symfony\Bundle\ApiPlatformBundle;
|
2016-07-12 00:33:55 +02:00
|
|
|
use EXSyst\Bundle\ApiDocBundle\EXSystApiDocBundle;
|
2016-07-29 10:22:40 +02:00
|
|
|
use EXSyst\Bundle\ApiDocBundle\Tests\Functional\TestBundle;
|
2016-07-12 00:33:55 +02:00
|
|
|
use Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
|
2016-11-18 22:16:53 +01:00
|
|
|
use Symfony\Bundle\TwigBundle\TwigBundle;
|
2016-07-12 00:33:55 +02:00
|
|
|
use Symfony\Component\Config\Loader\LoaderInterface;
|
|
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
|
|
use Symfony\Component\HttpKernel\Kernel;
|
|
|
|
use Symfony\Component\Routing\RouteCollectionBuilder;
|
|
|
|
|
|
|
|
class TestKernel extends Kernel
|
|
|
|
{
|
|
|
|
use MicroKernelTrait;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function registerBundles()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
new FrameworkBundle(),
|
2016-11-18 22:16:53 +01:00
|
|
|
new TwigBundle(),
|
2016-07-12 00:33:55 +02:00
|
|
|
new SensioFrameworkExtraBundle(),
|
2016-07-29 10:22:40 +02:00
|
|
|
new ApiPlatformBundle(),
|
2016-07-12 00:33:55 +02:00
|
|
|
new EXSystApiDocBundle(),
|
2016-07-29 10:22:40 +02:00
|
|
|
new TestBundle(),
|
2016-07-12 00:33:55 +02:00
|
|
|
];
|
|
|
|
}
|
2016-07-15 00:04:07 +02:00
|
|
|
|
2016-07-12 00:33:55 +02:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
protected function configureRoutes(RouteCollectionBuilder $routes)
|
|
|
|
{
|
|
|
|
$routes->import(__DIR__.'/Controller/', '/', 'annotation');
|
2016-07-29 10:22:40 +02:00
|
|
|
$routes->import('', '/api', 'api_platform');
|
2016-07-12 00:33:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
protected function configureContainer(ContainerBuilder $c, LoaderInterface $loader)
|
|
|
|
{
|
|
|
|
$c->loadFromExtension('framework', [
|
|
|
|
'secret' => 'MySecretKey',
|
2016-07-29 10:22:40 +02:00
|
|
|
'test' => null,
|
|
|
|
'validation' => null,
|
2016-07-12 00:33:55 +02:00
|
|
|
]);
|
2016-11-30 14:08:10 +01:00
|
|
|
|
|
|
|
// Filter routes
|
|
|
|
$c->loadFromExtension('exsyst_api_doc', [
|
|
|
|
'routes' => [
|
|
|
|
'path_patterns' => ['^/api(?!/admin)'],
|
|
|
|
],
|
|
|
|
]);
|
2016-07-12 00:33:55 +02:00
|
|
|
}
|
|
|
|
}
|