قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 15:07:44 +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>
89 خطوط
2.7 KiB
PHP
89 خطوط
2.7 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\Tests\System;
|
|
|
|
use Piwik\Common;
|
|
use Piwik\Db;
|
|
use Piwik\Tests\Fixtures\OneVisitorTwoVisits;
|
|
use Piwik\Tests\Framework\TestCase\SystemTestCase;
|
|
|
|
/**
|
|
* The tracker inserts actions in separate SQL queries which can cause
|
|
* duplicate actions to be in the DB (actions w/ the same name, hash + type, but
|
|
* different idaction). The tracker will delete duplicate actions, but
|
|
* if for some reason the tracker fails before the DELETE occurs, there can be
|
|
* stray duplicate actions. This test is there to ensure reports are not affected
|
|
* by duplicate action entries.
|
|
*
|
|
* @group Core
|
|
* @group DuplicateActionsTest
|
|
*/
|
|
class DuplicateActionsTest extends SystemTestCase
|
|
{
|
|
/**
|
|
* @var OneVisitorTwoVisits
|
|
*/
|
|
public static $fixture = null; // initialized below class
|
|
|
|
public static function setUpBeforeClass(): void
|
|
{
|
|
parent::setUpBeforeClass();
|
|
|
|
// add duplicates for every action
|
|
$table = Common::prefixTable('log_action');
|
|
foreach (Db::fetchAll("SELECT * FROM $table") as $row) {
|
|
$insertSql = "INSERT INTO $table (name, type, hash, url_prefix)
|
|
VALUES (?, ?, CRC32(?), ?)";
|
|
|
|
Db::query($insertSql, array($row['name'], $row['type'], $row['name'], $row['url_prefix']));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider getApiForTesting
|
|
*/
|
|
public function testPiwikApiWorksWhenDuplicateActionsExistInDb($api, $params)
|
|
{
|
|
$this->runApiTests($api, $params);
|
|
}
|
|
|
|
public function getApiForTesting()
|
|
{
|
|
$idSite = self::$fixture->idSite;
|
|
$dateTime = self::$fixture->dateTime;
|
|
|
|
$api = array('VisitsSummary', 'Actions', 'Contents', 'Events');
|
|
return array(
|
|
array($api, array('idSite' => $idSite,
|
|
'periods' => 'day',
|
|
'date' => $dateTime,
|
|
'compareAgainst' => 'OneVisitorTwoVisits',
|
|
'otherRequestParameters' => array(
|
|
'hideColumns' => OneVisitorTwoVisits::getValueForHideColumns(),
|
|
)
|
|
))
|
|
);
|
|
}
|
|
|
|
public function provideContainerConfig()
|
|
{
|
|
return array(
|
|
'Piwik\Config' => \Piwik\DI::decorate(function ($previous) {
|
|
$general = $previous->General;
|
|
$general['action_title_category_delimiter'] = "/";
|
|
$previous->General = $general;
|
|
return $previous;
|
|
}),
|
|
);
|
|
}
|
|
}
|
|
|
|
DuplicateActionsTest::$fixture = new OneVisitorTwoVisits();
|