Skip to content
Extraits de code Groupes Projets
TwoVisitsWithCustomVariablesSegmentMatchNONETest.php 2,94 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\IntegrationTestCase;
    
    
    /**
     * testing a segment containing all supported fields
    
     *
     * @group Integration
     * @group TwoVisitsWithCustomVariablesSegmentMatchNONETest
    
    class TwoVisitsWithCustomVariablesSegmentMatchNONETest extends IntegrationTestCase
    
        public static $fixture = null; // initialized below class definition
    
    
        /**
         * @dataProvider getApiForTesting
         */
        public function testApi($api, $params)
        {
            $this->runApiTests($api, $params);
        }
    
        public function getApiForTesting()
        {
    
            // we will test all segments from all plugins
    
    mattab's avatar
    mattab a validé
    
    
            $apiToCall = array('VisitsSummary.get', 'CustomVariables.getCustomVariables');
    
            return array(
                array($apiToCall, array('idSite'       => 'all',
    
                                        'periods'      => array('day', 'week'),
                                        'setDateLastN' => true,
                                        'segment'      => $this->getSegmentToTest()))
            );
        }
    
        public function getSegmentToTest()
        {
            // Segment matching NONE
    
            $segments = API::getInstance()->getSegmentsMetadata(self::$fixture->idSite);
    
    mattab's avatar
    mattab a validé
    
            $minimumExpectedSegmentsCount = 55; // as of Piwik 1.12
            $this->assertTrue( count($segments) >= $minimumExpectedSegmentsCount);
    
            $segmentExpression = array();
    
            $seenVisitorId = false;
            foreach ($segments as $segment) {
                $value = 'campaign';
                if ($segment['segment'] == 'visitorId') {
                    $seenVisitorId = true;
    
                }
                if ($segment['segment'] == 'visitEcommerceStatus') {
                    $value = 'none';
                }
    
    mattab's avatar
    mattab a validé
                $matchNone = $segment['segment'] . '!=' . $value;
    
                // deviceType != campaign matches ALL visits, but we want to match None
                if($segment['segment'] == 'deviceType') {
                    $matchNone = $segment['segment'] . '==car%20browser';
                }
                $segmentExpression[] = $matchNone;
    
            }
    
            $segment = implode(";", $segmentExpression);
    
            // just checking that this segment was tested (as it has the only visible to admin flag)
            $this->assertTrue($seenVisitorId);
            $this->assertGreaterThan(100, strlen($segment));
    
            return $segment;
        }
    
    
        {
            return 'twoVisitsWithCustomVariables_segmentMatchNONE';
        }
    }
    
    
    TwoVisitsWithCustomVariablesSegmentMatchNONETest::$fixture
        = new \Test_Piwik_Fixture_TwoVisitsWithCustomVariables();
    TwoVisitsWithCustomVariablesSegmentMatchNONETest::$fixture->doExtraQuoteTests = false;