12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\GroupedProduct\Api;
- /**
- * @magentoAppIsolation enabled
- */
- class ProductLinkManagementTest extends \Magento\TestFramework\TestCase\WebapiAbstract
- {
- const SERVICE_NAME = 'catalogProductLinkManagementV1';
- const SERVICE_VERSION = 'V1';
- const RESOURCE_PATH = '/V1/products/';
- /**
- * @magentoApiDataFixture Magento/GroupedProduct/_files/product_grouped.php
- */
- public function testGetLinkedItemsByType()
- {
- $productSku = 'grouped-product';
- $linkType = 'associated';
- $serviceInfo = [
- 'rest' => [
- 'resourcePath' => self::RESOURCE_PATH . $productSku . '/links/' . $linkType,
- 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_GET,
- ],
- 'soap' => [
- 'service' => self::SERVICE_NAME,
- 'serviceVersion' => self::SERVICE_VERSION,
- 'operation' => self::SERVICE_NAME . 'GetLinkedItemsByType',
- ],
- ];
- $actual = $this->_webApiCall($serviceInfo, ['sku' => $productSku, 'type' => $linkType]);
- $expected = [
- [
- 'sku' => 'grouped-product',
- 'link_type' => 'associated',
- 'linked_product_sku' => 'simple',
- 'linked_product_type' => 'simple',
- 'position' => 1,
- 'extension_attributes' => ['qty' => 1]
- ],
- [
- 'sku' => 'grouped-product',
- 'link_type' => 'associated',
- 'linked_product_sku' => 'virtual-product',
- 'linked_product_type' => 'virtual',
- 'position' => 2,
- 'extension_attributes' => ['qty' => 2]
- ],
- ];
- $this->assertEquals($expected, $actual);
- }
- }
|