mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 17:10:53 +00:00
339 lines
11 KiB
PHP
339 lines
11 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 Lakion\ApiTestCase\JsonApiTestCase;
|
|
use Sylius\Component\Product\Model\ProductOptionInterface;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
|
|
final class ProductOptionApiTest extends JsonApiTestCase
|
|
{
|
|
/** @var array */
|
|
private static $authorizedHeaderWithContentType = [
|
|
'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
|
|
'CONTENT_TYPE' => 'application/json',
|
|
];
|
|
|
|
/** @var array */
|
|
private static $authorizedHeaderWithAccept = [
|
|
'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
|
|
'ACCEPT' => 'application/json',
|
|
];
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function it_does_not_allow_to_show_product_options_list_when_access_is_denied()
|
|
{
|
|
$this->loadFixturesFromFile('resources/product_options.yml');
|
|
|
|
$this->client->request('GET', '/api/v1/product-options/');
|
|
|
|
$response = $this->client->getResponse();
|
|
$this->assertResponse($response, 'authentication/access_denied_response', Response::HTTP_UNAUTHORIZED);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function it_allows_indexing_product_options()
|
|
{
|
|
$this->loadFixturesFromFile('authentication/api_administrator.yml');
|
|
$this->loadFixturesFromFile('resources/product_options.yml');
|
|
|
|
$this->client->request('GET', '/api/v1/product-options/', [], [], static::$authorizedHeaderWithAccept);
|
|
|
|
$response = $this->client->getResponse();
|
|
$this->assertResponse($response, 'product_option/index_response', Response::HTTP_OK);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function it_does_not_allow_to_show_product_option_when_it_does_not_exist()
|
|
{
|
|
$this->loadFixturesFromFile('authentication/api_administrator.yml');
|
|
|
|
$this->client->request('GET', '/api/v1/product-options/-1', [], [], static::$authorizedHeaderWithAccept);
|
|
|
|
$response = $this->client->getResponse();
|
|
$this->assertResponse($response, 'error/not_found_response', Response::HTTP_NOT_FOUND);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function it_allows_showing_product_option()
|
|
{
|
|
$this->loadFixturesFromFile('authentication/api_administrator.yml');
|
|
$productOptions = $this->loadFixturesFromFile('resources/product_options.yml');
|
|
$productOption = $productOptions['mug-size'];
|
|
|
|
$this->client->request('GET', $this->getProductOptionUrl($productOption), [], [], static::$authorizedHeaderWithAccept);
|
|
|
|
$response = $this->client->getResponse();
|
|
$this->assertResponse($response, 'product_option/show_response', Response::HTTP_OK);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function it_does_not_allow_to_delete_product_option_if_it_does_not_exist()
|
|
{
|
|
$this->loadFixturesFromFile('authentication/api_administrator.yml');
|
|
|
|
$this->client->request('DELETE', '/api/v1/product-options/-1', [], [], static::$authorizedHeaderWithAccept);
|
|
|
|
$response = $this->client->getResponse();
|
|
|
|
$this->assertResponse($response, 'error/not_found_response', Response::HTTP_NOT_FOUND);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function it_allows_to_delete_product_option()
|
|
{
|
|
$this->loadFixturesFromFile('authentication/api_administrator.yml');
|
|
$productOptions = $this->loadFixturesFromFile('resources/product_options.yml');
|
|
$productOption = $productOptions['mug-size'];
|
|
|
|
$this->client->request('DELETE', $this->getProductOptionUrl($productOption), [], [], static::$authorizedHeaderWithContentType);
|
|
|
|
$response = $this->client->getResponse();
|
|
$this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
|
|
|
|
$this->client->request('GET', '/api/v1/product-options/', [], [], static::$authorizedHeaderWithAccept);
|
|
|
|
$response = $this->client->getResponse();
|
|
$this->assertResponse($response, 'product_option/index_response_after_delete', Response::HTTP_OK);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function it_allows_to_create_product_option_with_multiple_translations()
|
|
{
|
|
$this->loadFixturesFromFile('authentication/api_administrator.yml');
|
|
$this->loadFixturesFromFile('resources/locales.yml');
|
|
|
|
$data =
|
|
<<<EOT
|
|
{
|
|
"code": "MUG_SIZE",
|
|
"translations": {
|
|
"de_CH": {
|
|
"name": "Bechergröße"
|
|
},
|
|
"en_US": {
|
|
"name": "Mug size"
|
|
}
|
|
},
|
|
"values": [
|
|
{
|
|
"code": "MUG_SIZE_S",
|
|
"translations": {
|
|
"de_CH": {
|
|
"value": "Klein"
|
|
},
|
|
"en_US": {
|
|
"value": "Small"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"code": "MUG_SIZE_L",
|
|
"translations": {
|
|
"de_CH": {
|
|
"value": "Groß"
|
|
},
|
|
"en_US": {
|
|
"value": "Large"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
EOT;
|
|
|
|
$this->client->request('POST', '/api/v1/product-options/', [], [], static::$authorizedHeaderWithContentType, $data);
|
|
|
|
$response = $this->client->getResponse();
|
|
$this->assertResponse($response, 'product_option/create_response', Response::HTTP_CREATED);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function it_does_not_allow_to_create_product_option_without_required_fields()
|
|
{
|
|
$this->loadFixturesFromFile('authentication/api_administrator.yml');
|
|
|
|
$this->client->request('POST', '/api/v1/product-options/', [], [], static::$authorizedHeaderWithContentType);
|
|
|
|
$response = $this->client->getResponse();
|
|
$this->assertResponse($response, 'product_option/create_validation_fail_response', Response::HTTP_BAD_REQUEST);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function it_allows_to_update_product_option_with_multiple_translations()
|
|
{
|
|
$this->loadFixturesFromFile('authentication/api_administrator.yml');
|
|
$this->loadFixturesFromFile('resources/locales.yml');
|
|
$productOptions = $this->loadFixturesFromFile('resources/product_options.yml');
|
|
$productOption = $productOptions['mug-size'];
|
|
|
|
$data =
|
|
<<<EOT
|
|
{
|
|
"code": "MUG_SIZE",
|
|
"position": 2,
|
|
"translations": {
|
|
"de_CH": {
|
|
"name": "Bechergröße"
|
|
},
|
|
"en_US": {
|
|
"name": "Mug size"
|
|
}
|
|
},
|
|
"values": [
|
|
{
|
|
"code": "MUG_SIZE_S",
|
|
"translations": {
|
|
"de_CH": {
|
|
"value": "Klein"
|
|
},
|
|
"en_US": {
|
|
"value": "Small"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"code": "MUG_SIZE_L",
|
|
"translations": {
|
|
"de_CH": {
|
|
"value": "Groß"
|
|
},
|
|
"en_US": {
|
|
"value": "Large"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"code": "MUG_SIZE_M",
|
|
"translations": {
|
|
"de_CH": {
|
|
"value": "Mittel"
|
|
},
|
|
"en_US": {
|
|
"value": "Medium"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
EOT;
|
|
|
|
$this->client->request('PUT', $this->getProductOptionUrl($productOption), [], [], static::$authorizedHeaderWithContentType, $data);
|
|
|
|
$response = $this->client->getResponse();
|
|
$this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
|
|
|
|
$this->client->request('GET', $this->getProductOptionUrl($productOption), [], [], static::$authorizedHeaderWithAccept);
|
|
|
|
$response = $this->client->getResponse();
|
|
$this->assertResponse($response, 'product_option/show_response_after_update', Response::HTTP_OK);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function it_allows_to_partially_update_product_option_with_multiple_translations()
|
|
{
|
|
$this->loadFixturesFromFile('authentication/api_administrator.yml');
|
|
$this->loadFixturesFromFile('resources/locales.yml');
|
|
$productOptions = $this->loadFixturesFromFile('resources/product_options.yml');
|
|
$productOption = $productOptions['mug-size'];
|
|
|
|
$data =
|
|
<<<EOT
|
|
{
|
|
"code": "MUG_SIZE",
|
|
"translations": {
|
|
"de_CH": {
|
|
"name": "Bechergröße"
|
|
},
|
|
"en_US": {
|
|
"name": "Mug size"
|
|
}
|
|
},
|
|
"values": [
|
|
{
|
|
"code": "MUG_SIZE_S",
|
|
"translations": {
|
|
"de_CH": {
|
|
"value": "Klein"
|
|
},
|
|
"en_US": {
|
|
"value": "Small"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"code": "MUG_SIZE_L",
|
|
"translations": {
|
|
"de_CH": {
|
|
"value": "Groß"
|
|
},
|
|
"en_US": {
|
|
"value": "Large"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"code": "MUG_SIZE_M",
|
|
"translations": {
|
|
"de_CH": {
|
|
"value": "Mittel"
|
|
},
|
|
"en_US": {
|
|
"value": "Medium"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
EOT;
|
|
|
|
$this->client->request('PATCH', $this->getProductOptionUrl($productOption), [], [], static::$authorizedHeaderWithContentType, $data);
|
|
|
|
$response = $this->client->getResponse();
|
|
$this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
|
|
|
|
$this->client->request('GET', $this->getProductOptionUrl($productOption), [], [], static::$authorizedHeaderWithAccept);
|
|
|
|
$response = $this->client->getResponse();
|
|
$this->assertResponse($response, 'product_option/show_response_after_partial_update', Response::HTTP_OK);
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
private function getProductOptionUrl(ProductOptionInterface $productOption)
|
|
{
|
|
return '/api/v1/product-options/' . $productOption->getCode();
|
|
}
|
|
}
|