Completed
Push — master ( 962ce5...5ad7ea )
by Ema
02:34
created

ExtendedStatsBucketTest::_getIndexForTest()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 14

Duplication

Lines 14
Ratio 100 %

Importance

Changes 0
Metric Value
dl 14
loc 14
rs 9.7998
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace Elastica\Test\Aggregation;
4
5
use Elastica\Aggregation\ExtendedStatsBucket;
6
use Elastica\Aggregation\Histogram;
7
use Elastica\Aggregation\Max;
8
use Elastica\Document;
9
use Elastica\Index;
10
use Elastica\Query;
11
12
/**
13
 * @internal
14
 */
15
class ExtendedStatsBucketTest extends BaseAggregationTest
16
{
17
    /**
18
     * @group functional
19
     */
20
    public function testExtendedStatBucketAggregation(): void
21
    {
22
        $bucketScriptAggregation = new ExtendedStatsBucket('result', 'age_groups>max_weight');
23
24
        $histogramAggregation = new Histogram('age_groups', 'age', 10);
25
26
        $histogramAggregation->addAggregation((new Max('max_weight'))->setField('weight'));
27
28
        $query = Query::create([])
29
            ->addAggregation($histogramAggregation)
30
            ->addAggregation($bucketScriptAggregation)
31
        ;
32
33
        $results = $this->_getIndexForTest()->search($query)->getAggregation('result');
34
35
        $this->assertEquals(3, $results['count']);
36
        $this->assertEquals(50, $results['min']);
37
        $this->assertEquals(70, $results['max']);
38
        $this->assertEquals(60, $results['avg']);
39
        $this->assertEquals(180, $results['sum']);
40
        $this->assertEquals(11000, $results['sum_of_squares']);
41
        $this->assertEquals(66.66666666666667, $results['variance']);
42
        $this->assertEquals(8.16496580927726, $results['std_deviation']);
43
        $this->assertEquals(['upper' => 76.32993161855453, 'lower' => 43.670068381445475], $results['std_deviation_bounds']);
44
    }
45
46
    /**
47
     * @group unit
48
     */
49 View Code Duplication
    public function testOverrideBucketsPathThroughSetters(): void
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
50
    {
51
        $serialDiffAgg = new ExtendedStatsBucket('bucket_part', 'foobar');
52
53
        $serialDiffAgg
54
            ->setBucketsPath('age_groups>max_weight')
55
            ->setFormat('test_format')
56
            ->setGapPolicy(10)
57
        ;
58
59
        $expected = [
60
            'extended_stats_bucket' => [
61
                'buckets_path' => 'age_groups>max_weight',
62
                'format' => 'test_format',
63
                'gap_policy' => 10,
64
            ],
65
        ];
66
67
        $this->assertEquals($expected, $serialDiffAgg->toArray());
68
    }
69
70 View Code Duplication
    private function _getIndexForTest(): Index
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
71
    {
72
        $index = $this->_createIndex();
73
74
        $index->addDocuments([
75
            Document::create(['weight' => 60, 'height' => 180, 'age' => 25]),
76
            Document::create(['weight' => 70, 'height' => 156, 'age' => 32]),
77
            Document::create(['weight' => 50, 'height' => 155, 'age' => 45]),
78
        ]);
79
80
        $index->refresh();
81
82
        return $index;
83
    }
84
}
85