PHPUnit测试和Doctrine,连接太多
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHPUnit测试和Doctrine,连接太多相关的知识,希望对你有一定的参考价值。
对于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
你的tearDown方法看起来应该可以解决问题。我这样做,从未遇到过这个问题
protected function tearDown()
{
parent::tearDown();
$this->em->close();
$this->em = null;
}
Bootstrap :: loadAllFixtures方法有什么作用?那里有任何数据库连接可能被忽略了吗?
我也遇到过这个问题。按照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有助于不为每个测试创建新的连接,但是当你有很多测试用例时却没有帮助。每个测试用例都在同一个线程中实例化,每个测试用例都会创建一个新连接。
以上是关于PHPUnit测试和Doctrine,连接太多的主要内容,如果未能解决你的问题,请参考以下文章
以编程方式对用户进行身份验证以进行 PhpUnit 功能测试 - 不受 Doctrine 管理 - Symfony 4.3
Doctrine2.2 (sqlite using memory) 使用 OrmTestCase 和 phpUnit TroubleShoot
Symfony 2 + Doctrine 2 + PHPUnit 3.5:闭包异常的序列化