shlink/module/Rest/test/Action/Visit/GlobalVisitsActionTest.php

42 lines
1.3 KiB
PHP
Raw Normal View History

2020-05-01 04:57:46 -05:00
<?php
declare(strict_types=1);
namespace ShlinkioTest\Shlink\Rest\Action\Visit;
use Laminas\Diactoros\Response\JsonResponse;
use Laminas\Diactoros\ServerRequestFactory;
use PHPUnit\Framework\Attributes\Test;
use PHPUnit\Framework\MockObject\MockObject;
2020-05-01 04:57:46 -05:00
use PHPUnit\Framework\TestCase;
use Shlinkio\Shlink\Core\Visit\Model\VisitsStats;
use Shlinkio\Shlink\Core\Visit\VisitsStatsHelperInterface;
use Shlinkio\Shlink\Rest\Action\Visit\GlobalVisitsAction;
use Shlinkio\Shlink\Rest\Entity\ApiKey;
2020-05-01 04:57:46 -05:00
class GlobalVisitsActionTest extends TestCase
{
private GlobalVisitsAction $action;
2022-10-24 12:53:13 -05:00
private MockObject & VisitsStatsHelperInterface $helper;
2020-05-01 04:57:46 -05:00
protected function setUp(): void
2020-05-01 04:57:46 -05:00
{
$this->helper = $this->createMock(VisitsStatsHelperInterface::class);
$this->action = new GlobalVisitsAction($this->helper);
2020-05-01 04:57:46 -05:00
}
#[Test]
2020-05-01 04:57:46 -05:00
public function statsAreReturnedFromHelper(): void
{
$apiKey = ApiKey::create();
$stats = new VisitsStats(5, 3);
$this->helper->expects($this->once())->method('getVisitsStats')->with($apiKey)->willReturn($stats);
2020-05-01 04:57:46 -05:00
/** @var JsonResponse $resp */
$resp = $this->action->handle(ServerRequestFactory::fromGlobals()->withAttribute(ApiKey::class, $apiKey));
2020-05-01 04:57:46 -05:00
$payload = $resp->getPayload();
2020-10-03 17:35:14 -05:00
self::assertEquals($payload, ['visits' => $stats]);
2020-05-01 04:57:46 -05:00
}
}