тесте?
...
protected function setUp(): void
{
$this->client = static::createClient();
$this->client->disableReboot();
$kernel = self::bootKernel();
DatabasePrimer::prime($kernel);
$this->em = $kernel->getContainer()->get('doctrine')->getManager();
}
public function test_userinfo_success()
{
$userRepository = $this->em->getRepository(User::class);
$testUser = $userRepository->findOneBy(['email' => 'black.jack@mail.ru']);
// ТУТ РУГАЕТСЯ
$this->client->loginUser($testUser);
}
...
LogicException: Cannot retrieve the container from a non-booted kernel.
$userRepository = static::$container->get(UserRepository::class); $testUser = $userRepository->findOneBy(['email' => 'black.jack@mail.ru']); $this->client->loginUser($testUser);
Спасибо, но не уверен, что контекст верный: Error: Call to undefined method App\Model\User\Entity\User\UserRepository::findOneBy()
А ругань была не на репозиторий до этого, а на non bootable kernel
https://symfony.com/doc/current/testing.html#testing-logging-in-users
тогда чтобы достучаться до em или repo используй static::getContainer а не $kernel->getContainer()
Аналогично ( protected function setUp(): void { $this->client = static::createClient(); $this->client->disableReboot(); $this->em = static::getContainer()->get('doctrine')->getManager(); } public function test_userinfo_success() $userRepository = static::$container->get(UserRepository::class); $testUser = $userRepository->getByEmail(new Email('black.jack@mail.ru')); $this->client->loginUser($testUser); }
эм... а в test_userinfo_success ничего менять не нужно? если достаем через em, то мб следует изменить $this->em->getRepository ? или $userRepository = static::getContainer()->get(UserRepository::class); ?
Так немного поменялось) protected function setUp(): void { $this->client = static::createClient(); $this->client->disableReboot(); $this->em = static::getContainer()->get('doctrine')->getManager(); } public function test_userinfo_success() $userRepository = $this->em->getRepository(User::class); $testUser = $userRepository->findOneBy(['email' => 'black.jack@mail.ru']); $this->client->loginUser($testUser); } You have requested a non-existent service "security.untracked_token_storage"
хз, возможно провайдер не описан в сесуриту ямл на сущность юзера
Обсуждают сегодня