8

我们有大约 180 个单元测试实现webtestcase类,并且测试在控制器上运行。

但是,当我们运行单元测试时,它们打开了太多与 db 的连接。由于在第 120 次测试后有太多的活动 tcp 连接测试失败。在测试运行时,所有连接都处于活动状态。

在tearDown函数中我们调用了实体管理器的close函数,但是什么都没有,没有任何影响。我认为有一些类保持连接对象引用。

因为在php手册中提到当对象分配为null时pdo连接关闭。我们也这样做,但没有改变。PS:我们的单元测试是功能测试。在控制器上工作并与数据库集成,没有模拟对象

我们的错误在哪里?我们如何解决这个问题?

这是我在 config_test.yml 中的连接参数

imports:
    - { resource: config_dev.yml }

framework:
    test: ~
    session:
        storage_id: session.storage.mock_file

web_profiler:
    toolbar: false
    intercept_redirects: false

doctrine:
    dbal:
        driver: pdo_mysql
        port: 3306
        host: localhost
        dbname: mydb
        user: myuser
        password: mypass
        charset: UTF8
4

2 回答 2

7

你检查你的 phpunit.xml.dist 文件了吗?

我认为你应该看看这个; http://www.slideshare.net/fabpot/unit-and-functional-testing-with-symfony2

确保您的参数与以下相同

<phpunit
    backupGlobals               = "false"
    backupStaticAttributes      = "false"
    colors                      = "true"
    convertErrorsToExceptions   = "true"
    convertNoticesToExceptions  = "true"
    convertWarningsToExceptions = "true"
    processIsolation            = "true"
    stopOnFailure               = "false"
    syntaxCheck                 = "false" 
    bootstrap                   = "bootstrap.php.cache" >
于 2013-06-05T11:02:28.540 回答
4

启用进程隔离会产生副作用,使测试套件的执行速度变得异常缓慢。

更好的方法是明确告诉 Doctrine 关闭其连接,无论是在测试 tearDown、tearDownAfterClass 还是任何这样注释的方法上,例如:

trait CloseConnectionAfterTestTrait {
    /** @after */
    public function avoidExhaustingDbConnections()
    {
        if(!empty($this->em)){
            $this->em->getConnection()->close();
        }
    }
}

在此示例中,由消费者将他拥有的任何实体管理器实例保存为$this->em. 但是如果/因为您使用 Doctrine,您可能可以通过访问 Doctrine 服务来更好地概括代码static::$kernel->something

于 2015-03-20T03:11:56.863 回答