我在 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 中,我可以访问新的实体管理器......