mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 23:59:26 +03:00
83 lines
2.0 KiB
PHP
83 lines
2.0 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Nelmio\ApiDocBundle\Tests;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase as BaseWebTestCase;
|
|
use Symfony\Component\Filesystem\Filesystem;
|
|
use Symfony\Component\HttpKernel\Kernel;
|
|
|
|
abstract class WebTestCase extends BaseWebTestCase
|
|
{
|
|
protected function setUp()
|
|
{
|
|
$this->deleteTmpDir();
|
|
|
|
parent::setUp();
|
|
|
|
if (version_compare(Kernel::VERSION, '2.2.0', '<')) {
|
|
$this->markTestSkipped('Does not work with Symfony2 2.1 due to a "host" parameter in the `routing.yml` file');
|
|
}
|
|
}
|
|
|
|
protected function deleteTmpDir()
|
|
{
|
|
if (!file_exists($dir = sys_get_temp_dir().'/'.Kernel::VERSION)) {
|
|
return;
|
|
}
|
|
|
|
$fs = new Filesystem();
|
|
$fs->remove($dir);
|
|
}
|
|
|
|
public static function handleDeprecation($errorNumber, $message, $file, $line, $context)
|
|
{
|
|
if ($errorNumber & E_USER_DEPRECATED) {
|
|
return true;
|
|
}
|
|
|
|
return \PHPUnit_Util_ErrorHandler::handleError($errorNumber, $message, $file, $line);
|
|
}
|
|
|
|
protected function getContainer(array $options = array())
|
|
{
|
|
if (!static::$kernel) {
|
|
static::$kernel = static::createKernel($options);
|
|
}
|
|
static::$kernel->boot();
|
|
|
|
return static::$kernel->getContainer();
|
|
}
|
|
|
|
protected static function getKernelClass()
|
|
{
|
|
require_once __DIR__.'/Fixtures/app/AppKernel.php';
|
|
|
|
return 'Nelmio\ApiDocBundle\Tests\Functional\AppKernel';
|
|
}
|
|
|
|
protected static function createKernel(array $options = array())
|
|
{
|
|
$class = self::getKernelClass();
|
|
|
|
return new $class(
|
|
'default',
|
|
isset($options['debug']) ? $options['debug'] : true
|
|
);
|
|
}
|
|
|
|
public function tearDown()
|
|
{
|
|
parent::tearDown();
|
|
$this->deleteTmpDir();
|
|
}
|
|
}
|