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
|
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\BulkTracking\tests\Unit;
use Piwik\Plugins\BulkTracking\Tracker\Response;
use Piwik\Tests\Framework\Mock\Tracker;
use Piwik\Tests\Framework\TestCase\UnitTestCase;
use Exception;
/**
* @group BulkTracking
* @group ResponseTest
* @group Plugins
*/
class ResponseTest extends UnitTestCase
{
/**
* @var Response
*/
private $response;
public function setUp(): void
{
parent::setUp();
$mock = self::getMockBuilder(Response::class)->onlyMethods(['logExceptionToErrorLog']);
$this->response = $mock->getMock();
$this->response->init(new Tracker());
}
public function testOutputExceptionShouldOutputBulkResponse()
{
$tracker = $this->getTrackerWithCountedRequests();
$this->response->outputException($tracker, new Exception('My Custom Message'), 400);
$content = $this->response->getOutput();
$this->assertEquals('{"status":"error","tracked":5,"invalid":0}', $content);
}
public function testOutputExceptionShouldOutputDebugMessageIfEnabled()
{
$tracker = $this->getTrackerWithCountedRequests();
$tracker->enableDebugMode();
$this->response->outputException($tracker, new Exception('My Custom Message'), 400);
$content = $this->response->getOutput();
$this->assertStringStartsWith('{"status":"error","tracked":5,"invalid":0,"message":"My Custom Message\n', $content);
}
public function testOutputResponseShouldOutputBulkResponse()
{
$tracker = $this->getTrackerWithCountedRequests();
$this->response->outputResponse($tracker);
$content = $this->response->getOutput();
$this->assertEquals('{"status":"success","tracked":5,"invalid":0}', $content);
}
public function testOutputResponseShouldNotOutputAnythingIfExceptionResponseAlreadySent()
{
$tracker = $this->getTrackerWithCountedRequests();
$this->response->outputException($tracker, new Exception('My Custom Message'), 400);
$this->response->outputResponse($tracker);
$content = $this->response->getOutput();
$this->assertEquals('{"status":"error","tracked":5,"invalid":0}', $content);
}
public function testOutputResponseShouldIncludeInvalidIndicesIfExceptionSetAndRequestAuthenticated()
{
$tracker = $this->getTrackerWithCountedRequests();
$this->response->setInvalidRequests(array(10, 20));
$this->response->setIsAuthenticated(true);
$this->response->outputException($tracker, new Exception('My Custom Message'), 400);
$content = $this->response->getOutput();
$this->assertEquals('{"status":"error","tracked":5,"invalid":2,"invalid_indices":[10,20]}', $content);
}
public function testOutputResponseShouldOutputInvalidRequestsIfInvalidIndicesSetAndRequestNotAuthenticated()
{
$tracker = $this->getTrackerWithCountedRequests();
$this->response->setInvalidRequests(array(5, 63, 72));
$this->response->outputResponse($tracker);
$content = $this->response->getOutput();
$this->assertEquals('{"status":"success","tracked":5,"invalid":3}', $content);
}
public function testOutputResponseShouldOutputInvalidRequestsIfInvalidIndicesSetAndRequestAuthenticated()
{
$tracker = $this->getTrackerWithCountedRequests();
$this->response->setInvalidRequests(array(5, 63, 72));
$this->response->setIsAuthenticated(true);
$this->response->outputResponse($tracker);
$content = $this->response->getOutput();
$this->assertEquals('{"status":"success","tracked":5,"invalid":3,"invalid_indices":[5,63,72]}', $content);
}
private function getTrackerWithCountedRequests()
{
$tracker = new Tracker();
$tracker->setCountOfLoggedRequests(5);
return $tracker;
}
}
|