Newer
Older
<?php
/**
* Tests the transitions plugin.
*/
class Test_Piwik_Integration_Transitions 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();
$return[] = array('Transitions.getTransitionsForPageUrl', array(
'idSite' => self::$fixture->idSite,
'date' => self::$fixture->dateTime,
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
'periods' => array('day', 'month'),
'testSuffix' => '_noLimit',
'otherRequestParameters' => array(
'pageUrl' => 'http://example.org/page/one.html',
)
));
$return[] = array('Transitions.getTransitionsForPageTitle', array(
'idSite' => self::$fixture->idSite,
'date' => self::$fixture->dateTime,
'periods' => array('day', 'month'),
'testSuffix' => '_noLimit',
'otherRequestParameters' => array(
'pageTitle' => 'page title - page/one.html',
)
));
// test w/ pages that don't exist
$return[] = array('Transitions.getTransitionsForPageUrl', array(
'idSite' => self::$fixture->idSite,
'date' => self::$fixture->dateTime,
'periods' => array('day', 'month'),
'testSuffix' => '_noData',
'otherRequestParameters' => array(
'pageUrl' => 'http://example.org/not/a/page.html',
)
));
$return[] = array('Transitions.getTransitionsForPageTitle', array(
'idSite' => self::$fixture->idSite,
'date' => self::$fixture->dateTime,
'periods' => array('day', 'month'),
'testSuffix' => '_noData',
'otherRequestParameters' => array(
'pageTitle' => 'not a page title',
)
));
$return[] = array('Transitions.getTransitionsForPageUrl', array( // test w/ limiting
'idSite' => self::$fixture->idSite,
'date' => self::$fixture->dateTime,
'periods' => array('day', 'month'),
'otherRequestParameters' => array(
'pageUrl' => 'http://example.org/page/one.html',
'limitBeforeGrouping' => 2
)
return $return;
}
Benaka Moorthi
a validé
public static function getOutputPrefix()
{
return 'Transitions';
}
diosmosis
a validé
Test_Piwik_Integration_Transitions::$fixture = new Test_Piwik_Fixture_SomeVisitsManyPageviewsWithTransitions();