PHPUnit测试和Doctrine,连接太多

问题描述 投票:6回答:2

对于ZF3和Doctrine的PHPUnit测试,我面临着“连接太多”的问题,因为我每次执行PHPUnit时都要执行~200次测试。我已经发现了一些关于堆栈溢出的问题和答案,但没有这些工作。

我的设置:ZF2 / ZF3,Doctrine 2和PHPUnit。

我有一个基础测试类用于所有测试,setUp和tearDown函数如下所示:

public function setUp()
{
    $this->setApplicationConfig(Bootstrap::getConfig());
    Bootstrap::loadAllFixtures();
    if (!static::$em) {
        echo "init em";
        static::$em = Bootstrap::getEntityManager();
    }
    parent::setUp();
    ....
}

public function tearDown()
{
    parent::tearDown();
    static::$em->flush();
    static::$em->clear();
    static::$em->getConnection()->close();
    $refl = new \ReflectionObject($this);
    foreach ($refl->getProperties() as $prop) {
        if (!$prop->isStatic() && 0 !== strpos($prop->getDeclaringClass()->getName(), 'PHPUnit_')) {
            $prop->setAccessible(true);
            $prop->setValue($this, null);
        }
    }
    gc_collect_cycles();
}

public static function (Bootstrap::)loadAllFixtures()
{
    static::$em->getConnection()->executeUpdate("SET foreign_key_checks = 0;");
    $loader = new Loader();
    foreach (self::$config['data-fixture'] as $fixtureDir) {
        $loader->loadFromDirectory($fixtureDir);
    }
    $purger = new ORMPurger(static::$em);
    $executor = new ORMExecutor(static::$em, $purger);
    $executor->execute($loader->getFixtures());
    $executor = null;
    $purger = null;
    static::$em->getConnection()->executeUpdate("SET foreign_key_checks = 1;");
    static::$em->flush();
    static::$em->clear();
}

我正在使用innotop监视我的本地MySQL服务器,并且连接数量正在增加。

你有什么想法我错过了吗?

谢谢你,亚历山大

更新14.02.2017:我改变了使用static::$em的功能并添加了Bootstrap::loadAllFixtures方法。

如果我将static::$em->close()添加到tearDown方法,则所有后续测试都会失败,并显示“EntityManager已关闭”等消息。 echo "init em";只召唤一次并显示第一次测试。是否有可能检查我的应用程序是否打开连接而不关闭它们?我的测试用例基于AbstractHttpControllerTestCase

php zend-framework doctrine-orm zend-framework2 doctrine
2个回答
0
投票

你的tearDown方法看起来应该可以解决问题。我这样做,从未遇到过这个问题

protected function tearDown()
{
    parent::tearDown();

    $this->em->close();
    $this->em = null; 
}

Bootstrap :: loadAllFixtures方法有什么作用?那里有任何数据库连接可能被忽略了吗?


0
投票

我也遇到过这个问题。按照PHPUnit文档中的建议,我做了以下事情:

final public function getConnection()
{
    if ($this->conn === null) {
        if (self::$pdo == null) {

            //We get the EM from dependency injection container
            $container = $this->getContainer();
            self::$pdo = $container->get('Doctrine.EntityManager')->getConnection()->getWrappedConnection();
        }
        $this->conn = $this->createDefaultDBConnection(self::$pdo, 'spark_api_docker');
    }

    return $this->conn;
}

self:$pdo被分享时,当我在我的数据库中观察到show status like '%onn%';时,'threads_connected'的数量一直上升,直到达到极限。

我找到了两个解决方案:


1)每次测试后关闭连接

public function tearDown()
{
    parent::tearDown();

    //You'll probably need to get hold of our entity manager another way
    $this->getContainer()->get('Doctrine.EntityManager')->getConnection()->close();
}

重要的是,不要将self::$pdo设置为null。我曾在其他地方看到过这个建议,但没有必要将它设置为静态属性,然后在每次测试后重置它。

这可以解决我不再需要的关闭连接。测试用例完成后,除非您已关闭连接,否则它将保持打开状态直到脚本结束(即PHPUnit完成运行测试)。由于您要为每个测试用例创建新连接,因此连接数会增加。


2)在单独的PHP线程中运行每个测试

这是大锤的方法。它可能会在一定程度上影响您的测试速度。在你的phpunit.xml`中:

<?xml version="1.0" encoding="UTF-8"?>

<phpunit
    ...
    processIsolation = "true"
    >
    ...
</phpunit>

回到PHPUnit的建议,存储连接和PDO有助于不为每个测试创建新的连接,但是当你有很多测试用例时却没有帮助。每个测试用例都在同一个线程中实例化,每个测试用例都会创建一个新连接。

© www.soinside.com 2019 - 2024. All rights reserved.