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

ExtendedStatsBucketTest   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 70
Duplicated Lines 48.57 %

Coupling/Cohesion

Components 0
Dependencies 8

Importance

Changes 0
Metric Value
wmc 3
lcom 0
cbo 8
dl 34
loc 70
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A testExtendedStatBucketAggregation() 0 25 1
A testOverrideBucketsPathThroughSetters() 20 20 1
A _getIndexForTest() 14 14 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

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