Skip to content
Extraits de code Groupes Projets
TwoVisitsWithCustomVariablesSegmentMatchALLNoGoalDataTest.php 1,84 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\Impl\SystemTestCase;
    use Piwik\Tests\Impl\Fixtures\TwoVisitsWithCustomVariables;
    
     * @group TwoVisitsWithCustomVariablesSegmentMatchALLNoGoalDataTest
     */
    
    class TwoVisitsWithCustomVariablesSegmentMatchALLNoGoalDataTest extends SystemTestCase
    
        public static $fixture = null; // initialized below class definition
    
    
        /**
         * @dataProvider getApiForTesting
         */
        public function testApi($api, $params)
        {
            $this->runApiTests($api, $params);
        }
    
        public function getApiForTesting()
        {
            $apiToCall = array('VisitsSummary.get', 'CustomVariables.getCustomVariables');
    
            // Segment matching ALL
            // + adding DOES NOT CONTAIN segment always matched, to test this particular operator
    
            $resolution = self::$fixture->resolutionWidthToUse . 'x' . self::$fixture->resolutionHeightToUse;
    
            $segment = 'resolution==' . $resolution . ';customVariableName1!@randomvalue does not exist';
    
    
            return array(
                array($apiToCall, array('idSite'       => 'all',
    
                                        'periods'      => array('day', 'week'),
                                        'setDateLastN' => true,
                                        'segment'      => $segment))
            );
        }
    
    
        {
            return 'twoVisitsWithCustomVariables_segmentMatchALL_noGoalData';
        }
    }
    
    
    TwoVisitsWithCustomVariablesSegmentMatchALLNoGoalDataTest::$fixture = new TwoVisitsWithCustomVariables();
    
    TwoVisitsWithCustomVariablesSegmentMatchALLNoGoalDataTest::$fixture->doExtraQuoteTests = false;