バックエンドを持つSymfony 3.2プロジェクトがあります。各エンティティには、CRUD コントローラー、ビューなどがあり
abstract class AbstractControllerTest extends WebTestCase
ます。各エンティティのテストのベースとなる を用意しました。エンティティごとに、list、show、edit、および new がHTTP 200を返すことをアサートする簡単なテストを使用します。
したがって、すべてのテストを実行すると、エンティティごとにテストリスト、ショーなどが表示されます。問題は、リストコントローラーでデフォルトの順序で KNPPaginator を使用していることです。コントローラーは正常に動作しますが、テストを実行して 2 番目のエンティティに到達すると、エンティティ フィールドがないために 500 エラーが発生します。このテストは、前のテストから Pager のリスト Query を取得することがわかります。したがって、エンティティ A はデフォルトで位置フィールドで順序付けられます。エンティティ B には位置フィールドがないため、エラーが発生します。したがって、PHPUnit が A Entity をテストするときは問題ありませんが、次に B Entity をテストするとエラーが発生します。順序がセッションに保存されないため、何が起こっているのかわかりません。そのため、PHPUnit が前のエンティティのセッションからクエリを取得する方法はありません。何が起こっているのですか?
AbstractControllerTest
abstract class AbstractControllerTest extends WebTestCase
{
/** @var Client $client */
public $client = null;
protected $user = '';
protected $prefix = '';
protected $section = '';
protected $entityId = '';
public function setUp()
{
$this->client = $this->createAuthorizedClient();
}
/**
* @return Client
*/
protected function createAuthorizedClient()
{
$client = static::createClient();
$client->setServerParameter('HTTP_HOST', $client->getContainer()->getParameter('test_info_domain'));
$client->setServerParameter('HTTPS', true);
$client->followRedirects();
$container = $client->getContainer();
$session = $container->get('session');
/** @var $userManager \FOS\UserBundle\Doctrine\UserManager */
$userManager = $container->get('fos_user.user_manager');
/** @var $loginManager \FOS\UserBundle\Security\LoginManager */
$loginManager = $container->get('fos_user.security.login_manager');
$firewallName = $this->section;
/** @var UserInterface $userObject */
$userObject = $userManager->findUserBy(array('username' => $this->user));
$loginManager->logInUser($firewallName, $userObject);
// save the login token into the session and put it in a cookie
$container->get('session')->set('_security_' . $firewallName,
serialize($container->get('security.token_storage')->getToken()));
$container->get('session')->save();
$client->getCookieJar()->set(new Cookie($session->getName(), $session->getId()));
return $client;
}
public function testIndex()
{
//CRUD index
$this->client->request('GET', sprintf('/%s/%s',$this->section,$this->prefix));
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
}
public function testShow()
{
//CRUD show
$this->client->request('GET', sprintf('/%s/%s/%s/show',$this->section,$this->prefix, $this->entityId));
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
}
public function testEdit()
{
//CRUD edit
$this->client->request('GET', sprintf('/%s/%s/%s/edit',$this->section,$this->prefix, $this->entityId));
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
}
public function testNew()
{
//CRUD new
$this->client->request('GET', sprintf('/%s/%s/new',$this->section,$this->prefix));
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
}
}
そして、1 つの Entity の Controller のテスト クラスの 1 つの例
class AgendaCategoryControllerTest extends AbstractControllerTest
{
protected $user = 'tom@test.com';
protected $section = 'admin';
protected $prefix = 'agenda-category';
protected $entityId = '40';
}
別々に走れば
php phpunit.phar src/Bundle/Tests/Controller/Admin/AControllerTest.php
と
php phpunit.phar src/Bundle/Tests/Controller/Admin/BControllerTest.php
大丈夫です。一緒に実行すると、この奇妙なバグがあります
php phpunit.phar -c phpunit.xml.dist --testsuite=管理者