Skip to content
Extraits de code Groupes Projets
TwoVisitsWithCustomVariablesSegmentMatchNONETest.php 3,17 ko
Newer Older
 * 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\TwoVisitsWithCustomVariables;

/**
 * testing a segment containing all supported fields
 * @group TwoVisitsWithCustomVariablesSegmentMatchNONETest
class TwoVisitsWithCustomVariablesSegmentMatchNONETest extends SystemTestCase
    public static $fixture = null; // initialized below class definition

    /**
     * @dataProvider getApiForTesting
     */
    public function testApi($api, $params)
    {
        if (!array_key_exists('segment', $params)) {
            $params['segment'] = $this->getSegmentToTest(); // this method can access the DB, so we get it here instead of the data provider
        }

        $this->runApiTests($api, $params);
    }

    public function getApiForTesting()
    {
diosmosis's avatar
diosmosis a validé
        // we will test all segments from all plugins
        $apiToCall = array('VisitsSummary.get', 'CustomVariables.getCustomVariables');

        return array(
            array($apiToCall, array('idSite'       => 'all',
                                    'date'         => self::$fixture->dateTime,
                                    'periods'      => array('day', 'week'),
        );
    }

    public function getSegmentToTest()
    {
        $segments = AutoSuggestAPITest::getSegmentsMetadata();
mattab's avatar
mattab a validé

        $minimumExpectedSegmentsCount = 55; // as of Piwik 1.12
sgiehl's avatar
sgiehl a validé
        $this->assertGreaterThan($minimumExpectedSegmentsCount, count($segments));
        $segmentExpression = array();

        $seenVisitorId = false;
        foreach ($segments as $segment) {
            $value = 'campaign';
                $seenVisitorId = true;
                $value = '34c31e04394bdc63';
            if ($segment == 'visitEcommerceStatus') {
                $value = 'none';
            }
Thomas Steur's avatar
Thomas Steur a validé
            if ($segment == 'actionType') {
                $value = 'pageviews';
            }
            $matchNone = $segment . '!=' . $value;
mattab's avatar
mattab a validé

            // deviceType != campaign matches ALL visits, but we want to match None
                $matchNone = $segment . '==car%20browser';
mattab's avatar
mattab a validé
            }

            if ($segment == 'deviceBrand') {
                $matchNone = $segment . '==Yarvik';
            }

mattab's avatar
mattab a validé
            $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;
    }

    public static function getOutputPrefix()
    {
        return 'twoVisitsWithCustomVariables_segmentMatchNONE';
    }
mattab's avatar
mattab a validé

TwoVisitsWithCustomVariablesSegmentMatchNONETest::$fixture = new TwoVisitsWithCustomVariables();
TwoVisitsWithCustomVariablesSegmentMatchNONETest::$fixture->doExtraQuoteTests = false;