Skip to content
Extraits de code Groupes Projets
TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest.php 4,08 ko
Newer Older
  • Learn to ignore specific revisions
  •  * 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
    
        public function testApi($api, $params)
    
            if (self::isPhpVersion53() && self::isTravisCI()) {
                $this->markTestSkipped("Skipping this test as it often fails on travis)");
            }
    
            $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')),
    
    
        {
            return 'TwoVisitors_twoWebsites_differentDays_ArchivingDisabled';
        }
    
    TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest::$fixture = new TwoSitesTwoVisitorsDifferentDays();
    
    TwoVisitorsTwoWebsitesDifferentDaysArchivingDisabledTest::$fixture->allowConversions = true;