123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?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
- */
- 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'
- ]
- ];
- }
- }
|