This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/WebExtensionTest.php

72 lines
3.0 KiB
PHP
Raw Normal View History

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection;
use Symfony\Bundle\FrameworkBundle\Tests\TestCase;
use Symfony\Bundle\FrameworkBundle\DependencyInjection\WebExtension;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
class WebExtensionTest extends TestCase
{
2010-06-16 13:19:46 +01:00
public function testConfigLoad()
{
$container = $this->getContainer();
$loader = new WebExtension();
$loader->configLoad(array(), $container);
$this->assertEquals('Symfony\\Bundle\\FrameworkBundle\\RequestListener', $container->getParameter('request_listener.class'), '->webLoad() loads the web.xml file if not already loaded');
2010-06-16 13:19:46 +01:00
2010-08-10 14:55:05 +01:00
$container = $this->getContainer();
$loader = new WebExtension();
2010-06-16 13:19:46 +01:00
$loader->configLoad(array('profiler' => true), $container);
$this->assertEquals('Symfony\\Bundle\\FrameworkBundle\\Profiler', $container->getParameter('profiler.class'), '->configLoad() loads the collectors.xml file if not already loaded');
}
public function testTemplatingLoad()
{
2010-08-10 14:55:05 +01:00
$container = $this->getContainer();
$loader = new WebExtension();
$loader->templatingLoad(array(), $container);
$this->assertEquals('Symfony\\Bundle\\FrameworkBundle\\Templating\\Engine', $container->getParameter('templating.engine.class'), '->templatingLoad() loads the templating.xml file if not already loaded');
}
public function testValidationLoad()
{
2010-08-10 14:55:05 +01:00
$container = $this->getContainer();
$loader = new WebExtension();
$loader->configLoad(array('validation' => array('enabled' => true)), $container);
$this->assertEquals('Symfony\Component\Validator\Validator', $container->getParameter('validator.class'), '->validationLoad() loads the validation.xml file if not already loaded');
$this->assertFalse($container->hasDefinition('validator.mapping.loader.annotation_loader'), '->validationLoad() doesn\'t load the annotations service unless its needed');
$loader->configLoad(array('validation' => array('enabled' => true, 'annotations' => true)), $container);
$this->assertTrue($container->hasDefinition('validator.mapping.loader.annotation_loader'), '->validationLoad() loads the annotations service');
}
2010-08-10 14:55:05 +01:00
protected function getContainer()
{
return new ContainerBuilder(new ParameterBag(array(
'kernel.bundle_dirs' => array(
'Symfony\\Framework' => __DIR__ . '/../../../Framework',
),
'kernel.bundles' => array(
'FrameworkBundle',
),
'kernel.debug' => false,
'kernel.compiled_classes' => array(),
2010-08-10 14:55:05 +01:00
)));
}
}