1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-22 06:57:53 +00:00
Files
matomo/plugins/BulkTracking/tests/Unit/ResponseTest.php
Stefan Giehl 1f69c5cdd4 Use mocks for testing instead of inherited classes with overwritten methods (#22277)
* Use mock instead of overwriting class method

* Use mock instead of overwriting class method

* Use mock instead of overwriting class method
2024-06-03 17:00:32 +02:00

122 خطوط
4.0 KiB
PHP

<?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;
}
}