Skip to content
Snippets Groups Projects
Unverified Commit f6a1d030 authored by Simonas Šerlinskas's avatar Simonas Šerlinskas
Browse files

add significant text aggregation

parent 1a7701f5
No related branches found
No related tags found
No related merge requests found
<?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\Aggregation\Bucketing;
/**
* Class representing TermsAggregation.
*
* @link https://goo.gl/xI7zoa
*/
class SignificantTextAggregation extends TermsAggregation
{
/**
* {@inheritdoc}
*/
public function getType()
{
return 'significant_text';
}
}
<?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\SignificantTextAggregation;
/**
* Unit test for children aggregation.
*/
class SignificantTextAggregationTest extends \PHPUnit\Framework\TestCase
{
/**
* Tests getType method.
*/
public function testSignificantTextAggregationGetType()
{
$aggregation = new SignificantTextAggregation('foo');
$result = $aggregation->getType();
$this->assertEquals('significant_text', $result);
}
/**
* Tests getArray method.
*/
public function testSignificantTermsAggregationGetArray()
{
$mock = $this->getMockBuilder('ONGR\ElasticsearchDSL\Aggregation\AbstractAggregation')
->disableOriginalConstructor()
->getMockForAbstractClass();
$aggregation = new SignificantTextAggregation('foo', 'title');
$aggregation->addAggregation($mock);
$result = $aggregation->getArray();
$expected = ['field' => 'title'];
$this->assertEquals($expected, $result);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment