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;
|
2023-02-09 13:42:18 -06:00
|
|
|
use PHPUnit\Framework\Attributes\Test;
|
2022-10-23 15:23:08 -05:00
|
|
|
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;
|
2021-01-04 04:27:55 -06:00
|
|
|
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
|
|
|
|
2022-09-11 05:02:49 -05:00
|
|
|
protected function setUp(): void
|
2020-05-01 04:57:46 -05:00
|
|
|
{
|
2022-10-23 15:23:08 -05:00
|
|
|
$this->helper = $this->createMock(VisitsStatsHelperInterface::class);
|
|
|
|
$this->action = new GlobalVisitsAction($this->helper);
|
2020-05-01 04:57:46 -05:00
|
|
|
}
|
|
|
|
|
2023-02-09 13:42:18 -06:00
|
|
|
#[Test]
|
2020-05-01 04:57:46 -05:00
|
|
|
public function statsAreReturnedFromHelper(): void
|
|
|
|
{
|
2021-03-14 03:59:35 -05:00
|
|
|
$apiKey = ApiKey::create();
|
2021-02-08 15:44:58 -06:00
|
|
|
$stats = new VisitsStats(5, 3);
|
2022-10-23 15:23:08 -05:00
|
|
|
$this->helper->expects($this->once())->method('getVisitsStats')->with($apiKey)->willReturn($stats);
|
2020-05-01 04:57:46 -05:00
|
|
|
|
|
|
|
/** @var JsonResponse $resp */
|
2021-01-04 04:27:55 -06:00
|
|
|
$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
|
|
|
}
|
|
|
|
}
|