| Current Path : /home/rtorresani/www/dev/tests/api-functional/testsuite/Magento/Catalog/Api/ |
| Current File : //home/rtorresani/www/dev/tests/api-functional/testsuite/Magento/Catalog/Api/CostStorageTest.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Api;
use Magento\TestFramework\TestCase\WebapiAbstract;
use Magento\Framework\Webapi\Exception as HTTPExceptionCodes;
/**
* Catalog Cost Storage API test.
*/
class CostStorageTest extends WebapiAbstract
{
const SERVICE_NAME = 'catalogCostStorageV1';
const SERVICE_VERSION = 'V1';
const SIMPLE_PRODUCT_SKU = 'simple';
/**
* @var \Magento\TestFramework\ObjectManager
*/
private $objectManager;
/**
* Set up.
*/
protected function setUp(): void
{
$this->objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
}
/**
* Test get method.
*
* @magentoApiDataFixture Magento/Catalog/_files/product_simple.php
*/
public function testGet()
{
$cost = 3057;
$productRepository = $this->objectManager->create(\Magento\Catalog\Api\ProductRepositoryInterface::class);
$productRepository->save($productRepository->get(self::SIMPLE_PRODUCT_SKU)->setData('cost', $cost));
$serviceInfo = [
'rest' => [
'resourcePath' => '/V1/products/cost-information',
'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST
],
'soap' => [
'service' => self::SERVICE_NAME,
'serviceVersion' => self::SERVICE_VERSION,
'operation' => self::SERVICE_NAME . 'Get',
],
];
$response = $this->_webApiCall($serviceInfo, ['skus' => [self::SIMPLE_PRODUCT_SKU]]);
/** @var \Magento\Catalog\Api\Data\ProductInterface $product */
$product = $productRepository->get(self::SIMPLE_PRODUCT_SKU);
$this->assertNotEmpty($response);
$this->assertEquals($cost, (int)$product->getCost());
}
/**
* Test update method.
*
* @magentoApiDataFixture Magento/Catalog/_files/product_simple.php
*/
public function testUpdate()
{
$serviceInfo = [
'rest' => [
'resourcePath' => '/V1/products/cost',
'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST
],
'soap' => [
'service' => self::SERVICE_NAME,
'serviceVersion' => self::SERVICE_VERSION,
'operation' => self::SERVICE_NAME . 'Update',
],
];
$storeId = 0;
$newCost = 31337;
$response = $this->_webApiCall(
$serviceInfo,
[
'prices' => [
[
'cost' => $newCost,
'store_id' => $storeId,
'sku' => self::SIMPLE_PRODUCT_SKU,
]
]
]
);
$productRepository = $this->objectManager->create(\Magento\Catalog\Api\ProductRepositoryInterface::class);
/** @var \Magento\Catalog\Api\Data\ProductInterface $product */
$product = $productRepository->get(self::SIMPLE_PRODUCT_SKU);
$this->assertEmpty($response);
$this->assertEquals($newCost, (int)$product->getCost());
}
/**
* Test update method call without SKU.
*/
public function testUpdateWithInvalidParameters()
{
$serviceInfo = [
'rest' => [
'resourcePath' => '/V1/products/cost',
'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST
],
'soap' => [
'service' => self::SERVICE_NAME,
'serviceVersion' => self::SERVICE_VERSION,
'operation' => self::SERVICE_NAME . 'Update',
],
];
$newCost = -9999;
$storeId = 9999;
$response = $this->_webApiCall(
$serviceInfo,
[
'prices' => [
[
'sku' => 'not_existing_sku',
'cost' => $newCost,
'store_id' => $storeId
]
]
]
);
$expectedResponse = [
0 => [
'message' => 'Invalid attribute %fieldName = %fieldValue.',
'parameters' => [
'SKU',
'not_existing_sku',
]
],
1 => [
'message' => 'Invalid attribute Cost = -9999. Row ID: SKU = not_existing_sku, Store ID: 9999.',
'parameters' => [
'-9999',
'not_existing_sku',
'9999'
]
],
2 => [
'message' => 'Requested store is not found. Row ID: SKU = not_existing_sku, Store ID: 9999.',
'parameters' => [
'not_existing_sku',
'9999'
]
]
];
$this->assertEquals($expectedResponse, $response);
}
/**
* Test delete method.
*
* @magentoApiDataFixture Magento/Catalog/_files/product_simple.php
*/
public function testDelete()
{
$productRepository = $this->objectManager->create(\Magento\Catalog\Api\ProductRepositoryInterface::class);
$productRepository->save($productRepository->get(self::SIMPLE_PRODUCT_SKU)->setData('cost', 777));
$serviceInfo = [
'rest' => [
'resourcePath' => '/V1/products/cost-delete',
'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST
],
'soap' => [
'service' => self::SERVICE_NAME,
'serviceVersion' => self::SERVICE_VERSION,
'operation' => self::SERVICE_NAME . 'Delete',
],
];
$response = $this->_webApiCall($serviceInfo, ['skus' => [self::SIMPLE_PRODUCT_SKU]]);
$productRepository = $this->objectManager->create(\Magento\Catalog\Api\ProductRepositoryInterface::class);
/** @var \Magento\Catalog\Api\Data\ProductInterface $product */
$product = $productRepository->get(self::SIMPLE_PRODUCT_SKU);
$this->assertTrue($response);
$this->assertNull($product->getCost());
}
}