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

* [Coding Style] Enable rule PSR12.Files.FileHeader * Apply CS * Replace Piwik with Matomo in file headers * Unify file headers (position, no. of lines, https links) * Rebuild dist files * Apply CS * Fix system test that relies on line numbers in a file that had the file header updated --------- Co-authored-by: Stefan Giehl <stefan@matomo.org>
93 خطوط
3.9 KiB
PHP
93 خطوط
3.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\System;
|
|
|
|
use Piwik\Tests\Framework\TestCase\SystemTestCase;
|
|
use Piwik\Tests\Fixtures\TwoSitesTwoVisitorsDifferentDays;
|
|
|
|
/**
|
|
* Tests IndexedBySite optimizations when archiving is disabled.
|
|
*
|
|
* @group TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest
|
|
* @group TwoSitesTwoVisitorsDifferentDays
|
|
* @group Plugins
|
|
*/
|
|
class TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest extends SystemTestCase
|
|
{
|
|
public static $fixture = null; // initialized below class definition
|
|
|
|
/**
|
|
* @dataProvider getApiForTesting
|
|
*/
|
|
public function testApi($api, $params)
|
|
{
|
|
$this->runApiTests($api, $params);
|
|
}
|
|
|
|
public function getApiForTesting()
|
|
{
|
|
$dateTime = self::$fixture->dateTime;
|
|
|
|
$periods = array('day', 'week', 'month', 'year');
|
|
|
|
$dateStart = \Piwik\Date::factory($dateTime)->subDay(10)->toString();
|
|
$dateEnd = \Piwik\Date::factory($dateTime)->addDay(15)->toString();
|
|
$dateRange = $dateStart . "," . $dateEnd;
|
|
|
|
return array(
|
|
// disable archiving & check that there is no archive data
|
|
array('VisitsSummary.get', array('idSite' => 'all',
|
|
'date' => $dateTime,
|
|
'periods' => $periods,
|
|
'disableArchiving' => true,
|
|
'testSuffix' => '_disabledBefore')),
|
|
|
|
// re-enable archiving & check the output
|
|
array('VisitsSummary.get', array('idSite' => 'all',
|
|
'date' => $dateTime,
|
|
'periods' => $periods,
|
|
'disableArchiving' => false,
|
|
'testSuffix' => '_enabled')),
|
|
|
|
// diable archiving again & check the output
|
|
array('VisitsSummary.get', array('idSite' => 'all',
|
|
'date' => $dateTime,
|
|
'periods' => $periods,
|
|
'disableArchiving' => true,
|
|
'testSuffix' => '_disabledAfter')),
|
|
|
|
// Testing this particular bug: https://github.com/piwik/piwik/issues/4532
|
|
// ENABLE ARCHIVING and Process this custom date range.
|
|
array('VisitsSummary.get', array('idSite' => 'all',
|
|
'date' => $dateRange,
|
|
'periods' => array('range'),
|
|
'disableArchiving' => false,
|
|
'testSuffix' => '_enabledBefore_isDateRange')),
|
|
|
|
// DISABLE Archiving + DELETE Date range archives before this test.
|
|
// This should return the same data as the test above!
|
|
array('VisitsSummary.get', array('idSite' => 'all',
|
|
'date' => $dateRange,
|
|
'periods' => array('range'),
|
|
'disableArchiving' => true,
|
|
'testSuffix' => '_disabledBefore_isDateRange')),
|
|
|
|
);
|
|
}
|
|
|
|
public static function getOutputPrefix()
|
|
{
|
|
return 'TwoVisitors_twoWebsites_differentDays_ArchivingDisabled';
|
|
}
|
|
}
|
|
|
|
TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest::$fixture = new TwoSitesTwoVisitorsDifferentDays();
|
|
TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest::$fixture->allowConversions = true;
|