shlink/module/CLI/test/Command/ShortUrl/GetShortUrlVisitsCommandTest.php

130 lines
4.5 KiB
PHP
Raw Normal View History

2016-07-30 14:30:30 +02:00
<?php
2019-10-05 17:26:10 +02:00
2017-10-12 10:13:20 +02:00
declare(strict_types=1);
namespace ShlinkioTest\Shlink\CLI\Command\ShortUrl;
2016-07-30 14:30:30 +02:00
use Cake\Chronos\Chronos;
use Pagerfanta\Adapter\ArrayAdapter;
2017-03-24 20:34:18 +01:00
use PHPUnit\Framework\TestCase;
2016-07-30 14:30:30 +02:00
use Prophecy\Argument;
use Prophecy\Prophecy\ObjectProphecy;
2022-05-23 20:47:37 +02:00
use Shlinkio\Shlink\CLI\Command\ShortUrl\GetShortUrlVisitsCommand;
use Shlinkio\Shlink\Common\Paginator\Paginator;
2016-07-30 14:30:30 +02:00
use Shlinkio\Shlink\Common\Util\DateRange;
use Shlinkio\Shlink\Core\ShortUrl\Entity\ShortUrl;
use Shlinkio\Shlink\Core\ShortUrl\Model\ShortUrlIdentifier;
use Shlinkio\Shlink\Core\Visit\Entity\Visit;
use Shlinkio\Shlink\Core\Visit\Entity\VisitLocation;
use Shlinkio\Shlink\Core\Visit\Model\Visitor;
use Shlinkio\Shlink\Core\Visit\Model\VisitsParams;
use Shlinkio\Shlink\Core\Visit\VisitsStatsHelperInterface;
use Shlinkio\Shlink\IpGeolocation\Model\Location;
use ShlinkioTest\Shlink\CLI\CliTestUtilsTrait;
2016-07-30 14:30:30 +02:00
use Symfony\Component\Console\Tester\CommandTester;
2022-05-24 17:43:13 +02:00
use function Shlinkio\Shlink\Common\buildDateRange;
use function sprintf;
2022-05-24 17:43:13 +02:00
class GetShortUrlVisitsCommandTest extends TestCase
2016-07-30 14:30:30 +02:00
{
use CliTestUtilsTrait;
2020-11-02 11:50:19 +01:00
2019-12-29 22:27:00 +01:00
private CommandTester $commandTester;
private ObjectProphecy $visitsHelper;
2016-07-30 14:30:30 +02:00
protected function setUp(): void
2016-07-30 14:30:30 +02:00
{
$this->visitsHelper = $this->prophesize(VisitsStatsHelperInterface::class);
2022-05-23 20:47:37 +02:00
$command = new GetShortUrlVisitsCommand($this->visitsHelper->reveal());
$this->commandTester = $this->testerForCommand($command);
2016-07-30 14:30:30 +02:00
}
2019-02-17 20:28:34 +01:00
/** @test */
public function noDateFlagsTriesToListWithoutDateRange(): void
2016-07-30 14:30:30 +02:00
{
$shortCode = 'abc123';
$this->visitsHelper->visitsForShortUrl(
ShortUrlIdentifier::fromShortCodeAndDomain($shortCode),
new VisitsParams(DateRange::allTime()),
)
->willReturn(new Paginator(new ArrayAdapter([])))
->shouldBeCalledOnce();
2016-07-30 14:30:30 +02:00
$this->commandTester->execute(['shortCode' => $shortCode]);
2016-07-30 14:30:30 +02:00
}
2019-02-17 20:28:34 +01:00
/** @test */
public function providingDateFlagsTheListGetsFiltered(): void
2016-07-30 14:30:30 +02:00
{
$shortCode = 'abc123';
$startDate = '2016-01-01';
$endDate = '2016-02-01';
$this->visitsHelper->visitsForShortUrl(
ShortUrlIdentifier::fromShortCodeAndDomain($shortCode),
2022-05-24 17:43:13 +02:00
new VisitsParams(buildDateRange(Chronos::parse($startDate), Chronos::parse($endDate))),
)
2018-11-28 20:39:08 +01:00
->willReturn(new Paginator(new ArrayAdapter([])))
2018-11-11 13:18:21 +01:00
->shouldBeCalledOnce();
2016-07-30 14:30:30 +02:00
$this->commandTester->execute([
'shortCode' => $shortCode,
'--start-date' => $startDate,
'--end-date' => $endDate,
2016-07-30 14:30:30 +02:00
]);
}
/** @test */
public function providingInvalidDatesPrintsWarning(): void
{
$shortCode = 'abc123';
$startDate = 'foo';
$info = $this->visitsHelper->visitsForShortUrl(
ShortUrlIdentifier::fromShortCodeAndDomain($shortCode),
new VisitsParams(DateRange::allTime()),
)->willReturn(new Paginator(new ArrayAdapter([])));
$this->commandTester->execute([
'shortCode' => $shortCode,
'--start-date' => $startDate,
]);
$output = $this->commandTester->getDisplay();
$info->shouldHaveBeenCalledOnce();
2020-10-04 00:35:14 +02:00
self::assertStringContainsString(
sprintf('Ignored provided "start-date" since its value "%s" is not a valid date', $startDate),
2020-01-01 20:48:31 +01:00
$output,
);
}
/** @test */
public function outputIsProperlyGenerated(): void
2016-07-30 14:30:30 +02:00
{
2022-05-24 17:43:13 +02:00
$visit = Visit::forValidShortUrl(ShortUrl::createEmpty(), new Visitor('bar', 'foo', '', ''))->locate(
VisitLocation::fromGeolocation(new Location('', 'Spain', '', 'Madrid', 0, 0, '')),
);
2016-07-30 14:30:30 +02:00
$shortCode = 'abc123';
$this->visitsHelper->visitsForShortUrl(
ShortUrlIdentifier::fromShortCodeAndDomain($shortCode),
Argument::any(),
)->willReturn(
2022-05-24 17:43:13 +02:00
new Paginator(new ArrayAdapter([$visit])),
2018-11-28 20:39:08 +01:00
)->shouldBeCalledOnce();
2016-07-30 14:30:30 +02:00
$this->commandTester->execute(['shortCode' => $shortCode]);
2016-07-30 14:30:30 +02:00
$output = $this->commandTester->getDisplay();
2022-05-24 17:43:13 +02:00
self::assertEquals(
<<<OUTPUT
+---------+---------------------------+------------+---------+--------+
| Referer | Date | User agent | Country | City |
+---------+---------------------------+------------+---------+--------+
| foo | {$visit->getDate()->toAtomString()} | bar | Spain | Madrid |
+---------+---------------------------+------------+---------+--------+
OUTPUT,
$output,
);
2016-07-30 14:30:30 +02:00
}
}