1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-22 06:57:53 +00:00
Files
matomo/tests/PHPUnit/Integration/LogDeleterTest.php
Stefan Giehl d6d72d1fa7 [Coding Style] Enable rule PSR1.Methods.CamelCapsMethodName.NotCamelCaps (#22144)
* [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>
2024-04-25 20:57:55 +02:00

152 خطوط
4.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\Tests\Integration;
use Piwik\Common;
use Piwik\DataAccess\RawLogDao;
use Piwik\Db;
use Piwik\LogDeleter;
use Piwik\Tests\Framework\Mock\Plugin\LogTablesProvider;
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;
use Piwik\Tests\Framework\TestDataHelper\LogHelper;
/**
* @group Core
*/
class LogDeleterTest extends IntegrationTestCase
{
/**
* @var LogHelper
*/
private $logInserter;
/**
* @var LogDeleter
*/
private $logDeleter;
public function setUp(): void
{
parent::setUp();
$this->logDeleter = new LogDeleter(new RawLogDao(), new LogTablesProvider());
$this->logInserter = new LogHelper();
$this->insertTestData();
}
public function testDeleteVisitsRemovesVisitsAndOtherRelatedLogs()
{
$this->logDeleter->deleteVisits(array(2, 3));
$this->assertVisitExists(1);
$this->assertVisitNotExists(2);
$this->assertVisitNotExists(3);
$this->assertVisitExists(4);
}
public function testDeleteVisitsForDeletesVisitsForSpecifiedRangeAndSitesAndInvokesCallbackAfterEveryChunkIsDeleted()
{
$iterationCount = 0;
$this->logDeleter->deleteVisitsFor('2012-01-01', '2012-01-02 05:05:05', 2, $iterationStep = 1, function () use (&$iterationCount) {
++$iterationCount;
});
$this->assertEquals(2, $iterationCount);
// visits for idSite = 1 do not get deleted
$this->assertVisitExists(1);
$this->assertVisitExists(2);
// visits for idSite = 2 do get deleted
$this->assertVisitNotExists(3);
$this->assertVisitNotExists(4);
}
private function insertTestData()
{
// two visits for site = 1
$this->insertVisit($idSite = 1, $dateTime = '2012-01-01 00:00:00');
$this->insertVisit($idSite = 1, $dateTime = '2012-01-02 00:00:00');
// two visits for site = 2
$this->insertVisit($idSite = 2, $dateTime = '2012-01-01 00:00:00');
$this->insertVisit($idSite = 2, $dateTime = '2012-01-02 00:00:00');
}
private function insertVisit($idSite, $dateTime)
{
$visit = $this->logInserter->insertVisit(array('idsite' => $idSite, 'visit_last_action_time' => $dateTime));
$orderId = 'idorder_' . $visit['idvisit'];
// insert two actions
$this->logInserter->insertVisitAction($visit['idvisit'], array('idsite' => $idSite));
$this->logInserter->insertVisitAction($visit['idvisit'], array('idsite' => $idSite));
// insert two conversions
$this->logInserter->insertConversion($visit['idvisit'], array('idsite' => $idSite, 'buster' => 1));
$this->logInserter->insertConversion($visit['idvisit'], array('idsite' => $idSite, 'buster' => 2, 'idorder' => $orderId));
// insert two conversion items for last conversion
$this->logInserter->insertConversionItem($visit['idvisit'], $orderId, array('idsite' => $idSite));
$this->logInserter->insertConversionItem($visit['idvisit'], $orderId, array('idsite' => $idSite, 'idaction_sku' => 123));
}
private function assertVisitExists($idVisit, $checkAggregates = true)
{
$this->assertEquals(1, $this->getRowCountWithIdVisit('log_visit', $idVisit));
$this->assertEquals(2, $this->getRowCountWithIdVisit('log_link_visit_action', $idVisit));
if ($checkAggregates) {
$this->assertConversionsExists($idVisit);
}
}
private function assertConversionsExists($idVisit, $checkAggregates = true)
{
$this->assertEquals(2, $this->getRowCountWithIdVisit('log_conversion', $idVisit));
if ($checkAggregates) {
$this->assertConversionItemsExist($idVisit);
}
}
private function assertConversionItemsExist($idVisit)
{
$this->assertEquals(2, $this->getRowCountWithIdVisit('log_conversion_item', $idVisit));
}
private function assertVisitNotExists($idVisit)
{
$this->assertEquals(0, $this->getRowCountWithIdVisit('log_visit', $idVisit));
$this->assertEquals(0, $this->getRowCountWithIdVisit('log_link_visit_action', $idVisit));
$this->assertConversionsNotExists($idVisit);
}
private function getRowCountWithIdVisit($table, $idVisit)
{
return Db::fetchOne("SELECT COUNT(*) FROM " . Common::prefixTable($table) . " WHERE idvisit = $idVisit");
}
private function assertConversionsNotExists($idVisit)
{
$this->assertEquals(0, $this->getRowCountWithIdVisit('log_conversion', $idVisit));
$this->assertConversionItemsNotExist($idVisit);
}
private function assertConversionItemsNotExist($idVisit)
{
$this->assertEquals(0, $this->getRowCountWithIdVisit('log_conversion_item', $idVisit));
}
}