Skip to content

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

Merged
merged 2 commits into from
Sep 4, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 110 additions & 0 deletions dev/tests/api-functional/testsuite/Magento/Search/Api/SearchTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
<?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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You need in this case the @magentoApiDataFixture with product_simple ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The 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

Copy link
Member

Choose a reason for hiding this comment

The 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'
]
];
}
}