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
|
<?php
/**
* Piwik - 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\Integration\Columns\Metrics;
use Piwik\DataTable;
use Piwik\DataTable\Row;
use Piwik\Date;
use Piwik\Plugins\CoreHome\Columns\Metrics\EvolutionMetric;
use Piwik\Tests\Framework\Fixture;
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;
/**
* @group CoreHome
* @group EvolutionMetricTest
* @group Plugins
* @group Columns
*/
class EvolutionMetricTest extends IntegrationTestCase
{
public function setUp(): void
{
parent::setUp();
Fixture::createWebsite('2022-01-01 00:00:00');
}
public function testShouldNotBreakIfSummaryRowGiven()
{
$this->assertNoFailureOnComputeForLabel(DataTable::ID_SUMMARY_ROW);
}
public function testShouldNotBreakIfTotalsRowGiven()
{
$this->assertNoFailureOnComputeForLabel(DataTable::LABEL_TOTALS_ROW);
}
private function assertNoFailureOnComputeForLabel($label): void
{
$pastData = new DataTable();
$cPeriod = new \Piwik\Period\Week(Date::factory('2021-10-10'));
$pastData->setMetadata('period', $cPeriod);
$evolution = new EvolutionMetric('nb_visits', $pastData);
$row = new Row([Row::COLUMNS => ['nb_visits' => 5, 'label' => $label]]);
$evolution->compute($row);
$currency = $row->getMetadata('currencySymbol');
$this->assertNotEmpty($currency);
}
}
|