Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Tests\Integration;
use Piwik\Config;
use Piwik\Date;
use Piwik\Tests\Fixtures\ManyVisitsWithMockLocationProvider;
use Piwik\Tests\IntegrationTestCase;
/**
* @group Integration
* @group PivotByQueryParamTest
*/
class PivotByQueryParamTest extends IntegrationTestCase
{
/**
* @var ManyVisitsWithMockLocationProvider
*/
public static $fixture = null;
public static function setUpBeforeClass()
{
parent::setUpBeforeClass();
Config::getInstance()->General['pivot_by_filter_enable_fetch_by_segment'] = 1;
}
public function testPivotBySubtableDimensionCreatesCorrectPivotTable()
{
$this->assertApiResponseEqualsExpected("Referrers.getKeywords", array(
'idSite' => self::$fixture->idSite,
'date' => Date::factory(self::$fixture->dateTime)->toString(),
'period' => 'week',
'pivotBy' => 'Referrers.SearchEngine',
'pivotByColumn' => 'nb_visits',
'pivotByColumnLimit' => -1,
'disable_queued_filters' => 1 // test that prepending doesn't happen w/ this
));
}
public function testPivotBySubtableDimensionCreatesCorrectPivotTableWhenEntireHirearchyIsNotLoaded()
{
$this->assertApiResponseEqualsExpected("Referrers.getKeywords", array(
'idSite' => self::$fixture->idSite,
'date' => Date::factory(self::$fixture->dateTime)->toString(),
'period' => 'week',
'pivotBy' => 'Referrers.SearchEngine',
'pivotByColumn' => '', // also test default pivot column
'pivotByColumnLimit' => -1,
'expanded' => 0
));
}
public function testPivotBySegmentCreatesCorrectPivotTable()
{
$this->assertApiResponseEqualsExpected("Referrers.getKeywords", array(
'idSite' => self::$fixture->idSite,
'date' => Date::factory(self::$fixture->dateTime)->toString(),
'period' => 'week',
'pivotBy' => 'UserCountry.City',
'pivotByColumn' => 'nb_visits',
'pivotByColumnLimit' => -1
));
}
public function testPivotBySegmentCreatesCorrectPivotTableWhenSegmentUsedInRequest()
{
$this->assertApiResponseEqualsExpected("Referrers.getKeywords", array(
'idSite' => self::$fixture->idSite,
'date' => Date::factory(self::$fixture->dateTime)->toString(),
'period' => 'week',
'segment' => 'browserCode==FF',
'pivotBy' => 'UserCountry.City',
'pivotByColumn' => 'nb_visits',
'pivotByColumnLimit' => -1
));
}
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
public function testPivotByParamPlaysNiceWithOtherQueryParams()
{
$this->assertApiResponseEqualsExpected("Referrers.getKeywords", array(
'idSite' => self::$fixture->idSite,
'date' => Date::factory(self::$fixture->dateTime)->toString(),
'period' => 'week',
'pivotBy' => 'Referrers.SearchEngine',
'pivotByColumn' => 'nb_visits',
'pivotByColumnLimit' => -1,
'flat' => 1,
'totals' => 1,
'disable_queued_filters' => 1,
'disable_generic_filters' => 1,
'showColumns' => 'Google,Bing'
));
}
public function testPivotByParamPlaysNiceWithQueuedFilters()
{
// TODO: known issue: some segment/report relationships are more complicated; for example, UserCountry.GetCity labels are combinations
// of city, region & country dimensions, so the segment to get an intersected table needs all 3 of those.
$this->markTestSkipped("Not working right now.");
$this->assertApiResponseEqualsExpected("UserSettings.getBrowser", array( // should have logo metadata in output
'idSite' => self::$fixture->idSite,
'date' => Date::factory(self::$fixture->dateTime)->toString(),
'period' => 'week',
'pivotBy' => 'UserCountry.City', // testing w/ report that has no subtable report
'pivotByColumn' => 'nb_visits',
'pivotByColumnLimit' => -1
));
}
public function testPivotByParamWorksWithReportWhoseSubtableIsSelf()
{
$this->assertApiResponseEqualsExpected("Actions.getPageUrls", array(
'idSite' => self::$fixture->idSite,
'date' => Date::factory(self::$fixture->dateTime)->toString(),
'period' => 'week',
'pivotBy' => 'Actions.PageUrl',
'pivotByColumn' => 'nb_hits',
'pivotByColumnLimit' => -1
));
}
public function testPivotByParamWorksWithColumnLimiting()
{
$this->assertApiResponseEqualsExpected("Referrers.getKeywords", array(
'idSite' => self::$fixture->idSite,
'date' => Date::factory(self::$fixture->dateTime)->toString(),
'period' => 'week',
'pivotBy' => 'UserCountry.City',
'pivotByColumn' => 'nb_visits',
'pivotByColumnLimit' => 2
));
}
public function testPivotByParamWorksWithJsonOutput()
{
$this->assertApiResponseEqualsExpected("Referrers.getKeywords", array(
'idSite' => self::$fixture->idSite,
'date' => Date::factory(self::$fixture->dateTime)->toString(),
'period' => 'week',
'format' => 'json',
'pivotBy' => 'UserCountry.City',
'pivotByColumn' => 'nb_visits',
'pivotByColumnLimit' => -1
));
}
public function testPivotByParamWorksWithCsvOutput()
{
$this->assertApiResponseEqualsExpected("Referrers.getKeywords", array(
'idSite' => self::$fixture->idSite,
'date' => Date::factory(self::$fixture->dateTime)->toString(),
'period' => 'week',
'format' => 'csv',
'pivotBy' => 'UserCountry.City',
'pivotByColumn' => 'nb_visits',
'pivotByColumnLimit' => -1
));
}
public function testPivotByParamPlaysNiceWithDataTableMaps()
{
$this->assertApiResponseEqualsExpected("Referrers.getKeywords", array(
'idSite' => 'all',
'date' => '2010-01-01,2010-01-07',
'period' => 'day',
'pivotBy' => 'UserCountry.City',
'pivotByColumn' => 'nb_visits',
'pivotByColumnLimit' => -1
));
}
}
PivotByQueryParamTest::$fixture = new ManyVisitsWithMockLocationProvider();