mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-15 09:30:58 +00:00
81 lines
2.6 KiB
PHP
81 lines
2.6 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Sylius package.
|
|
*
|
|
* (c) Sylius Sp. z o.o.
|
|
*
|
|
* 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 Exception;
|
|
use Symfony\Component\BrowserKit\Cookie;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;
|
|
|
|
final class AdminProductAjaxTest extends SessionAwareAjaxTestCase
|
|
{
|
|
/**
|
|
* @test
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function it_denies_access_to_a_products_list_for_not_authenticated_user()
|
|
{
|
|
$this->client->request('GET', '/admin/ajax/products/');
|
|
|
|
$response = $this->client->getResponse();
|
|
$this->assertTrue($response->isRedirection());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function it_allows_to_get_a_products_list()
|
|
{
|
|
$this->loadFixturesFromFile('authentication/administrator.yml');
|
|
$this->loadFixturesFromFiles([
|
|
'resources/product_association_types.yml',
|
|
'resources/products.yml',
|
|
'resources/many_products.yml',
|
|
'resources/product_associations.yml',
|
|
]);
|
|
|
|
$this->authenticateAdminUser();
|
|
|
|
$this->client->request('GET', '/admin/ajax/products/');
|
|
|
|
$response = $this->client->getResponse();
|
|
$this->assertResponse($response, 'ajax/product/index_response', Response::HTTP_OK);
|
|
}
|
|
|
|
private function authenticateAdminUser(): void
|
|
{
|
|
$adminUserRepository = self::$kernel->getContainer()->get('sylius.repository.admin_user');
|
|
$user = $adminUserRepository->findOneByEmail('admin@sylius.com');
|
|
$session = self::$kernel->getContainer()->get('request_stack')->getSession();
|
|
|
|
$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);
|
|
}
|
|
}
|