Welcome to mirror list, hosted at ThFree Co, Russian Federation.

EvolutionMetricTest.php « Unit « tests « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7929eba0e4b5229c79f5862db1d13772763b5fbe (plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
<?php
/**
 * Piwik - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 *
 */

namespace Piwik\Plugins\CoreHome\tests\Unit;

use PHPUnit\Framework\TestCase;
use Piwik\DataTable;
use Piwik\DataTable\Row;
use Piwik\Date;
use Piwik\Plugins\CoreHome\Columns\Metrics\EvolutionMetric;

/**
 * @group CoreHome
 * @group CoreHomeTest
 * @group EvolutionMetric
 */
class EvolutionMetricTest extends TestCase
{
    public function test_shouldDoProportionalComparision_ifCurrentPeriodIncomplete()
    {
        $currentData = new DataTable();
        $cPeriod = new \Piwik\Period\Week(Date::factory('2021-10-10'));
        $currentData->setMetadata('period', $cPeriod);

        // If the archived date meta data value exists on the row then it will be used
        // as the current date for calculation purposes, we can use this to consistently test the
        // ratio calculation by supplying a fixed set of dates that should result in a 0.5 ratio

        $row = new Row();
        $row->setMetadata(DataTable::ARCHIVED_DATE_METADATA_NAME, '2021-10-07 00:00:00');

        $pastData = new DataTable();
        $sPeriod = new \Piwik\Period\Week(Date::factory('2021-10-03'));
        $pastData->setMetadata('period', $sPeriod);

        $ratio = EvolutionMetric::getRatio($currentData, $pastData, $row);

        $this->assertEquals(0.429, $ratio);
    }

    public function test_shouldNotDoProportionalComparision_ifCurrentPeriodComplete()
    {
        $currentData = new DataTable();
        $cPeriod = new \Piwik\Period\Week(Date::factory('2021-10-10'));
        $currentData->setMetadata('period', $cPeriod);

        $pastData = new DataTable();
        $sPeriod = new \Piwik\Period\Week(Date::factory('2021-10-03'));
        $pastData->setMetadata('period', $sPeriod);

        $ratio = EvolutionMetric::getRatio($currentData, $pastData, new Row());

        $this->assertEquals(1, $ratio);
    }

}