通过单元测试访问 Symfony 2 容器?

2022-08-30 11:39:23

如何在单元测试中访问 Symfony 2 容器?我的图书馆需要它,所以它是必不可少的。

测试类扩展,因此没有容器。\PHPUnit_Framework_TestCase


答案 1

支持现在内置于Symfony中。查看 http://symfony.com/doc/master/cookbook/testing/doctrine.html

以下是您可以执行的操作:

namespace AppBundle\Tests;

use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;

class MyDatabaseTest extends KernelTestCase
{
    private $container;

    public function setUp()
    {
        self::bootKernel();

        $this->container = self::$kernel->getContainer();
    }
}

有关更现代和可重用的技术,请参阅 https://gist.github.com/jakzal/a24467c2e57d835dcb65

请注意,在单元测试中使用容器会闻起来。通常,这意味着您的类依赖于整个容器(整个世界),这并不好。你应该限制你的依赖关系并模拟它们。


答案 2

您可以在设置函数中使用此

protected $client;
protected $em;

/**
 * PHP UNIT SETUP FOR MEMORY USAGE
 * @SuppressWarnings(PHPMD.UnusedLocalVariable) crawler set instance for test.
 */
public function setUp()
{
    $this->client = static::createClient(array(
            'environment' => 'test',
    ),
        array(
            'HTTP_HOST' => 'host.tst',
            'HTTP_USER_AGENT' => 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:20.0) Gecko/20100101 Firefox/20.0',
    ));

    static::$kernel = static::createKernel();
    static::$kernel->boot();
    $this->em = static::$kernel->getContainer()
                               ->get('doctrine')
                               ->getManager();
    $crawler = $this->client->followRedirects();
}

不要忘记设置您的拆解功能

    protected function tearDown()
{
    $this->em->close();
    unset($this->client, $this->em,);
}

推荐