Sylius/tests/Controller/AdminProductVariantAjaxTest.php
2022-02-08 14:34:27 +01:00

70 lines
2.4 KiB
PHP

<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Sylius\Tests\Controller;
use ApiTestCase\JsonApiTestCase;
use Symfony\Component\BrowserKit\Cookie;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;
final class AdminProductVariantAjaxTest extends JsonApiTestCase
{
/** @test */
public function it_denies_access_to_product_variants_for_not_authenticated_user(): void
{
$this->client->request('GET', '/admin/ajax/product-variants/search-all');
$response = $this->client->getResponse();
$this->assertEquals($response->getStatusCode(), Response::HTTP_FOUND);
}
/** @test */
public function it_returns_only_specified_part_of_all_product_variants(): void
{
$this->loadFixturesFromFile('authentication/administrator.yml');
$this->loadFixturesFromFiles(['resources/product_variants.yml']);
$this->authenticateAdminUser();
$this->client->request('GET', '/admin/ajax/product-variants/search-all?phrase=');
$response = $this->client->getResponse();
$this->assertResponse($response, 'ajax/product_variant/index_response', Response::HTTP_OK);
}
private function authenticateAdminUser(): void
{
$adminUserRepository = self::$container->get('sylius.repository.admin_user');
$user = $adminUserRepository->findOneByEmail('admin@sylius.com');
$session = self::$container->get('session');
$firewallName = 'admin';
$firewallContext = 'admin';
/** @deprecated parameter credential was deprecated in Symfony 5.4, so in Sylius 1.11 too, in Sylius 2.0 providing 4 arguments will be prohibited. */
if (3 === (new \ReflectionClass(UsernamePasswordToken::class))->getConstructor()->getNumberOfParameters()) {
$token = new UsernamePasswordToken($user, $firewallName, $user->getRoles());
} else {
$token = new UsernamePasswordToken($user, null, $firewallName, $user->getRoles());
}
$session->set(sprintf('_security_%s', $firewallContext), serialize($token));
$session->save();
$cookie = new Cookie($session->getName(), $session->getId());
$this->client->getCookieJar()->set($cookie);
}
}