2016-07-31 17:10:16 +03:00
|
|
|
<?php
|
2019-10-05 18:26:10 +03:00
|
|
|
|
2017-10-12 11:13:20 +03:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2018-05-03 19:34:45 +03:00
|
|
|
namespace ShlinkioTest\Shlink\Rest\Action\Visit;
|
2016-07-31 17:10:16 +03:00
|
|
|
|
2018-09-29 13:52:32 +03:00
|
|
|
use Cake\Chronos\Chronos;
|
2021-01-03 19:48:32 +03:00
|
|
|
use Laminas\Diactoros\ServerRequestFactory;
|
2021-01-23 16:37:34 +03:00
|
|
|
use Pagerfanta\Adapter\ArrayAdapter;
|
2017-03-24 22:34:18 +03:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-07-31 17:10:16 +03:00
|
|
|
use Prophecy\Argument;
|
2020-11-02 13:50:19 +03:00
|
|
|
use Prophecy\PhpUnit\ProphecyTrait;
|
2016-07-31 17:10:16 +03:00
|
|
|
use Prophecy\Prophecy\ObjectProphecy;
|
2021-01-03 19:48:32 +03:00
|
|
|
use Psr\Http\Message\ServerRequestInterface;
|
2021-01-23 16:37:34 +03:00
|
|
|
use Shlinkio\Shlink\Common\Paginator\Paginator;
|
2016-07-31 17:10:16 +03:00
|
|
|
use Shlinkio\Shlink\Common\Util\DateRange;
|
2020-02-01 19:34:16 +03:00
|
|
|
use Shlinkio\Shlink\Core\Model\ShortUrlIdentifier;
|
2018-11-27 23:09:27 +03:00
|
|
|
use Shlinkio\Shlink\Core\Model\VisitsParams;
|
2016-07-31 17:10:16 +03:00
|
|
|
use Shlinkio\Shlink\Core\Service\VisitsTracker;
|
2020-05-01 12:17:07 +03:00
|
|
|
use Shlinkio\Shlink\Rest\Action\Visit\ShortUrlVisitsAction;
|
2021-01-03 19:48:32 +03:00
|
|
|
use Shlinkio\Shlink\Rest\Entity\ApiKey;
|
2016-07-31 17:10:16 +03:00
|
|
|
|
2020-05-01 12:17:07 +03:00
|
|
|
class ShortUrlVisitsActionTest extends TestCase
|
2016-07-31 17:10:16 +03:00
|
|
|
{
|
2020-11-02 13:50:19 +03:00
|
|
|
use ProphecyTrait;
|
|
|
|
|
2020-05-01 12:17:07 +03:00
|
|
|
private ShortUrlVisitsAction $action;
|
2019-12-30 00:48:40 +03:00
|
|
|
private ObjectProphecy $visitsTracker;
|
2016-07-31 17:10:16 +03:00
|
|
|
|
2019-02-16 12:53:45 +03:00
|
|
|
public function setUp(): void
|
2016-07-31 17:10:16 +03:00
|
|
|
{
|
|
|
|
$this->visitsTracker = $this->prophesize(VisitsTracker::class);
|
2020-05-01 12:17:07 +03:00
|
|
|
$this->action = new ShortUrlVisitsAction($this->visitsTracker->reveal());
|
2016-07-31 17:10:16 +03:00
|
|
|
}
|
|
|
|
|
2019-02-17 22:28:34 +03:00
|
|
|
/** @test */
|
2019-11-20 22:58:16 +03:00
|
|
|
public function providingCorrectShortCodeReturnsVisits(): void
|
2016-07-31 17:10:16 +03:00
|
|
|
{
|
|
|
|
$shortCode = 'abc123';
|
2021-01-03 19:48:32 +03:00
|
|
|
$this->visitsTracker->info(
|
|
|
|
new ShortUrlIdentifier($shortCode),
|
|
|
|
Argument::type(VisitsParams::class),
|
|
|
|
Argument::type(ApiKey::class),
|
|
|
|
)->willReturn(new Paginator(new ArrayAdapter([])))
|
|
|
|
->shouldBeCalledOnce();
|
2016-07-31 17:10:16 +03:00
|
|
|
|
2021-01-03 19:48:32 +03:00
|
|
|
$response = $this->action->handle($this->requestWithApiKey()->withAttribute('shortCode', $shortCode));
|
2020-10-04 01:35:14 +03:00
|
|
|
self::assertEquals(200, $response->getStatusCode());
|
2016-07-31 17:10:16 +03:00
|
|
|
}
|
|
|
|
|
2019-02-17 22:28:34 +03:00
|
|
|
/** @test */
|
2019-11-20 22:58:16 +03:00
|
|
|
public function paramsAreReadFromQuery(): void
|
2016-07-31 17:10:16 +03:00
|
|
|
{
|
|
|
|
$shortCode = 'abc123';
|
2020-02-01 19:34:16 +03:00
|
|
|
$this->visitsTracker->info(new ShortUrlIdentifier($shortCode), new VisitsParams(
|
2018-11-29 10:02:22 +03:00
|
|
|
new DateRange(null, Chronos::parse('2016-01-01 00:00:00')),
|
|
|
|
3,
|
2020-01-01 22:48:31 +03:00
|
|
|
10,
|
2021-01-03 19:48:32 +03:00
|
|
|
), Argument::type(ApiKey::class))
|
2018-11-28 22:39:08 +03:00
|
|
|
->willReturn(new Paginator(new ArrayAdapter([])))
|
2018-11-11 15:18:21 +03:00
|
|
|
->shouldBeCalledOnce();
|
2016-07-31 17:10:16 +03:00
|
|
|
|
2018-03-26 20:02:41 +03:00
|
|
|
$response = $this->action->handle(
|
2021-01-03 19:48:32 +03:00
|
|
|
$this->requestWithApiKey()->withAttribute('shortCode', $shortCode)
|
|
|
|
->withQueryParams([
|
|
|
|
'endDate' => '2016-01-01 00:00:00',
|
|
|
|
'page' => '3',
|
|
|
|
'itemsPerPage' => '10',
|
|
|
|
]),
|
2016-07-31 17:10:16 +03:00
|
|
|
);
|
2020-10-04 01:35:14 +03:00
|
|
|
self::assertEquals(200, $response->getStatusCode());
|
2016-07-31 17:10:16 +03:00
|
|
|
}
|
2021-01-03 19:48:32 +03:00
|
|
|
|
|
|
|
private function requestWithApiKey(): ServerRequestInterface
|
|
|
|
{
|
|
|
|
return ServerRequestFactory::fromGlobals()->withAttribute(ApiKey::class, new ApiKey());
|
|
|
|
}
|
2016-07-31 17:10:16 +03:00
|
|
|
}
|