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
*/
Thomas Steur
a validé
namespace Piwik\Tests\System;
Thomas Steur
a validé
use Piwik\Tests\Framework\TestCase\SystemTestCase;
use Piwik\Tests\Fixtures\TwoVisitsWithCustomVariables;
Thomas Steur
a validé
use Piwik\Tests\Framework\Fixture;
/**
* testing a segment containing all supported fields
Thomas Steur
a validé
* @group Plugins
* @group TwoVisitsWithCustomVariablesSegmentMatchNONETest
class TwoVisitsWithCustomVariablesSegmentMatchNONETest extends SystemTestCase
public static $fixture = null; // initialized below class definition
/**
* @dataProvider getApiForTesting
*/
public function testApi($api, $params)
{
diosmosis
a validé
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()
{
$apiToCall = array('VisitsSummary.get', 'CustomVariables.getCustomVariables');
return array(
array($apiToCall, array('idSite' => 'all',
diosmosis
a validé
'date' => self::$fixture->dateTime,
'periods' => array('day', 'week'),
diosmosis
a validé
'setDateLastN' => true))
);
}
public function getSegmentToTest()
{
$segments = AutoSuggestAPITest::getSegmentsMetadata();
$this->assertGreaterThan($minimumExpectedSegmentsCount, count($segments));
$segmentExpression = array();
$seenVisitorId = false;
foreach ($segments as $segment) {
$value = 'campaign';
if ($segment == 'visitorId') {
$value = '34c31e04394bdc63';
if ($segment == 'visitEcommerceStatus') {
if ($segment == 'actionType') {
$value = 'pageviews';
}
$matchNone = $segment . '!=' . $value;
// deviceType != campaign matches ALL visits, but we want to match None
Thomas Steur
a validé
if ($segment == 'deviceType') {
$matchNone = $segment . '==car%20browser';
if ($segment == 'deviceBrand') {
$matchNone = $segment . '==Yarvik';
}
}
$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;
}
Benaka Moorthi
a validé
public static function getOutputPrefix()
{
return 'twoVisitsWithCustomVariables_segmentMatchNONE';
}
TwoVisitsWithCustomVariablesSegmentMatchNONETest::$fixture = new TwoVisitsWithCustomVariables();
TwoVisitsWithCustomVariablesSegmentMatchNONETest::$fixture->doExtraQuoteTests = false;