Skip to content
Extraits de code Groupes Projets
BackwardsCompatibility1XTest.php 8,17 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\Plugins\VisitFrequency\API as VisitFrequencyApi;
    
    use Piwik\Tests\Framework\TestCase\SystemTestCase;
    
    use Piwik\Tests\Fixtures\SqlDump;
    
     * Tests that Piwik 2.0 works w/ data from Piwik 1.12.
    
     *
     * @group BackwardsCompatibility1XTest
    
    class BackwardsCompatibility1XTest extends SystemTestCase
    
        const FIXTURE_LOCATION = '/tests/resources/piwik-1.13-dump.sql';
    
    
        public static $fixture = null; // initialized below class
    
        public static function setUpBeforeClass()
        {
            parent::setUpBeforeClass();
    
    
            // note: not sure why I have to manually install plugin
            \Piwik\Plugin\Manager::getInstance()->loadPlugin('CustomAlerts')->install();
    
            \Piwik\Plugin\Manager::getInstance()->loadPlugin('CustomDimensions')->install();
    
            $result = Fixture::updateDatabase();
    
            if ($result === false) {
                throw new \Exception("Failed to update pre-2.0 database (nothing to update).");
            }
    
    
            // truncate log tables so old data won't be re-archived
            foreach (array('log_visit', 'log_link_visit_action', 'log_conversion', 'log_conversion_item') as $table) {
                Db::query("TRUNCATE TABLE " . Common::prefixTable($table));
            }
    
    mattab's avatar
    mattab a validé
            self::trackTwoVisitsOnSameDay();
    
            // launch archiving
            VisitFrequencyApi::getInstance()->get(1, 'year', '2012-12-29');
        }
    
    
        /**
         * add two visits from same visitor on dec. 29
         */
        private static function trackTwoVisitsOnSameDay()
        {
            $t = Fixture::getTracker(1, '2012-12-29 01:01:30', $defaultInit = true, $useLocal = true);
            $t->enableBulkTracking();
    
    
            $t->setUrl('http://site.com/index.htm');
    
    mattab's avatar
    mattab a validé
            $t->doTrackPageView('incredible title!');
    
            $t->setForceVisitDateTime('2012-12-29 03:01:30');
            $t->setUrl('http://site.com/other/index.htm');
    
            $t->DEBUG_APPEND_URL = '&_idvc=2'; // make sure visit is marked as returning
    
    mattab's avatar
    mattab a validé
            $t->doTrackPageView('other incredible title!');
    
    mattab's avatar
    mattab a validé
            $t->doBulkTrack();
    
        /**
         * @dataProvider getApiForTesting
         */
        public function testApi($api, $params)
        {
    
            // note: not sure why I have to manually activate plugin in order for `./console tests:run BackwardsCompatibility1XTest` to work
            try {
                \Piwik\Plugin\Manager::getInstance()->activatePlugin('DevicesDetection');
            } catch(\Exception $e) {
            }
    
    
            $this->runApiTests($api, $params);
        }
    
        public function getApiForTesting()
        {
            $idSite = 1;
    
            $defaultOptions = array(
                'idSite' => $idSite,
                'date'   => $dateTime,
                'disableArchiving' => true,
                'otherRequestParameters' => array(
    
    mattab's avatar
    mattab a validé
                    // when changing this, might also need to change the same line in OneVisitorTwoVisitsTest.php
                    'hideColumns' => 'nb_users,sum_bandwidth,nb_hits_with_bandwidth,min_bandwidth,max_bandwidth',
    
    mattab's avatar
    mattab a validé
            /**
             * When Piwik\Tests\System\BackwardsCompatibility1XTest is failing,
             * as this test compares fixtures to OneVisitorTwoVisits* fixtures,
             * sometimes for a given API method that fails to generate the same output as OneVisitorTwoVisits does,
             * we need to add the API below which will cause the fixtures for this API to be created in processed/
             */
    
            $reportsToCompareSeparately = array(
    
                // the label column is not the first column here
                'MultiSites.getAll',
    
    
                // those reports generate a different segment as a different raw value was stored that time
    
                'DevicesDetection.getOsVersions',
    
    mattab's avatar
    mattab a validé
                'Goals.get',
    
                // Following #9345
                'Actions.getPageUrls',
                'Actions.getDownloads',
                'Actions.getDownload',
    
    Lukas Winkler's avatar
    Lukas Winkler a validé
    
                // new flag dimensions
                'UserCountry.getCountry',
    
            $apiNotToCall = array(
                // in the SQL dump, a referrer is named referer.com, but now in OneVisitorTwoVisits it is referrer.com
                'Referrers',
    
                // changes made to SQL dump to test VisitFrequency change the day of week
                'VisitTime.getByDayOfWeek',
    
    
    sgiehl's avatar
    sgiehl a validé
                // did not exist in Piwik 1.X
                'DevicesDetection.getBrowserEngines',
    
    
    sgiehl's avatar
    sgiehl a validé
                // now enriched with goal metrics
                'DevicesDetection.getType',
                'DevicesDetection.getBrand',
                'DevicesDetection.getModel',
    
    
                // we test VisitFrequency explicitly
                'VisitFrequency.get',
    
    
                // do not test as label formats have changed
                'VisitTime.getVisitInformationPerLocalTime',
                'VisitTime.getVisitInformationPerServerTime',
    
    
                 // the Action.getPageTitles test fails for unknown reason, so skipping it
                 // eg. https://travis-ci.org/piwik/piwik/jobs/24449365
    
    
                // Outlinks now tracked with URL Fragment which was not the case in 1.X
                'Actions.get',
                'Actions.getOutlink',
                'Actions.getOutlinks',
    
    mattab's avatar
    mattab a validé
    
                // system settings such as enable_plugin_update_communication are enabled by default in newest version,
                // but ugpraded Piwik are not
                'CorePluginsAdmin.getSystemSettings'
    
            $apiNotToCall = array_merge($apiNotToCall, $reportsToCompareSeparately);
    
            $allReportsOptions = $defaultOptions;
            $allReportsOptions['compareAgainst'] = 'OneVisitorTwoVisits';
            $allReportsOptions['apiNotToCall']   = $apiNotToCall;
    
    
                array('all', $allReportsOptions),
    
                array('VisitFrequency.get', array('idSite' => $idSite, 'date' => '2012-03-03', 'setDateLastN' => true,
    
                                                  'disableArchiving' => true, 'testSuffix' => '_multipleDates')),
    
                array('VisitFrequency.get', array('idSite' => $idSite, 'date' => $dateTime,
                                                  'periods' => array('day', 'week', 'month', 'year'),
                                                  'disableArchiving' => false)),
    
    
                array('VisitFrequency.get', array('idSite' => $idSite, 'date' => '2012-03-06,2012-12-31',
    
    diosmosis's avatar
    diosmosis a validé
                                                  'periods' => array('range'), 'disableArchiving' => true)),
    
    
                array('Actions.getPageUrls', array('idSite' => $idSite, 'date' => '2012-03-06,2012-12-31',
                                                   'otherRequestParameters' => array('expanded' => '1'),
                                                   'testSuffix' => '_expanded',
                                                   'periods' => array('range'), 'disableArchiving' => true)),
    
                array('Actions.getPageUrls', array('idSite' => $idSite, 'date' => '2012-03-06,2012-12-31',
                                                   'otherRequestParameters' => array('flat' => '1'),
                                                   'testSuffix' => '_flat',
                                                   'periods' => array('range'), 'disableArchiving' => true)),
    
    
                array('Actions.getPageUrls', array('idSite' => $idSite, 'date' => '2012-03-06',
                                                   'otherRequestParameters' => array('idSubtable' => '30'),
                                                   'testSuffix' => '_subtable',
                                                   'periods' => array('day'), 'disableArchiving' => true)),
    
    
    diosmosis's avatar
    diosmosis a validé
                array('VisitFrequency.get', array('idSite' => $idSite, 'date' => '2012-03-03,2012-12-12', 'periods' => array('month'),
    
                                                  'testSuffix' => '_multipleOldNew', 'disableArchiving' => true)),
    
                array($reportsToCompareSeparately, $defaultOptions),
    
    BackwardsCompatibility1XTest::$fixture = new SqlDump();
    
    BackwardsCompatibility1XTest::$fixture->dumpUrl = PIWIK_INCLUDE_PATH . BackwardsCompatibility1XTest::FIXTURE_LOCATION;
    
    BackwardsCompatibility1XTest::$fixture->tablesPrefix = '';