Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?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\Unit\Bucketing\Aggregation;
use ONGR\ElasticsearchDSL\Aggregation\Bucketing\CompositeAggregation;
use ONGR\ElasticsearchDSL\Aggregation\Bucketing\TermsAggregation;
class CompositeAggregationTest extends \PHPUnit\Framework\TestCase
{
/**
* Test for composite aggregation toArray() method exception.
*/
public function testToArray()
{
$compositeAgg = new CompositeAggregation('composite_test_agg');
$termsAgg = new TermsAggregation('test_term_agg', 'test_field');
$compositeAgg->addSource($termsAgg);
$expectedResult = [
'composite' => [
'sources' => [
[
'test_term_agg' => [ 'terms' => ['field' => 'test_field'] ],
]
]
],
];
$this->assertEquals($expectedResult, $compositeAgg->toArray());
}
/**
* Tests getType method.
*/
public function testGetType()
{
$aggregation = new CompositeAggregation('foo');
$result = $aggregation->getType();
$this->assertEquals('composite', $result);
}
}