client = $this->createAuthorizedClient(); } /** * @return KernelBrowser */ protected function createUnauthorizedClient() { static::ensureKernelShutdown(); return static::createClient(); } /** * @return KernelBrowser */ protected function createAuthorizedClient() { $client = $this->createUnauthorizedClient(); $container = $client->getContainer(); /** @var UserManager $userManager */ $userManager = $container->get('fos_user.user_manager.test'); /** @var LoginManager $loginManager */ $loginManager = $container->get('fos_user.security.login_manager.test'); $firewallName = $container->getParameter('fos_user.firewall_name'); $this->user = $userManager->findUserBy(['username' => 'admin']); $loginManager->logInUser($firewallName, $this->user); // save the login token into the session and put it in a cookie $container->get(SessionInterface::class)->set('_security_' . $firewallName, serialize($container->get(TokenStorageInterface::class)->getToken())); $container->get(SessionInterface::class)->save(); $session = $container->get(SessionInterface::class); $client->getCookieJar()->set(new Cookie($session->getName(), $session->getId())); return $client; } /** * Return the ID for the user admin. * Used because on heavy testing we don't want to re-create the database on each run. * Which means "admin" user won't have id 1 all the time. * * @param string $username * * @return int */ protected function getUserId($username = 'admin') { return $this->client ->getContainer() ->get(EntityManagerInterface::class) ->getRepository(User::class) ->findOneByUserName($username) ->getId(); } }