Skip to content
Extraits de code Groupes Projets
ImportLogsTest.php 2,5 ko
Newer Older
  • Learn to ignore specific revisions
  • <?php
    /**
     * Piwik - Open source web analytics
     *
     * @link    http://piwik.org
     * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
     */
    
    
    /**
     * Tests the log importer.
     */
    class Test_Piwik_Integration_ImportLogs extends IntegrationTestCase
    {
    
        public static $fixture = null; // initialized below class definition
    
        /**
         * @dataProvider getApiForTesting
         * @group        Integration
         */
        public function testApi($api, $params)
        {
            $this->runApiTests($api, $params);
        }
    
        public function getApiForTesting()
        {
    
            return array(
                array('all', array('idSite'  => self::$fixture->idSite,
                                   'date'    => '2012-08-09',
                                   'periods' => 'month')),
    
                // report generated from custom log format including generation time
                array('Actions.getPageUrls', array('idSite'  => self::$fixture->idSite,
                                                   'date'    => '2012-09-30',
                                                   'periods' => 'day')),
    
                array('VisitsSummary.get', array('idSite'     => self::$fixture->idSite2,
                                                 'date'       => '2012-08-09',
                                                 'periods'    => 'month',
                                                 'testSuffix' => '_siteIdTwo_TrackedUsingLogReplay')),
            );
    
         * 
         * NOTE: This test must be last since the new sites that get added are added in
         *       random order.
    
         */
        public function testDynamicResolverSitesCreated()
        {
    
            self::$fixture->logVisitsWithDynamicResolver();
    
            // reload access so new sites are viewable
    
            Access::getInstance()->setSuperUser(true);
    
    
            // make sure sites aren't created twice
    
            $piwikDotNet = API::getInstance()->getSitesIdFromSiteUrl('http://piwik.net');
    
            $this->assertEquals(1, count($piwikDotNet));
    
    
            $anothersiteDotCom = API::getInstance()->getSitesIdFromSiteUrl('http://anothersite.com');
    
            $this->assertEquals(1, count($anothersiteDotCom));
    
            $whateverDotCom = API::getInstance()->getSitesIdFromSiteUrl('http://whatever.com');
    
            $this->assertEquals(1, count($whateverDotCom));
        }
    
    
    Test_Piwik_Integration_ImportLogs::$fixture = new Test_Piwik_Fixture_ManySitesImportedLogs();