mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-15 01:20:59 +00:00
71 lines
2.1 KiB
PHP
71 lines
2.1 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 Exception;
|
|
use Symfony\Component\BrowserKit\Cookie;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;
|
|
|
|
class AdminProductAjaxTest extends JsonApiTestCase
|
|
{
|
|
/**
|
|
* @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->loadFixturesFromFile('resources/products.yml');
|
|
$this->loadFixturesFromFile('resources/many_products.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::$container->get('sylius.repository.admin_user');
|
|
$user = $adminUserRepository->findOneByEmail('admin@sylius.com');
|
|
|
|
$session = self::$container->get('session');
|
|
$firewallName = 'admin';
|
|
$firewallContext = 'admin';
|
|
$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);
|
|
}
|
|
}
|