Skip to content
Extraits de code Groupes Projets
TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest.php 3,92 ko
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
 */
use Piwik\Tests\Framework\TestCase\SystemTestCase;
Thomas Steur's avatar
Thomas Steur a validé
use Piwik\Tests\Fixtures\TwoSitesTwoVisitorsDifferentDays;
 * Tests IndexedBySite optimizations when archiving is disabled.
 *
 * @group TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest
 * @group TwoSitesTwoVisitorsDifferentDays
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',
                                             'periods'          => $periods,
                                             'disableArchiving' => true,
                                             'testSuffix'       => '_disabledBefore')),

            // re-enable archiving & check the output
            array('VisitsSummary.get', array('idSite'           => 'all',
                                             'periods'          => $periods,
                                             'disableArchiving' => false,
                                             'testSuffix'       => '_enabled')),

            // diable archiving again & check the output
            array('VisitsSummary.get', array('idSite'           => 'all',
                                             '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;