- 
                Notifications
    
You must be signed in to change notification settings  - Fork 9.4k
 
API-functional test for Search #17840
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,111 @@ | ||
| <?php | ||
| /** | ||
| * | ||
| * Copyright © Magento, Inc. All rights reserved. | ||
| * See COPYING.txt for license details. | ||
| */ | ||
| declare(strict_types=1); | ||
| 
     | 
||
| namespace Magento\Search\Api; | ||
| 
     | 
||
| use Magento\Catalog\Api\Data\ProductInterface; | ||
| use Magento\Catalog\Api\ProductRepositoryInterface; | ||
| use Magento\Framework\Webapi\Rest\Request; | ||
| use Magento\TestFramework\Helper\Bootstrap; | ||
| use Magento\TestFramework\TestCase\WebapiAbstract; | ||
| 
     | 
||
| class SearchTest extends WebapiAbstract | ||
| { | ||
| const SERVICE_VERSION = 'V1'; | ||
| const SERVICE_NAME = 'searchV1'; | ||
| const RESOURCE_PATH = '/V1/search/'; | ||
| 
     | 
||
| /** | ||
| * @var ProductInterface | ||
| */ | ||
| private $product; | ||
| 
     | 
||
| protected function setUp() | ||
| { | ||
| $productSku = 'simple'; | ||
| 
     | 
||
| $objectManager = Bootstrap::getObjectManager(); | ||
| $productRepository = $objectManager->create(ProductRepositoryInterface::class); | ||
| $this->product = $productRepository->get($productSku); | ||
| } | ||
| 
     | 
||
| /** | ||
| * @magentoApiDataFixture Magento/Catalog/_files/product_simple.php | ||
| */ | ||
| public function testExistingProductSearch() | ||
| { | ||
| $productName = $this->product->getName(); | ||
| 
     | 
||
| $searchCriteria = $this->buildSearchCriteria($productName); | ||
| $serviceInfo = $this->buildServiceInfo($searchCriteria); | ||
| 
     | 
||
| $response = $this->_webApiCall($serviceInfo, $searchCriteria); | ||
| 
     | 
||
| self::assertArrayHasKey('search_criteria', $response); | ||
| self::assertArrayHasKey('items', $response); | ||
| self::assertGreaterThan(0, count($response['items'])); | ||
| self::assertGreaterThan(0, $response['items'][0]['id']); | ||
| } | ||
| 
     | 
||
| /** | ||
| * @magentoApiDataFixture Magento/Catalog/_files/product_simple.php | ||
| 
         There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You need in this case the @magentoApiDataFixture with  There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good point :) We need it since in case with no products the response from the request is completely different. The idea is to test the search request with some products in the database There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's clear now for me 😄  | 
||
| */ | ||
| public function testNonExistentProductSearch() | ||
| { | ||
| $searchCriteria = $this->buildSearchCriteria('nonExistentProduct'); | ||
| $serviceInfo = $this->buildServiceInfo($searchCriteria); | ||
| 
     | 
||
| $response = $this->_webApiCall($serviceInfo, $searchCriteria); | ||
| 
     | 
||
| self::assertArrayHasKey('search_criteria', $response); | ||
| self::assertArrayHasKey('items', $response); | ||
| self::assertEquals(0, count($response['items'])); | ||
| } | ||
| 
     | 
||
| /** | ||
| * @param string $productName | ||
| * @return array | ||
| */ | ||
| private function buildSearchCriteria(string $productName): array | ||
| { | ||
| return [ | ||
| 'searchCriteria' => [ | ||
| 'request_name' => 'quick_search_container', | ||
| 'filter_groups' => [ | ||
| [ | ||
| 'filters' => [ | ||
| [ | ||
| 'field' => 'search_term', | ||
| 'value' => $productName, | ||
| ] | ||
| ] | ||
| ] | ||
| ] | ||
| ] | ||
| ]; | ||
| } | ||
| 
     | 
||
| /** | ||
| * @param array $searchCriteria | ||
| * @return array | ||
| */ | ||
| private function buildServiceInfo(array $searchCriteria): array | ||
| { | ||
| return [ | ||
| 'rest' => [ | ||
| 'resourcePath' => self::RESOURCE_PATH . '?' . http_build_query($searchCriteria), | ||
| 'httpMethod' => Request::HTTP_METHOD_GET | ||
| ], | ||
| 'soap' => [ | ||
| 'service' => self::SERVICE_NAME, | ||
| 'serviceVersion' => self::SERVICE_VERSION, | ||
| 'operation' => self::SERVICE_NAME . 'Search' | ||
| ] | ||
| ]; | ||
| } | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.