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
|
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://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 testShouldDoProportionalComparisionIfCurrentPeriodIncomplete()
{
$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 testShouldNotDoProportionalComparisionIfCurrentPeriodComplete()
{
$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);
}
}
|