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 で新しい Entity Manager にアクセスできる理由がわかりません...