-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix warning Trying to add two strings in DataTable\Row::sumRowArray (#…
…21420) * Fix warning Trying to add two strings in DataTable\Row::sumRowArray * Update expected test file --------- Co-authored-by: Marc Neudert <[email protected]>
- Loading branch information
Showing
3 changed files
with
69 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
plugins/CoreHome/tests/Integration/Columns/Metrics/EvolutionMetricTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<?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\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 test_shouldNotBreakIfSummaryRowGiven() | ||
{ | ||
$this->assertNoFailureOnComputeForLabel(DataTable::ID_SUMMARY_ROW); | ||
} | ||
|
||
public function test_shouldNotBreakIfTotalsRowGiven() | ||
{ | ||
$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); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters