Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
Elasticsearch DSL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Public
Elasticsearch DSL
Commits
1cf08b55
Commit
1cf08b55
authored
8 years ago
by
Niels Nijens
Browse files
Options
Downloads
Patches
Plain Diff
Add integration tests for FiltersAggregation
Based on the documentation examples
parent
0a8b4358
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/Integration/SearchTest.php
+141
-0
141 additions, 0 deletions
tests/Integration/SearchTest.php
with
141 additions
and
0 deletions
tests/Integration/SearchTest.php
0 → 100644
+
141
−
0
View file @
1cf08b55
<?php
/*
* This file is part of the ONGR package.
*
* (c) NFQ Technologies UAB <info@nfq.com>
*
* 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
()
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment