Newer
Older
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
Thomas Steur
a validé
namespace Piwik\Tests\System;
Thomas Steur
a validé
use Piwik\Tests\Framework\TestCase\SystemTestCase;
use Piwik\Tests\Fixtures\TwoSitesTwoVisitorsDifferentDays;
diosmosis
a validé
* Tests IndexedBySite optimizations when archiving is disabled.
*
* @group TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest
* @group TwoSitesTwoVisitorsDifferentDays
Thomas Steur
a validé
* @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',
diosmosis
a validé
'date' => $dateTime,
'periods' => $periods,
'disableArchiving' => true,
'testSuffix' => '_disabledBefore')),
// re-enable archiving & check the output
array('VisitsSummary.get', array('idSite' => 'all',
diosmosis
a validé
'date' => $dateTime,
'periods' => $periods,
'disableArchiving' => false,
'testSuffix' => '_enabled')),
// diable archiving again & check the output
array('VisitsSummary.get', array('idSite' => 'all',
diosmosis
a validé
'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')),
Benaka Moorthi
a validé
public static function getOutputPrefix()
{
return 'TwoVisitors_twoWebsites_differentDays_ArchivingDisabled';
}
diosmosis
a validé
}
TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest::$fixture = new TwoSitesTwoVisitorsDifferentDays();
TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest::$fixture->allowConversions = true;