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
|
<?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\Integration;
use Piwik\Exception\InvalidRequestParameterException;
use Piwik\Exception\UnexpectedWebsiteFoundException;
use Piwik\Plugins\BulkTracking\tests\Mock\TrackerResponse;
use Piwik\Tests\Framework\Fixture;
use Piwik\Tests\Framework\Mock\Tracker\ScheduledTasksRunner;
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;
use Piwik\Tracker;
use Piwik\Plugins\BulkTracking\Tracker\Handler;
use Piwik\Tests\Framework\Mock\Tracker\RequestSet;
use Exception;
/**
* @group HandlerTest
* @group Handler
* @group Tracker
*/
class HandlerTest extends IntegrationTestCase
{
/**
* @var Handler
*/
private $handler;
/**
* @var TrackerResponse
*/
private $response;
/**
* @var Tracker
*/
private $tracker;
/**
* @var RequestSet
*/
private $requestSet;
public function setUp(): void
{
parent::setUp();
Fixture::createWebsite('2014-01-01 00:00:00');
Tracker\Cache::deleteTrackerCache();
$this->response = new TrackerResponse();
$this->handler = new Handler();
$this->handler->setResponse($this->response);
$this->tracker = new Tracker();
$this->requestSet = new RequestSet();
}
public function testInitShouldInitiateResponseInstance()
{
$this->handler->init($this->tracker, $this->requestSet);
$this->assertTrue($this->response->isInit);
$this->assertFalse($this->response->isResponseOutput);
$this->assertFalse($this->response->isSend);
}
public function testFinishShouldOutputAndSendResponse()
{
$response = $this->handler->finish($this->tracker, $this->requestSet);
$this->assertEquals('My Dummy Content', $response);
$this->assertFalse($this->response->isInit);
$this->assertFalse($this->response->isExceptionOutput);
$this->assertTrue($this->response->isResponseOutput);
$this->assertTrue($this->response->isSend);
}
public function testOnExceptionShouldOutputAndSendResponse()
{
$this->executeOnException($this->buildException());
$this->assertFalse($this->response->isInit);
$this->assertFalse($this->response->isResponseOutput);
$this->assertTrue($this->response->isExceptionOutput);
$this->assertFalse($this->response->isSend);
}
public function testOnExceptionShouldPassExceptionToResponse()
{
$exception = $this->buildException();
$this->executeOnException($exception);
$this->assertSame($exception, $this->response->exception);
$this->assertSame(500, $this->response->statusCode);
}
public function testOnExceptionShouldSendStatusCode400IfUnexpectedWebsite()
{
$this->executeOnException(new UnexpectedWebsiteFoundException('test'));
$this->assertSame(400, $this->response->statusCode);
}
public function testOnExceptionShouldSendStatusCode400IfInvalidRequestParameterException()
{
$this->executeOnException(new InvalidRequestParameterException('test'));
$this->assertSame(400, $this->response->statusCode);
}
public function testOnExceptionShouldNotRethrowAnException()
{
self::expectNotToPerformAssertions();
$exception = $this->buildException();
$this->handler->onException($this->tracker, $this->requestSet, $exception);
}
public function testOnAllRequestsTrackedShouldNeverTriggerScheduledTasksEvenIfEnabled()
{
$runner = new ScheduledTasksRunner();
$runner->shouldRun = true;
$this->handler->setScheduledTasksRunner($runner);
$this->handler->onAllRequestsTracked($this->tracker, $this->requestSet);
$this->assertFalse($runner->ranScheduledTasks);
}
public function testProcessShouldTrackAllSetRequests()
{
$this->assertSame(0, $this->tracker->getCountOfLoggedRequests());
$this->requestSet->setRequests(array(
array('idsite' => 1, 'url' => 'http://localhost/foo?bar'),
array('idsite' => 1, 'url' => 'http://localhost'),
));
$this->handler->process($this->tracker, $this->requestSet);
$this->assertSame(2, $this->tracker->getCountOfLoggedRequests());
}
private function buildException()
{
return new \Exception('MyMessage', 292);
}
private function executeOnException(Exception $exception)
{
try {
$this->handler->onException($this->tracker, $this->requestSet, $exception);
} catch (Exception $e) {
}
}
}
|