-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from niels-nijens/fix-filters-aggregation
Fix returned array of FiltersAggregation
- Loading branch information
Showing
3 changed files
with
151 additions
and
20 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
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
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,141 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the ONGR package. | ||
* | ||
* (c) NFQ Technologies UAB <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace ONGR\ElasticsearchDSL\Tests\Aggregation\Integration; | ||
|
||
use ONGR\ElasticsearchDSL\Aggregation\FiltersAggregation; | ||
use ONGR\ElasticsearchDSL\Aggregation\HistogramAggregation; | ||
use ONGR\ElasticsearchDSL\Query\TermQuery; | ||
use ONGR\ElasticsearchDSL\Search; | ||
use PHPUnit_Framework_TestCase; | ||
|
||
/** | ||
* Tests integration of examples from the documentation. | ||
*/ | ||
class SearchTest extends PHPUnit_Framework_TestCase | ||
{ | ||
/** | ||
* Tests integration of the FiltersAggregation named example from the documentation. | ||
* | ||
* @link https://github.com/ongr-io/ElasticsearchDSL/blob/master/docs/Aggregation/Filters.md#named-example | ||
*/ | ||
public function testFiltersAggregationNamedExample() | ||
{ | ||
$errorTermFilter = new TermQuery('body', 'error'); | ||
$warningTermFilter = new TermQuery('body', 'warning'); | ||
|
||
$histogramAggregation = new HistogramAggregation('monthly', 'timestamp'); | ||
$histogramAggregation->setInterval('1M'); | ||
|
||
$filterAggregation = new FiltersAggregation( | ||
'grades_stats', | ||
[ | ||
'error' => $errorTermFilter, | ||
'warning' => $warningTermFilter, | ||
] | ||
); | ||
$filterAggregation->addAggregation($histogramAggregation); | ||
|
||
$search = new Search(); | ||
$search->addAggregation($filterAggregation); | ||
|
||
$this->assertSame( | ||
[ | ||
'aggregations' => [ | ||
'grades_stats' => [ | ||
'filters' => [ | ||
'filters' => [ | ||
'error' => [ | ||
'term' => [ | ||
'body' => 'error', | ||
], | ||
], | ||
'warning' => [ | ||
'term' => [ | ||
'body' => 'warning', | ||
], | ||
], | ||
], | ||
], | ||
'aggregations' => [ | ||
'monthly' => [ | ||
'histogram' => [ | ||
'field' => 'timestamp', | ||
'interval' => '1M', | ||
], | ||
], | ||
], | ||
], | ||
], | ||
], | ||
$search->toArray() | ||
); | ||
} | ||
|
||
/** | ||
* Tests integration of the FiltersAggregation anonymous example from the documentation. | ||
* | ||
* @link https://github.com/ongr-io/ElasticsearchDSL/blob/master/docs/Aggregation/Filters.md#anonymous-example | ||
*/ | ||
public function testFiltersAggregationAnonymousExample() | ||
{ | ||
$errorTermFilter = new TermQuery('body', 'error'); | ||
$warningTermFilter = new TermQuery('body', 'warning'); | ||
|
||
$histogramAggregation = new HistogramAggregation('monthly', 'timestamp'); | ||
$histogramAggregation->setInterval('1M'); | ||
|
||
$filterAggregation = new FiltersAggregation( | ||
'grades_stats', | ||
[ | ||
'error' => $errorTermFilter, | ||
'warning' => $warningTermFilter, | ||
], | ||
true | ||
); | ||
$filterAggregation->addAggregation($histogramAggregation); | ||
|
||
$search = new Search(); | ||
$search->addAggregation($filterAggregation); | ||
|
||
$this->assertSame( | ||
[ | ||
'aggregations' => [ | ||
'grades_stats' => [ | ||
'filters' => [ | ||
'filters' => [ | ||
[ | ||
'term' => [ | ||
'body' => 'error', | ||
], | ||
], | ||
[ | ||
'term' => [ | ||
'body' => 'warning', | ||
], | ||
], | ||
], | ||
], | ||
'aggregations' => [ | ||
'monthly' => [ | ||
'histogram' => [ | ||
'field' => 'timestamp', | ||
'interval' => '1M', | ||
], | ||
], | ||
], | ||
], | ||
], | ||
], | ||
$search->toArray() | ||
); | ||
} | ||
} |