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
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
<?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\Impl;
use Piwik\API\Request;
use Piwik\Tests\IntegrationTestCase;
use PHPUnit_Framework_Assert as Asserts;
use Exception;
/**
* Utility class used to obtain and process API responses for API tests.
*/
class TestRequestResponse
{
private $processedResponseText;
private $params;
private $requestUrl;
public function __construct($apiResponse, $params, $requestUrl)
{
$this->params = $params;
$this->requestUrl = $requestUrl;
$apiResponse = (string) $apiResponse;
$this->processedResponseText = $this->normalizeApiResponse($apiResponse);
}
public function getResponseText()
{
return $this->processedResponseText;
}
public function save($path)
{
file_put_contents($path, $this->processedResponseText);
}
public static function loadFromFile($path, $params, $requestUrl)
{
$contents = @file_get_contents($path);
if (empty($contents)) {
throw new Exception("$path does not exist");
}
return new TestRequestResponse($contents, $params, $requestUrl);
}
public static function loadFromApi($params, $requestUrl)
{
$testRequest = new Request($requestUrl);
// Cast as string is important. For example when calling
// with format=original, objects or php arrays can be returned.
$response = (string) $testRequest->process();
return new TestRequestResponse($response, $params, $requestUrl);
}
public static function assertEquals(TestRequestResponse $expected, TestRequestResponse $actual, $message = false)
{
$expectedText = $expected->getResponseText();
$actualText = $actual->getResponseText();
if ($expected->requestUrl['format'] == 'xml') {
Asserts::assertXmlStringEqualsXmlString($expectedText, $actualText, $message);
} else {
Asserts::assertEquals(strlen($expectedText), strlen($actualText), $message);
Asserts::assertEquals($expectedText, $actualText, $message);
}
}
private function normalizeApiResponse($apiResponse)
{
$apiResponse = $this->removeAllIdsFromXml($apiResponse);
if ($this->shouldDeleteLiveDates()) {
$apiResponse = $this->removeAllLiveDatesFromXml($apiResponse);
} else if ($this->requestHasNonDeterministicDate()) {
// If date=lastN the <prettyDate> element will change each day, we remove XML element before comparison
if ($this->requestUrl['method'] == 'API.getProcessedReport') {
$apiResponse = $this->removeXmlElement($apiResponse, 'prettyDate');
}
$apiResponse = $this->removeXmlElement($apiResponse, 'visitServerHour');
$regex = "/date=[-0-9,%Ca-z]+/"; // need to remove %2C which is encoded ,
$apiResponse = preg_replace($regex, 'date=', $apiResponse);
}
// if idSubtable is in request URL, make sure idSubtable values are not in any urls
if (!empty($this->requestUrl['idSubtable'])) {
$apiResponse = $this->removeIdSubtableParamFromUrlsInResponse($apiResponse);
}
$apiResponse = $this->normalizePdfContent($apiResponse);
$apiResponse = $this->removeXmlFields($apiResponse);
$apiResponse = $this->normalizeDecimalFields($apiResponse);
$apiResponse = $this->normalizeEncodingPhp533($apiResponse);
$apiResponse = $this->normalizeSpaces($apiResponse);
private function normalizeEncodingPhp533($apiResponse)
{
if(!IntegrationTestCase::isPhpVersion53()
|| strpos($apiResponse, '<result') === false) {
return $apiResponse;
private function removeIdSubtableParamFromUrlsInResponse($apiResponse)
{
return preg_replace("/idSubtable=[0-9]+/", 'idSubtable=', $apiResponse);
}
private function removeAllIdsFromXml($apiResponse)
{
$toRemove = array(
'visitorId',
'nextVisitorId',
'previousVisitorId',
);
return $this->removeXmlFields($apiResponse, $toRemove);
}
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
private function removeAllLiveDatesFromXml($apiResponse)
{
$toRemove = array(
'serverDate',
'firstActionTimestamp',
'lastActionTimestamp',
'lastActionDateTime',
'serverTimestamp',
'serverTimePretty',
'serverDatePretty',
'serverDatePrettyFirstAction',
'serverTimePrettyFirstAction',
'goalTimePretty',
'serverTimePretty',
'visitServerHour',
'date',
'prettyDate',
'serverDateTimePrettyFirstAction'
);
return $this->removeXmlFields($apiResponse, $toRemove);
}
/**
* Removes content from PDF binary the content that changes with the datetime or other random Ids
*/
private function normalizePdfContent($response)
{
// normalize date markups and document ID in pdf files :
// - /LastModified (D:20120820204023+00'00')
// - /CreationDate (D:20120820202226+00'00')
// - /ModDate (D:20120820202226+00'00')
// - /M (D:20120820202226+00'00')
// - /ID [ <0f5cc387dc28c0e13e682197f485fe65> <0f5cc387dc28c0e13e682197f485fe65> ]
$response = preg_replace('/\(D:[0-9]{14}/', '(D:19700101000000', $response);
$response = preg_replace('/\/ID \[ <.*> ]/', '', $response);
$response = preg_replace('/\/id:\[ <.*> ]/', '', $response);
$response = $this->removeXmlElement($response, "xmp:CreateDate");
$response = $this->removeXmlElement($response, "xmp:ModifyDate");
$response = $this->removeXmlElement($response, "xmp:MetadataDate");
$response = $this->removeXmlElement($response, "xmpMM:DocumentID");
$response = $this->removeXmlElement($response, "xmpMM:InstanceID");
return $response;
}
private function removeXmlFields($input, $fieldsToRemove = false)
{
if ($fieldsToRemove === false) {
$fieldsToRemove = @$this->params['xmlFieldsToRemove'];
}
$fieldsToRemove[] = 'idsubdatatable';
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
foreach ($fieldsToRemove as $xml) {
$input = $this->removeXmlElement($input, $xml);
}
return $input;
}
private function removeXmlElement($input, $xmlElement, $testNotSmallAfter = true)
{
// Only raise error if there was some data before
$testNotSmallAfter = strlen($input > 100) && $testNotSmallAfter;
$oldInput = $input;
$input = preg_replace('/(<' . $xmlElement . '>.+?<\/' . $xmlElement . '>)/', '', $input);
// check we didn't delete the whole string
if ($testNotSmallAfter && $input != $oldInput) {
$this->assertTrue(strlen($input) > 100);
}
return $input;
}
private function requestHasNonDeterministicDate()
{
if (empty($this->requestUrl['date'])) {
return false;
}
$dateTime = $this->requestUrl['date'];
return strpos($dateTime, 'last') !== false
|| strpos($dateTime, 'today') !== false
|| strpos($dateTime, 'now') !== false;
}
private function shouldDeleteLiveIds()
{
return empty($this->params['keepLiveIds']);
private function shouldDeleteLiveDates()
{
return empty($this->params['keepLiveDates'])
&& ($this->requestUrl['method'] == 'Live.getLastVisits'
|| $this->requestUrl['method'] == 'Live.getLastVisitsDetails'
|| $this->requestUrl['method'] == 'Live.getVisitorProfile');
}
private function normalizeDecimalFields($response)
{
// Do not test for TRUNCATE(SUM()) returning .00 on mysqli since this is not working
// http://bugs.php.net/bug.php?id=54508
$response = str_replace('.000000</l', '</l', $response); //lat/long
$response = str_replace('.00</revenue>', '</revenue>', $response);
$response = str_replace('.1</revenue>', '</revenue>', $response);
$response = str_replace('.11</revenue>', '</revenue>', $response);
return $response;
}
mattab
a validé
private function normalizeSpaces($apiResponse)
mattab
a validé
{
if (strpos($this->requestUrl['format'], 'json') === 0) {
$apiResponse = str_replace(' ', '\u00a0', $apiResponse);
}
return $apiResponse;
}