5

我在 phpunit 中的实体管理器有问题。

这是我的测试:

public function testValidChangeEmail()
{
    $client = self::createAuthClient('user','password');

    $crawler = $client->request('GET', '/user/edit/30');
    $crawler = $client->submit($crawler->selectButton('submit')->form(array(
        'form[email]' => 'new@email.com',
    )));

    /*
     * With this em, this work perfectly 
     * $em = $client->getContainer()->get('doctrine.orm.entity_manager');
     */

    $user = self::$em->getRepository('MyBundle:User')->findUser('new@email.com');

    die(var_dump($user->getEmail()));
}

这是我的 WebTestCase 扩展原始 WebTestCase :

class WebTestCase extends BaseWebTestCase
{
    static protected $container;
    static protected $em;

    static protected function createClient(array $options = array(), array $server = array())
    {
        $client = parent::createClient($options, $server);
        self::$em = $client->getContainer()->get('doctrine.orm.entity_manager');
        self::$container = $client->getContainer();

        return $client;
    }

    protected function createAuthClient($user, $pass)
    {
        return self::createClient(array(), array(
            'PHP_AUTH_USER' => $user,
            'PHP_AUTH_PW'   => $pass,
        ));
    }

如您所见,我在创建客户端时替换了 self::$em。

我的问题:

在我的测试中,die()给我旧电子邮件而不是new@email.com在测试中注册的新电子邮件 ( )。但是在我的数据库中,我已new@email.com正确保存。

当我在数据库中检索我的用户时,我使用sefl::$em. 如果我$em在评论中使用,我会检索到正确的新电子邮件。

我不明白为什么在我的 WebTestCase 中,我可以访问新的实体管理器......

4

1 回答 1

4

您无法访问新的实体管理器,因为 Symfony 的客户端类在每次请求之前关闭内核,这意味着它会擦除整个服务容器并从头开始重新构建它。

因此,在第二次请求之后,您将获得与您自己的 WebTestCase 类中的一个非常不同的实体管理器。(我在第二次之后说,因为客户端关闭的内核只有在已经执行了任何请求的情况下)

问题是——你真的需要在你的 WebTestCase 类中使用相同的实体管理器吗?实际上,您可能想要使用相同的实体管理器,因为您想要控制请求之间的事务。但是在这种情况下,您应该创建自己的测试客户端类扩展 symfony 的类,并在那里定义静态连接或实体管理器,并在每次请求之前将其放入容器中。

看例子: http ://alexandre-salome.fr/blog/Symfony2-Isolation-Of-Tests

于 2012-10-10T18:06:06.187 回答