-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
219 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,5 +53,8 @@ | |
"branch-alias": { | ||
"dev-main": "4.6.x-dev" | ||
} | ||
}, | ||
"config": { | ||
"allow-plugins": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,216 @@ | ||
<?php | ||
|
||
/** | ||
* @copyright Copyright (C) Ibexa AS. All rights reserved. | ||
* @license For full copyright and license information view LICENSE file distributed with this source code. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Ibexa\Tests\Search\QueryType; | ||
|
||
use Ibexa\Bundle\Search\Form\Data\SearchData; | ||
use Ibexa\Contracts\Core\Repository\SearchService; | ||
use Ibexa\Contracts\Core\Repository\Values\Content\Query; | ||
use Ibexa\Contracts\Core\Repository\Values\Content\Query\Criterion; | ||
use Ibexa\Contracts\Core\Repository\Values\Content\Query\SortClause; | ||
use Ibexa\Contracts\Core\Repository\Values\Content\Section; | ||
use Ibexa\Contracts\Core\Repository\Values\User\User; | ||
use Ibexa\Contracts\Search\SortingDefinition\SortingDefinitionRegistryInterface; | ||
use Ibexa\Core\Repository\Values\ContentType\ContentType; | ||
use Ibexa\Search\QueryType\SearchQueryType; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
final class SearchQueryTypeTest extends TestCase | ||
{ | ||
private const EXPECTED_QUERY_STRING = 'Ibexa'; | ||
private const EXPECTED_SECTION_ID = 2; | ||
private const EXPECTED_CONTENT_TYPE_IDS = [3, 5, 7]; | ||
private const EXPECTED_USER_ID = 11; | ||
private const EXPECTED_SUBTREE = '/13/17/19/'; | ||
private const EXPECTED_DATE_RANGE = [1431993600, 1587340800]; | ||
|
||
/** @var \PHPUnit\Framework\MockObject\MockObject&\Ibexa\Contracts\Core\Repository\SearchService */ | ||
private SearchService $searchService; | ||
|
||
/** @var \Ibexa\Contracts\Search\SortingDefinition\SortingDefinitionRegistryInterface&\PHPUnit\Framework\MockObject\MockObject */ | ||
private SortingDefinitionRegistryInterface $sortingDefinitionRegistry; | ||
|
||
private SearchQueryType $queryType; | ||
|
||
protected function setUp(): void | ||
{ | ||
$this->searchService = $this->createMock(SearchService::class); | ||
$this->sortingDefinitionRegistry = $this->createMock(SortingDefinitionRegistryInterface::class); | ||
$this->queryType = new SearchQueryType( | ||
$this->searchService, | ||
$this->sortingDefinitionRegistry | ||
); | ||
} | ||
|
||
/** | ||
* @dataProvider dataProviderForGetQuery | ||
* | ||
* @param array{searchData: \Ibexa\Bundle\Search\Form\Data\SearchData} $parameters | ||
*/ | ||
public function testGetQuery( | ||
array $parameters, | ||
Query $expectedQuery, | ||
bool $isScoringSupported | ||
): void { | ||
$this->searchService | ||
->method('supports') | ||
->with(SearchService::CAPABILITY_AGGREGATIONS) | ||
->willReturn($isScoringSupported); | ||
|
||
$this->assertEquals($expectedQuery, $this->queryType->getQuery($parameters)); | ||
} | ||
|
||
/** | ||
* @return iterable<array{ | ||
* array{searchData?: \Ibexa\Bundle\Search\Form\Data\SearchData}, | ||
* \Ibexa\Contracts\Core\Repository\Values\Content\Query, | ||
* bool, | ||
* }> | ||
*/ | ||
public function dataProviderForGetQuery(): iterable | ||
{ | ||
$aggregations = $this->createExpectedAggregations(); | ||
|
||
return [ | ||
[ | ||
[], | ||
new Query([ | ||
'sortClauses' => [ | ||
new SortClause\ContentId(), | ||
], | ||
'aggregations' => $aggregations, | ||
]), | ||
true, | ||
], | ||
[ | ||
[ | ||
'search_data' => $this->createSearchDataWithAllCriteria(), | ||
], | ||
$this->createExpectedQueryForAllCriteria( | ||
[new SortClause\ContentId()], | ||
$aggregations | ||
), | ||
true, | ||
], | ||
[ | ||
[], | ||
new Query([ | ||
'sortClauses' => [ | ||
new SortClause\ContentId(), | ||
], | ||
]), | ||
false, | ||
], | ||
[ | ||
[ | ||
'search_data' => $this->createSearchDataWithAllCriteria(), | ||
], | ||
$this->createExpectedQueryForAllCriteria(), | ||
false, | ||
], | ||
]; | ||
} | ||
|
||
/** | ||
* @param array<int> $ids | ||
* | ||
* @return array<\Ibexa\Core\Repository\Values\ContentType\ContentType> | ||
*/ | ||
private function createContentTypesList(array $ids): array | ||
{ | ||
return array_map(static function (int $id): ContentType { | ||
return new ContentType(['id' => $id]); | ||
}, $ids); | ||
} | ||
|
||
private function createSearchDataWithAllCriteria(): SearchData | ||
{ | ||
$searchData = new SearchData(); | ||
$searchData->setQuery(self::EXPECTED_QUERY_STRING); | ||
$searchData->setSection(new Section(['id' => self::EXPECTED_SECTION_ID])); | ||
$searchData->setContentTypes($this->createContentTypesList(self::EXPECTED_CONTENT_TYPE_IDS)); | ||
$searchData->setCreated([ | ||
'start_date' => self::EXPECTED_DATE_RANGE[0], | ||
'end_date' => self::EXPECTED_DATE_RANGE[1], | ||
]); | ||
$searchData->setLastModified([ | ||
'start_date' => self::EXPECTED_DATE_RANGE[0], | ||
'end_date' => self::EXPECTED_DATE_RANGE[1], | ||
]); | ||
$searchData->setCreator($this->createUser(self::EXPECTED_USER_ID)); | ||
$searchData->setSubtree(self::EXPECTED_SUBTREE); | ||
|
||
return $searchData; | ||
} | ||
|
||
private function createUser(int $id): User | ||
{ | ||
$user = $this->createMock(User::class); | ||
$user->method('__get')->with('id')->willReturn($id); | ||
|
||
return $user; | ||
} | ||
|
||
/** | ||
* @param array<\Ibexa\Contracts\Core\Repository\Values\Content\Query\SortClause>|null $expectedSortClauses | ||
* @param array<\Ibexa\Contracts\Core\Repository\Values\Content\Query\Aggregation> $expectedAggregations | ||
*/ | ||
private function createExpectedQueryForAllCriteria( | ||
?array $expectedSortClauses = null, | ||
array $expectedAggregations = [] | ||
): Query { | ||
if ($expectedSortClauses === null) { | ||
$expectedSortClauses = [ | ||
new SortClause\ContentId(), | ||
]; | ||
} | ||
|
||
return new Query([ | ||
'query' => new Criterion\FullText(self::EXPECTED_QUERY_STRING), | ||
'filter' => new Criterion\LogicalAnd([ | ||
new Criterion\SectionId(self::EXPECTED_SECTION_ID), | ||
new Criterion\ContentTypeId(self::EXPECTED_CONTENT_TYPE_IDS), | ||
new Criterion\DateMetadata( | ||
Criterion\DateMetadata::MODIFIED, | ||
Criterion\Operator::BETWEEN, | ||
self::EXPECTED_DATE_RANGE | ||
), | ||
new Criterion\DateMetadata( | ||
Criterion\DateMetadata::CREATED, | ||
Criterion\Operator::BETWEEN, | ||
self::EXPECTED_DATE_RANGE | ||
), | ||
new Criterion\UserMetadata( | ||
Criterion\UserMetadata::OWNER, | ||
Criterion\Operator::EQ, | ||
self::EXPECTED_USER_ID | ||
), | ||
new Criterion\Subtree(self::EXPECTED_SUBTREE), | ||
]), | ||
'sortClauses' => $expectedSortClauses, | ||
'aggregations' => $expectedAggregations, | ||
]); | ||
} | ||
|
||
/** | ||
* @return array<\Ibexa\Contracts\Core\Repository\Values\Content\Query\Aggregation> | ||
*/ | ||
private function createExpectedAggregations(): array | ||
{ | ||
$contentTypeTermAggregation = new Query\Aggregation\ContentTypeTermAggregation('content_types'); | ||
$contentTypeTermAggregation->setLimit(SearchService::CAPABILITY_AGGREGATIONS); | ||
|
||
$sectionTermAggregation = new Query\Aggregation\SectionTermAggregation('sections'); | ||
$sectionTermAggregation->setLimit(SearchService::CAPABILITY_AGGREGATIONS); | ||
|
||
return [ | ||
$contentTypeTermAggregation, | ||
$sectionTermAggregation, | ||
]; | ||
} | ||
} |