-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathAutoSuggestAPITest.php
More file actions
227 lines (189 loc) · 6.96 KB
/
AutoSuggestAPITest.php
File metadata and controls
227 lines (189 loc) · 6.96 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\CustomVariables\tests\System;
use Piwik\API\Request;
use Piwik\ArchiveProcessor\Rules;
use Piwik\Cache as PiwikCache;
use Piwik\Date;
use Piwik\Option;
use Piwik\Plugins\API\API;
use Piwik\Plugins\CustomVariables\Model;
use Piwik\Tests\Fixtures\ManyVisitsWithGeoIPAndEcommerce;
use Piwik\Tests\Framework\TestCase\SystemTestCase;
use Piwik\Tracker\Cache;
use Piwik\Version;
/**
* testing the auto suggest API for all known segments
*
* @group CustomVariables
* @group AutoSuggestAPITest
* @group Plugins
*/
class AutoSuggestAPITest extends SystemTestCase
{
public static $fixture = null; // initialized below class definition
private static $hasArchivedData = false;
/**
* @dataProvider getApiForTesting
*/
public function testApi($api, $params)
{
// Refresh cache for CustomVariables\Model
Cache::clearCacheGeneral();
$this->runApiTests($api, $params);
}
public function getApiForTesting()
{
$idSite = self::$fixture->idSite;
$segments = self::getSegmentsMetadata();
$apiForTesting = [];
foreach ($segments as $segment) {
$apiForTesting[] = $this->getApiForTestingForSegment($idSite, $segment);
}
$xmlFieldsToRemove = ['latitude', 'longitude'];
if (version_compare(Version::VERSION, '5.5.0-b1', '<')) {
// In Matomo 5.5 ai referrer had been added
$xmlFieldsToRemove = array_merge($xmlFieldsToRemove, ['referrerAIAssistantUrl', 'referrerAIAssistantIcon']);
}
$apiForTesting[] = [
'Live.getLastVisitsDetails',
[
'idSite' => $idSite,
'date' => '1998-07-12,today',
'period' => 'range',
'otherRequestParameters' => ['filter_limit' => 1000],
'xmlFieldsToRemove' => $xmlFieldsToRemove,
'testSuffix' => version_compare(Version::VERSION, '5.1.0-b4', '<') ? '_old' : '',
]
];
return $apiForTesting;
}
/**
* @dataProvider getApiForTestingBrowserArchivingDisabled
*/
public function testApiBrowserArchivingDisabled($api, $params)
{
if (!self::$hasArchivedData) {
self::$hasArchivedData = true;
// need to make sure data is archived before disabling the archiving
Request::processRequest('API.get', [
'date' => '2018-01-10', 'period' => 'year', 'idSite' => $params['idSite'],
'trigger' => 'archivephp'
]);
}
// Refresh cache for CustomVariables\Model
Cache::clearCacheGeneral();
// disable browser archiving so the APIs are used
Option::set(Rules::OPTION_BROWSER_TRIGGER_ARCHIVING, 0);
$this->runApiTests($api, $params);
Option::set(Rules::OPTION_BROWSER_TRIGGER_ARCHIVING, 1);
}
public function getApiForTestingBrowserArchivingDisabled()
{
$idSite = self::$fixture->idSite;
$segments = self::getSegmentsMetadata();
$apiForTesting = [];
foreach ($segments as $segment) {
$apiForTesting[] = $this->getApiForTestingForSegment($idSite, $segment);
}
return $apiForTesting;
}
/**
* @param $idSite
* @param $segment
* @return array
*/
protected function getApiForTestingForSegment($idSite, $segment)
{
return [
'API.getSuggestedValuesForSegment',
[
'idSite' => $idSite,
'testSuffix' => '_' . $segment,
'otherRequestParameters' => ['segmentName' => $segment]
]
];
}
/**
* @depends testApi
* @dataProvider getAnotherApiForTesting
*/
public function testAnotherApi($api, $params)
{
// Get the top segment value
$request = new Request(
sprintf(
'method=API.getSuggestedValuesForSegment&segmentName=%s&idSite=%s&format=json',
$params['segmentToComplete'],
$params['idSite']
)
);
$response = json_decode($request->process(), true);
$this->assertApiResponseHasNoError($response);
$topSegmentValue = @$response[0];
if (empty($topSegmentValue)) {
$this->markTestIncomplete('No segment value available for ' . $params['segmentToComplete']);
}
// Now build the segment request
$segmentValue = rawurlencode(html_entity_decode($topSegmentValue, ENT_COMPAT | ENT_HTML401, 'UTF-8'));
$params['segment'] = $params['segmentToComplete'] . '==' . $segmentValue;
unset($params['segmentToComplete']);
$this->runApiTests($api, $params);
}
public function getAnotherApiForTesting()
{
$segments = self::getSegmentsMetadata();
$apiForTesting = [];
foreach ($segments as $segment) {
$apiForTesting[] = ['VisitsSummary.get',
['idSite' => self::$fixture->idSite,
'date' => date("Y-m-d", strtotime(self::$fixture->dateTime)) . ',today',
'period' => 'range',
'testSuffix' => '_' . $segment,
'segmentToComplete' => $segment]];
}
return $apiForTesting;
}
public static function getSegmentsMetadata()
{
// Refresh cache for CustomVariables\Model
Cache::clearCacheGeneral();
PiwikCache::getTransientCache()->flushAll();
$segments = [];
// add CustomVariables manually since the data provider may not have access to the DB
for ($i = 1; $i != Model::DEFAULT_CUSTOM_VAR_COUNT + 1; ++$i) {
$segments = array_merge($segments, self::getCustomVariableSegments($i));
}
$segments = array_merge($segments, self::getCustomVariableSegments());
return $segments;
}
private static function getCustomVariableSegments($columnIndex = null)
{
$result = [
'customVariableName',
'customVariableValue',
'customVariablePageName',
'customVariablePageValue',
];
if ($columnIndex !== null) {
foreach ($result as &$name) {
$name = $name . $columnIndex;
}
}
return $result;
}
public static function getPathToTestDirectory()
{
return dirname(__FILE__);
}
}
$date = mktime(0, 0, 0, 1, 1, 2018);
$lookBack = ceil((time() - $date) / 86400);
API::$_autoSuggestLookBack = $lookBack;
AutoSuggestAPITest::$fixture = new ManyVisitsWithGeoIPAndEcommerce();
AutoSuggestAPITest::$fixture->dateTime = Date::factory($date)->getDatetime();