قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 06:57:53 +00:00

* [Coding Style] Enable rule PSR1.Methods.CamelCapsMethodName.NotCamelCaps * [Coding Style] Use camel case for method names in API plugin tests (#22145) * [Coding Style] Use camel case for method names in Core* plugin tests (#22147) * [Coding Style] Use camel case for method names in core Unit tests (#22149) * [Coding Style] Use camel case for method names in Actions and BulkTracking plugin tests (#22146) * [Coding Style] Use camel case for method names in CustomDimensions and CustomJSTracker plugin tests (#22148) * [Coding Style] Use camel case for method names in core Integration tests (#22151) * [Coding Style] Use camel case for method names in more core plugin tests (#22153) * [Coding Style] Use camel case for method names in more core plugin tests (#22157) * [Coding Style] Use camel case for method names in more core plugin tests * Update plugins/Monolog/tests/Unit/Processor/ExceptionToTextProcessorTest.php Co-authored-by: Michal Kleiner <michal@innocraft.com> --------- Co-authored-by: Michal Kleiner <michal@innocraft.com> * [Coding Style] Use camel case for method names in more core plugin tests (#22159) * [Coding Style] Use camel case for method names in remaining tests (#22160) * [Coding Style] Use camel case for method names in remaining tests * rename expected test files --------- Co-authored-by: Michal Kleiner <michal@innocraft.com>
62 خطوط
1.9 KiB
PHP
62 خطوط
1.9 KiB
PHP
<?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);
|
|
}
|
|
}
|