123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Downloadable\Api;
- use Magento\Catalog\Api\ProductRepositoryInterface;
- use Magento\Catalog\Model\Product;
- use Magento\Downloadable\Model\Link;
- use Magento\TestFramework\Helper\Bootstrap;
- use Magento\TestFramework\TestCase\WebapiAbstract;
- class LinkRepositoryTest extends WebapiAbstract
- {
- /**
- * @var array
- */
- protected $createServiceInfo;
- /**
- * @var array
- */
- protected $updateServiceInfo;
- /**
- * @var array
- */
- protected $deleteServiceInfo;
- /**
- * @var string
- */
- protected $testImagePath;
- protected function setUp()
- {
- $this->createServiceInfo = [
- 'rest' => [
- 'resourcePath' => '/V1/products/downloadable-product/downloadable-links',
- 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST,
- ],
- 'soap' => [
- 'service' => 'downloadableLinkRepositoryV1',
- 'serviceVersion' => 'V1',
- 'operation' => 'downloadableLinkRepositoryV1Save',
- ],
- ];
- $this->updateServiceInfo = [
- 'rest' => [
- 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_PUT,
- ],
- 'soap' => [
- 'service' => 'downloadableLinkRepositoryV1',
- 'serviceVersion' => 'V1',
- 'operation' => 'downloadableLinkRepositoryV1Save',
- ],
- ];
- $this->deleteServiceInfo = [
- 'rest' => [
- 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_DELETE,
- ],
- 'soap' => [
- 'service' => 'downloadableLinkRepositoryV1',
- 'serviceVersion' => 'V1',
- 'operation' => 'downloadableLinkRepositoryV1Delete',
- ],
- ];
- $this->testImagePath = __DIR__ . DIRECTORY_SEPARATOR . '_files' . DIRECTORY_SEPARATOR . 'test_image.jpg';
- }
- /**
- * Retrieve product that was updated by test
- *
- * @param bool $isScopeGlobal if true product store ID will be set to 0
- * @return Product
- */
- protected function getTargetProduct($isScopeGlobal = false)
- {
- $objectManager = Bootstrap::getObjectManager();
- if ($isScopeGlobal) {
- $product = $objectManager->get(\Magento\Catalog\Model\ProductFactory::class)
- ->create()
- ->setStoreId(0)
- ->load(1);
- } else {
- $product = $objectManager->get(\Magento\Catalog\Model\ProductFactory::class)->create()->load(1);
- }
- return $product;
- }
- /**
- * Retrieve product link by its ID (or first link if ID is not specified)
- *
- * @param Product $product
- * @param int|null $linkId
- * @return Link|null
- */
- protected function getTargetLink(Product $product, $linkId = null)
- {
- $links = $product->getExtensionAttributes()->getDownloadableProductLinks();
- if ($linkId !== null) {
- if (!empty($links)) {
- foreach ($links as $link) {
- if ($link->getId() == $linkId) {
- return $link;
- }
- }
- }
- return null;
- }
- // return first link
- return reset($links);
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable.php
- */
- public function testCreateUploadsProvidedFileContent()
- {
- $requestData = [
- 'isGlobalScopeContent' => true,
- 'sku' => 'downloadable-product',
- 'link' => [
- 'title' => 'Title',
- 'sort_order' => 1,
- 'price' => 10.1,
- 'is_shareable' => 1,
- 'number_of_downloads' => 100,
- 'link_type' => 'file',
- 'link_file_content' => [
- 'file_data' => base64_encode(file_get_contents($this->testImagePath)),
- 'name' => 'image.jpg',
- ],
- 'sample_file_content' => [
- 'file_data' => base64_encode(file_get_contents($this->testImagePath)),
- 'name' => 'image.jpg',
- ],
- 'sample_type' => 'file',
- ],
- ];
- $newLinkId = $this->_webApiCall($this->createServiceInfo, $requestData);
- $globalScopeLink = $this->getTargetLink($this->getTargetProduct(true), $newLinkId);
- $link = $this->getTargetLink($this->getTargetProduct(), $newLinkId);
- $this->assertNotNull($link);
- $this->assertEquals($requestData['link']['title'], $link->getTitle());
- $this->assertEquals($requestData['link']['title'], $globalScopeLink->getTitle());
- $this->assertEquals($requestData['link']['sort_order'], $link->getSortOrder());
- $this->assertEquals($requestData['link']['price'], $link->getPrice());
- $this->assertEquals($requestData['link']['price'], $globalScopeLink->getPrice());
- $this->assertEquals($requestData['link']['is_shareable'], (int)$link->getIsShareable());
- $this->assertEquals($requestData['link']['number_of_downloads'], $link->getNumberOfDownloads());
- $this->assertEquals($requestData['link']['link_type'], $link->getLinkType());
- $this->assertEquals($requestData['link']['sample_type'], $link->getSampleType());
- $this->assertStringEndsWith('.jpg', $link->getSampleFile());
- $this->assertStringEndsWith('.jpg', $link->getLinkFile());
- $this->assertNull($link->getLinkUrl());
- $this->assertNull($link->getSampleUrl());
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable.php
- */
- public function testCreateSavesPriceAndTitleInStoreViewScope()
- {
- $requestData = [
- 'isGlobalScopeContent' => false,
- 'sku' => 'downloadable-product',
- 'link' => [
- 'title' => 'Store View Title',
- 'sort_order' => 1,
- 'price' => 150,
- 'is_shareable' => 1,
- 'number_of_downloads' => 100,
- 'link_url' => 'http://www.example.com/',
- 'link_type' => 'url',
- 'sample_url' => 'http://www.sample.example.com/',
- 'sample_type' => 'url',
- ],
- ];
- $newLinkId = $this->_webApiCall($this->createServiceInfo, $requestData);
- $link = $this->getTargetLink($this->getTargetProduct(), $newLinkId);
- $globalScopeLink = $this->getTargetLink($this->getTargetProduct(true), $newLinkId);
- $this->assertNotNull($link);
- $this->assertEquals($requestData['link']['title'], $link->getTitle());
- $this->assertEquals($requestData['link']['sort_order'], $link->getSortOrder());
- $this->assertEquals($requestData['link']['price'], $link->getPrice());
- $this->assertEquals($requestData['link']['is_shareable'], (int)$link->getIsShareable());
- $this->assertEquals($requestData['link']['number_of_downloads'], $link->getNumberOfDownloads());
- $this->assertEquals($requestData['link']['link_url'], $link->getLinkUrl());
- $this->assertEquals($requestData['link']['link_type'], $link->getLinkType());
- $this->assertEquals($requestData['link']['sample_url'], $link->getSampleUrl());
- $this->assertEquals($requestData['link']['sample_type'], $link->getSampleType());
- $this->assertEmpty($globalScopeLink->getTitle());
- $this->assertEmpty($globalScopeLink->getPrice());
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable.php
- */
- public function testCreateSavesProvidedUrls()
- {
- $requestData = [
- 'isGlobalScopeContent' => false,
- 'sku' => 'downloadable-product',
- 'link' => [
- 'title' => 'Link with URL resources',
- 'sort_order' => 1,
- 'price' => 10.1,
- 'is_shareable' => 1,
- 'number_of_downloads' => 100,
- 'link_url' => 'http://www.example.com/',
- 'link_type' => 'url',
- 'sample_url' => 'http://www.sample.example.com/',
- 'sample_type' => 'url',
- ],
- ];
- $newLinkId = $this->_webApiCall($this->createServiceInfo, $requestData);
- $link = $this->getTargetLink($this->getTargetProduct(), $newLinkId);
- $this->assertNotNull($link);
- $this->assertEquals($requestData['link']['title'], $link->getTitle());
- $this->assertEquals($requestData['link']['sort_order'], $link->getSortOrder());
- $this->assertEquals($requestData['link']['price'], $link->getPrice());
- $this->assertEquals($requestData['link']['is_shareable'], (int)$link->getIsShareable());
- $this->assertEquals($requestData['link']['number_of_downloads'], $link->getNumberOfDownloads());
- $this->assertEquals($requestData['link']['link_url'], $link->getLinkUrl());
- $this->assertEquals($requestData['link']['link_type'], $link->getLinkType());
- $this->assertEquals($requestData['link']['sample_type'], $link->getSampleType());
- $this->assertEquals($requestData['link']['sample_url'], $link->getSampleUrl());
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable.php
- * @expectedException \Exception
- * @expectedExceptionMessage The link type is invalid. Verify and try again.
- */
- public function testCreateThrowsExceptionIfLinkTypeIsNotSpecified()
- {
- $requestData = [
- 'isGlobalScopeContent' => false,
- 'sku' => 'downloadable-product',
- 'link' => [
- 'title' => 'Link with URL resources',
- 'sort_order' => 1,
- 'price' => 10.1,
- 'is_shareable' => 1,
- 'number_of_downloads' => 100,
- 'link_type' => 'invalid',
- 'sample_type' => 'url',
- 'sample_url' => 'http://www.example.com',
- ],
- ];
- $this->_webApiCall($this->createServiceInfo, $requestData);
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable.php
- * @expectedException \Exception
- * @expectedExceptionMessage Provided content must be valid base64 encoded data.
- */
- public function testCreateThrowsExceptionIfLinkFileContentIsNotAValidBase64EncodedString()
- {
- $requestData = [
- 'isGlobalScopeContent' => false,
- 'sku' => 'downloadable-product',
- 'link' => [
- 'title' => 'Link Title',
- 'sort_order' => 1,
- 'price' => 10,
- 'is_shareable' => 1,
- 'number_of_downloads' => 100,
- 'link_type' => 'url',
- 'link_url' => 'http://www.example.com/',
- 'sample_type' => 'file',
- 'sample_file_content' => [
- 'file_data' => 'not_a_base64_encoded_content',
- 'name' => 'image.jpg',
- ],
- ],
- ];
- $this->_webApiCall($this->createServiceInfo, $requestData);
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable.php
- * @expectedException \Exception
- * @expectedExceptionMessage Provided content must be valid base64 encoded data.
- */
- public function testCreateThrowsExceptionIfSampleFileContentIsNotAValidBase64EncodedString()
- {
- $requestData = [
- 'isGlobalScopeContent' => false,
- 'sku' => 'downloadable-product',
- 'link' => [
- 'title' => 'Link Title',
- 'sort_order' => 1,
- 'price' => 10,
- 'is_shareable' => 1,
- 'number_of_downloads' => 100,
- 'link_type' => 'file',
- 'link_file_content' => [
- 'file_data' => 'not_a_base64_encoded_content',
- 'name' => 'image.jpg',
- ],
- 'sample_type' => 'url',
- 'sample_url' => 'http://www.example.com/',
- ],
- ];
- $this->_webApiCall($this->createServiceInfo, $requestData);
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable.php
- * @expectedException \Exception
- * @expectedExceptionMessage Provided file name contains forbidden characters.
- */
- public function testCreateThrowsExceptionIfLinkFileNameContainsForbiddenCharacters()
- {
- $requestData = [
- 'isGlobalScopeContent' => false,
- 'sku' => 'downloadable-product',
- 'link' => [
- 'title' => 'Title',
- 'sort_order' => 15,
- 'price' => 10,
- 'is_shareable' => 1,
- 'number_of_downloads' => 100,
- 'link_type' => 'file',
- 'link_file_content' => [
- 'file_data' => base64_encode(file_get_contents($this->testImagePath)),
- 'name' => 'name/with|forbidden{characters',
- ],
- 'sample_type' => 'url',
- 'sample_url' => 'http://www.example.com/',
- ],
- ];
- $this->_webApiCall($this->createServiceInfo, $requestData);
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable.php
- * @expectedException \Exception
- * @expectedExceptionMessage Provided file name contains forbidden characters.
- */
- public function testCreateThrowsExceptionIfSampleFileNameContainsForbiddenCharacters()
- {
- $requestData = [
- 'isGlobalScopeContent' => false,
- 'sku' => 'downloadable-product',
- 'link' => [
- 'title' => 'Link Title',
- 'sort_order' => 1,
- 'price' => 10,
- 'is_shareable' => 1,
- 'number_of_downloads' => 100,
- 'link_type' => 'url',
- 'link_url' => 'http://www.example.com/',
- 'sample_type' => 'file',
- 'sample_file_content' => [
- 'file_data' => base64_encode(file_get_contents($this->testImagePath)),
- 'name' => 'name/with|forbidden{characters',
- ],
- ],
- ];
- $this->_webApiCall($this->createServiceInfo, $requestData);
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable.php
- * @expectedException \Exception
- * @expectedExceptionMessage Link URL must have valid format.
- */
- public function testCreateThrowsExceptionIfLinkUrlHasWrongFormat()
- {
- $requestData = [
- 'isGlobalScopeContent' => false,
- 'sku' => 'downloadable-product',
- 'link' => [
- 'title' => 'Link Title',
- 'sort_order' => 1,
- 'price' => 10,
- 'is_shareable' => 1,
- 'number_of_downloads' => 100,
- 'link_type' => 'url',
- 'link_url' => 'http://example<.>com/',
- 'sample_type' => 'url',
- 'sample_url' => 'http://www.example.com/',
- ],
- ];
- $this->_webApiCall($this->createServiceInfo, $requestData);
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable.php
- * @expectedException \Exception
- * @expectedExceptionMessage Sample URL must have valid format.
- */
- public function testCreateThrowsExceptionIfSampleUrlHasWrongFormat()
- {
- $requestData = [
- 'isGlobalScopeContent' => false,
- 'sku' => 'downloadable-product',
- 'link' => [
- 'title' => 'Link Title',
- 'sort_order' => 1,
- 'price' => 150,
- 'is_shareable' => 1,
- 'number_of_downloads' => 0,
- 'sample_type' => 'url',
- 'sample_url' => 'http://example<.>com/',
- 'link_type' => 'url',
- 'link_url' => 'http://example.com/',
- ],
- ];
- $this->_webApiCall($this->createServiceInfo, $requestData);
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable.php
- * @expectedException \Exception
- * @expectedExceptionMessage Link price must have numeric positive value.
- * @dataProvider getInvalidLinkPrice
- */
- public function testCreateThrowsExceptionIfLinkPriceIsInvalid($linkPrice)
- {
- $requestData = [
- 'isGlobalScopeContent' => false,
- 'sku' => 'downloadable-product',
- 'link' => [
- 'title' => 'Link Title',
- 'sort_order' => 1,
- 'price' => $linkPrice,
- 'is_shareable' => 1,
- 'number_of_downloads' => 0,
- 'sample_type' => 'url',
- 'sample_url' => 'http://example.com/',
- 'link_type' => 'url',
- 'link_url' => 'http://example.com/',
- ],
- ];
- $this->_webApiCall($this->createServiceInfo, $requestData);
- }
- /**
- * @return array
- */
- public function getInvalidLinkPrice()
- {
- return [
- [-1.5],
- ];
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable.php
- * @expectedException \Exception
- * @expectedExceptionMessage Sort order must be a positive integer.
- * @dataProvider getInvalidSortOrder
- */
- public function testCreateThrowsExceptionIfSortOrderIsInvalid($sortOrder)
- {
- $requestData = [
- 'isGlobalScopeContent' => false,
- 'sku' => 'downloadable-product',
- 'link' => [
- 'title' => 'Link Title',
- 'sort_order' => $sortOrder,
- 'price' => 10,
- 'is_shareable' => 0,
- 'number_of_downloads' => 0,
- 'sample_type' => 'url',
- 'sample_url' => 'http://example.com/',
- 'link_type' => 'url',
- 'link_url' => 'http://example.com/',
- ],
- ];
- $this->_webApiCall($this->createServiceInfo, $requestData);
- }
- /**
- * @return array
- */
- public function getInvalidSortOrder()
- {
- return [
- [-1],
- ];
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable.php
- * @expectedException \Exception
- * @expectedExceptionMessage Number of downloads must be a positive integer.
- * @dataProvider getInvalidNumberOfDownloads
- */
- public function testCreateThrowsExceptionIfNumberOfDownloadsIsInvalid($numberOfDownloads)
- {
- $requestData = [
- 'isGlobalScopeContent' => false,
- 'sku' => 'downloadable-product',
- 'link' => [
- 'title' => 'Link Title',
- 'sort_order' => 0,
- 'price' => 10,
- 'is_shareable' => 0,
- 'number_of_downloads' => $numberOfDownloads,
- 'sample_type' => 'url',
- 'sample_url' => 'http://example.com/',
- 'link_type' => 'url',
- 'link_url' => 'http://example.com/',
- ],
- ];
- $this->_webApiCall($this->createServiceInfo, $requestData);
- }
- /**
- * @return array
- */
- public function getInvalidNumberOfDownloads()
- {
- return [
- [-1],
- ];
- }
- /**
- * @magentoApiDataFixture Magento/Catalog/_files/product_simple.php
- * @expectedException \Exception
- * @expectedExceptionMessage The product needs to be the downloadable type. Verify the product and try again.
- */
- public function testCreateThrowsExceptionIfTargetProductTypeIsNotDownloadable()
- {
- $this->createServiceInfo['rest']['resourcePath'] = '/V1/products/simple/downloadable-links';
- $requestData = [
- 'isGlobalScopeContent' => false,
- 'sku' => 'simple',
- 'link' => [
- 'title' => 'Link Title',
- 'sort_order' => 50,
- 'price' => 200,
- 'is_shareable' => 0,
- 'number_of_downloads' => 10,
- 'sample_type' => 'url',
- 'sample_url' => 'http://example.com/',
- 'link_type' => 'url',
- 'link_url' => 'http://example.com/',
- ],
- ];
- $this->_webApiCall($this->createServiceInfo, $requestData);
- }
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage The product that was requested doesn't exist. Verify the product and try again.
- */
- public function testCreateThrowsExceptionIfTargetProductDoesNotExist()
- {
- $this->createServiceInfo['rest']['resourcePath'] = '/V1/products/wrong-sku/downloadable-links';
- $requestData = [
- 'isGlobalScopeContent' => false,
- 'sku' => 'wrong-sku',
- 'link' => [
- 'title' => 'Link Title',
- 'sort_order' => 15,
- 'price' => 200,
- 'is_shareable' => 1,
- 'number_of_downloads' => 100,
- 'sample_type' => 'url',
- 'sample_url' => 'http://example.com/',
- 'link_type' => 'url',
- 'link_url' => 'http://example.com/',
- ],
- ];
- $this->_webApiCall($this->createServiceInfo, $requestData);
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable.php
- */
- public function testUpdate()
- {
- $linkId = $this->getTargetLink($this->getTargetProduct())->getId();
- $this->updateServiceInfo['rest']['resourcePath']
- = "/V1/products/downloadable-product/downloadable-links/{$linkId}";
- $requestData = [
- 'isGlobalScopeContent' => false,
- 'sku' => 'downloadable-product',
- 'link' => [
- 'id' => $linkId,
- 'title' => 'Updated Title',
- 'sort_order' => 2,
- 'price' => 100.10,
- 'is_shareable' => 0,
- 'number_of_downloads' => 50,
- 'link_type' => 'url',
- 'sample_type' => 'url',
- ],
- ];
- $this->assertEquals($linkId, $this->_webApiCall($this->updateServiceInfo, $requestData));
- $link = $this->getTargetLink($this->getTargetProduct(), $linkId);
- $this->assertNotNull($link);
- $this->assertEquals($requestData['link']['title'], $link->getTitle());
- $this->assertEquals($requestData['link']['sort_order'], $link->getSortOrder());
- $this->assertEquals($requestData['link']['price'], $link->getPrice());
- $this->assertEquals($requestData['link']['is_shareable'], (int)$link->getIsShareable());
- $this->assertEquals($requestData['link']['number_of_downloads'], $link->getNumberOfDownloads());
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable.php
- */
- public function testUpdateSavesDataInGlobalScopeAndDoesNotAffectValuesStoredInStoreViewScope()
- {
- $originalLink = $this->getTargetLink($this->getTargetProduct());
- $linkId = $originalLink->getId();
- $this->updateServiceInfo['rest']['resourcePath']
- = "/V1/products/downloadable-product/downloadable-links/{$linkId}";
- $requestData = [
- 'isGlobalScopeContent' => true,
- 'sku' => 'downloadable-product',
- 'link' => [
- 'id' => $linkId,
- 'title' => 'Updated Title',
- 'sort_order' => 2,
- 'price' => 100.10,
- 'is_shareable' => 0,
- 'number_of_downloads' => 50,
- 'link_type' => 'url',
- 'sample_type' => 'url',
- ],
- ];
- $this->assertEquals($linkId, $this->_webApiCall($this->updateServiceInfo, $requestData));
- $link = $this->getTargetLink($this->getTargetProduct(), $linkId);
- $globalScopeLink = $this->getTargetLink($this->getTargetProduct(true), $linkId);
- $this->assertNotNull($link);
- // Title and price were set on store view level in fixture so they must be the same
- $this->assertEquals($originalLink->getTitle(), $link->getTitle());
- $this->assertEquals($originalLink->getPrice(), $link->getPrice());
- $this->assertEquals($requestData['link']['title'], $globalScopeLink->getTitle());
- $this->assertEquals($requestData['link']['price'], $globalScopeLink->getPrice());
- $this->assertEquals($requestData['link']['sort_order'], $link->getSortOrder());
- $this->assertEquals($requestData['link']['is_shareable'], (int)$link->getIsShareable());
- $this->assertEquals($requestData['link']['number_of_downloads'], $link->getNumberOfDownloads());
- }
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage The product that was requested doesn't exist. Verify the product and try again.
- */
- public function testUpdateThrowsExceptionIfTargetProductDoesNotExist()
- {
- $this->updateServiceInfo['rest']['resourcePath'] = '/V1/products/wrong-sku/downloadable-links/1';
- $requestData = [
- 'isGlobalScopeContent' => true,
- 'sku' => 'wrong-sku',
- 'link' => [
- 'id' => 1,
- 'title' => 'Updated Title',
- 'sort_order' => 2,
- 'price' => 100.10,
- 'is_shareable' => 0,
- 'number_of_downloads' => 50,
- 'link_type' => 'url',
- 'sample_type' => 'url',
- ],
- ];
- $this->_webApiCall($this->updateServiceInfo, $requestData);
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable.php
- * @expectedException \Exception
- * @expectedExceptionMessage No downloadable link with the provided ID was found. Verify the ID and try again.
- */
- public function testUpdateThrowsExceptionIfThereIsNoDownloadableLinkWithGivenId()
- {
- $linkId = 9999;
- $this->updateServiceInfo['rest']['resourcePath']
- = "/V1/products/downloadable-product/downloadable-links/{$linkId}";
- $requestData = [
- 'isGlobalScopeContent' => true,
- 'sku' => 'downloadable-product',
- 'link' => [
- 'id' => $linkId,
- 'title' => 'Title',
- 'sort_order' => 2,
- 'price' => 100.10,
- 'is_shareable' => 0,
- 'number_of_downloads' => 50,
- 'link_type' => 'url',
- 'sample_type' => 'url',
- ],
- ];
- $this->_webApiCall($this->updateServiceInfo, $requestData);
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable.php
- * @expectedException \Exception
- * @expectedExceptionMessage Link price must have numeric positive value.
- * @dataProvider getInvalidLinkPrice
- */
- public function testUpdateThrowsExceptionIfLinkPriceIsInvalid($linkPrice)
- {
- $linkId = $this->getTargetLink($this->getTargetProduct())->getId();
- $this->updateServiceInfo['rest']['resourcePath']
- = "/V1/products/downloadable-product/downloadable-links/{$linkId}";
- $requestData = [
- 'isGlobalScopeContent' => false,
- 'sku' => 'downloadable-product',
- 'link' => [
- 'id' => $linkId,
- 'title' => 'Updated Link Title',
- 'sort_order' => 2,
- 'price' => $linkPrice,
- 'is_shareable' => 0,
- 'number_of_downloads' => 50,
- 'link_type' => 'url',
- 'sample_type' => 'url',
- ],
- ];
- $this->_webApiCall($this->updateServiceInfo, $requestData);
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable.php
- * @expectedException \Exception
- * @expectedExceptionMessage Sort order must be a positive integer.
- * @dataProvider getInvalidSortOrder
- */
- public function testUpdateThrowsExceptionIfSortOrderIsInvalid($sortOrder)
- {
- $linkId = $this->getTargetLink($this->getTargetProduct())->getId();
- $this->updateServiceInfo['rest']['resourcePath']
- = "/V1/products/downloadable-product/downloadable-links/{$linkId}";
- $requestData = [
- 'isGlobalScopeContent' => false,
- 'sku' => 'downloadable-product',
- 'link' => [
- 'id' => $linkId,
- 'title' => 'Updated Link Title',
- 'sort_order' => $sortOrder,
- 'price' => 100.50,
- 'is_shareable' => 0,
- 'number_of_downloads' => 50,
- 'link_type' => 'url',
- 'sample_type' => 'url',
- ],
- ];
- $this->_webApiCall($this->updateServiceInfo, $requestData);
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable.php
- * @expectedException \Exception
- * @expectedExceptionMessage Number of downloads must be a positive integer.
- * @dataProvider getInvalidNumberOfDownloads
- */
- public function testUpdateThrowsExceptionIfNumberOfDownloadsIsInvalid($numberOfDownloads)
- {
- $linkId = $this->getTargetLink($this->getTargetProduct())->getId();
- $this->updateServiceInfo['rest']['resourcePath']
- = "/V1/products/downloadable-product/downloadable-links/{$linkId}";
- $requestData = [
- 'isGlobalScopeContent' => false,
- 'sku' => 'downloadable-product',
- 'link' => [
- 'id' => $linkId,
- 'title' => 'Updated Link Title',
- 'sort_order' => 200,
- 'price' => 100.50,
- 'is_shareable' => 0,
- 'number_of_downloads' => $numberOfDownloads,
- 'link_type' => 'url',
- 'sample_type' => 'url',
- ],
- ];
- $this->_webApiCall($this->updateServiceInfo, $requestData);
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable.php
- */
- public function testDelete()
- {
- $linkId = $this->getTargetLink($this->getTargetProduct())->getId();
- $this->deleteServiceInfo['rest']['resourcePath'] = "/V1/products/downloadable-links/{$linkId}";
- $requestData = [
- 'id' => $linkId,
- ];
- $this->assertTrue($this->_webApiCall($this->deleteServiceInfo, $requestData));
- $link = $this->getTargetLink($this->getTargetProduct(), $linkId);
- $this->assertNull($link);
- }
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage No downloadable link with the provided ID was found. Verify the ID and try again.
- */
- public function testDeleteThrowsExceptionIfThereIsNoDownloadableLinkWithGivenId()
- {
- $linkId = 9999;
- $this->deleteServiceInfo['rest']['resourcePath'] = "/V1/products/downloadable-links/{$linkId}";
- $requestData = [
- 'id' => $linkId,
- ];
- $this->_webApiCall($this->deleteServiceInfo, $requestData);
- }
- /**
- * @dataProvider getListForAbsentProductProvider()
- */
- public function testGetListForAbsentProduct($urlTail, $method)
- {
- $sku = 'absent-product' . time();
- $serviceInfo = [
- 'rest' => [
- 'resourcePath' => '/V1/products/' . $sku . $urlTail,
- 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_GET,
- ],
- 'soap' => [
- 'service' => 'downloadableLinkRepositoryV1',
- 'serviceVersion' => 'V1',
- 'operation' => 'downloadableLinkRepositoryV1' . $method,
- ],
- ];
- $requestData = ['sku' => $sku];
- $expectedMessage = "The product that was requested doesn't exist. Verify the product and try again.";
- try {
- $this->_webApiCall($serviceInfo, $requestData);
- } catch (\SoapFault $e) {
- $this->assertEquals($expectedMessage, $e->getMessage());
- } catch (\Exception $e) {
- $this->assertContains($expectedMessage, $e->getMessage());
- }
- }
- /**
- * @magentoApiDataFixture Magento/Catalog/_files/product_simple.php
- * @dataProvider getListForAbsentProductProvider
- */
- public function testGetListForSimpleProduct($urlTail, $method)
- {
- $sku = 'simple';
- $serviceInfo = [
- 'rest' => [
- 'resourcePath' => '/V1/products/' . $sku . $urlTail,
- 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_GET,
- ],
- 'soap' => [
- 'service' => 'downloadableLinkRepositoryV1',
- 'serviceVersion' => 'V1',
- 'operation' => 'downloadableLinkRepositoryV1' . $method,
- ],
- ];
- $requestData = ['sku' => $sku];
- $list = $this->_webApiCall($serviceInfo, $requestData);
- $this->assertEmpty($list);
- }
- /**
- * @magentoApiDataFixture Magento/Downloadable/_files/product_downloadable_with_files.php
- * @dataProvider getListForAbsentProductProvider
- */
- public function testGetList($urlTail, $method, $expectations)
- {
- $sku = 'downloadable-product';
- $serviceInfo = [
- 'rest' => [
- 'resourcePath' => '/V1/products/' . $sku . $urlTail,
- 'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_GET,
- ],
- 'soap' => [
- 'service' => 'downloadableLinkRepositoryV1',
- 'serviceVersion' => 'V1',
- 'operation' => 'downloadableLinkRepositoryV1' . $method,
- ],
- ];
- $requestData = ['sku' => $sku];
- $list = $this->_webApiCall($serviceInfo, $requestData);
- $this->assertEquals(1, count($list));
- $link = reset($list);
- foreach ($expectations['fields'] as $index => $value) {
- $this->assertEquals($value, $link[$index]);
- }
- $this->assertContains('jellyfish_1_3.jpg', $link['sample_file']);
- }
- public function getListForAbsentProductProvider()
- {
- $linkExpectation = [
- 'fields' => [
- 'is_shareable' => 2,
- 'price' => 15,
- 'number_of_downloads' => 15,
- 'sample_type' => 'file',
- 'link_file' => '/j/e/jellyfish_2_4.jpg',
- 'link_type' => 'file'
- ]
- ];
- return [
- 'links' => [
- '/downloadable-links',
- 'GetList',
- $linkExpectation,
- ],
- ];
- }
- }
|