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);
|
|
|
|
|
2018-09-16 18:36:02 +02:00
|
|
|
namespace ShlinkioTest\Shlink\CLI\Command\ShortUrl;
|
2016-07-30 14:30:30 +02:00
|
|
|
|
2018-09-29 12:52:32 +02:00
|
|
|
use Cake\Chronos\Chronos;
|
2021-01-23 14:37:34 +01:00
|
|
|
use Pagerfanta\Adapter\ArrayAdapter;
|
2022-10-22 13:38:46 +02:00
|
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
2017-03-24 20:34:18 +01:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2022-05-23 20:47:37 +02:00
|
|
|
use Shlinkio\Shlink\CLI\Command\ShortUrl\GetShortUrlVisitsCommand;
|
2021-01-23 14:37:34 +01:00
|
|
|
use Shlinkio\Shlink\Common\Paginator\Paginator;
|
2016-07-30 14:30:30 +02:00
|
|
|
use Shlinkio\Shlink\Common\Util\DateRange;
|
2022-09-23 19:03:32 +02:00
|
|
|
use Shlinkio\Shlink\Core\ShortUrl\Entity\ShortUrl;
|
2022-09-23 18:05:17 +02:00
|
|
|
use Shlinkio\Shlink\Core\ShortUrl\Model\ShortUrlIdentifier;
|
2022-09-23 19:03:32 +02:00
|
|
|
use Shlinkio\Shlink\Core\Visit\Entity\Visit;
|
|
|
|
use Shlinkio\Shlink\Core\Visit\Entity\VisitLocation;
|
2022-09-23 18:05:17 +02:00
|
|
|
use Shlinkio\Shlink\Core\Visit\Model\Visitor;
|
|
|
|
use Shlinkio\Shlink\Core\Visit\Model\VisitsParams;
|
2021-02-08 19:46:51 +01:00
|
|
|
use Shlinkio\Shlink\Core\Visit\VisitsStatsHelperInterface;
|
2019-08-10 13:42:37 +02:00
|
|
|
use Shlinkio\Shlink\IpGeolocation\Model\Location;
|
2021-04-08 13:42:56 +02:00
|
|
|
use ShlinkioTest\Shlink\CLI\CliTestUtilsTrait;
|
2016-07-30 14:30:30 +02:00
|
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
2021-04-08 14:09:26 +02:00
|
|
|
|
2022-05-24 17:43:13 +02:00
|
|
|
use function Shlinkio\Shlink\Common\buildDateRange;
|
2019-12-17 09:59:54 +01:00
|
|
|
use function sprintf;
|
|
|
|
|
2022-05-24 17:43:13 +02:00
|
|
|
class GetShortUrlVisitsCommandTest extends TestCase
|
2016-07-30 14:30:30 +02:00
|
|
|
{
|
2021-04-08 13:42:56 +02:00
|
|
|
use CliTestUtilsTrait;
|
2020-11-02 11:50:19 +01:00
|
|
|
|
2019-12-29 22:27:00 +01:00
|
|
|
private CommandTester $commandTester;
|
2022-10-22 13:38:46 +02:00
|
|
|
private MockObject $visitsHelper;
|
2016-07-30 14:30:30 +02:00
|
|
|
|
2022-09-11 12:02:49 +02:00
|
|
|
protected function setUp(): void
|
2016-07-30 14:30:30 +02:00
|
|
|
{
|
2022-10-22 13:38:46 +02:00
|
|
|
$this->visitsHelper = $this->createMock(VisitsStatsHelperInterface::class);
|
|
|
|
$command = new GetShortUrlVisitsCommand($this->visitsHelper);
|
2021-04-08 13:42:56 +02:00
|
|
|
$this->commandTester = $this->testerForCommand($command);
|
2016-07-30 14:30:30 +02:00
|
|
|
}
|
|
|
|
|
2019-02-17 20:28:34 +01:00
|
|
|
/** @test */
|
2019-12-17 09:59:54 +01:00
|
|
|
public function noDateFlagsTriesToListWithoutDateRange(): void
|
2016-07-30 14:30:30 +02:00
|
|
|
{
|
|
|
|
$shortCode = 'abc123';
|
2022-10-22 13:38:46 +02:00
|
|
|
$this->visitsHelper->expects($this->once())->method('visitsForShortUrl')->with(
|
|
|
|
$this->equalTo(ShortUrlIdentifier::fromShortCodeAndDomain($shortCode)),
|
|
|
|
$this->equalTo(new VisitsParams(DateRange::allTime())),
|
|
|
|
)->willReturn(new Paginator(new ArrayAdapter([])));
|
2016-07-30 14:30:30 +02:00
|
|
|
|
2019-04-14 22:20:58 +02:00
|
|
|
$this->commandTester->execute(['shortCode' => $shortCode]);
|
2016-07-30 14:30:30 +02:00
|
|
|
}
|
|
|
|
|
2019-02-17 20:28:34 +01:00
|
|
|
/** @test */
|
2019-12-17 09:59:54 +01:00
|
|
|
public function providingDateFlagsTheListGetsFiltered(): void
|
2016-07-30 14:30:30 +02:00
|
|
|
{
|
|
|
|
$shortCode = 'abc123';
|
|
|
|
$startDate = '2016-01-01';
|
|
|
|
$endDate = '2016-02-01';
|
2022-10-22 13:38:46 +02:00
|
|
|
$this->visitsHelper->expects($this->once())->method('visitsForShortUrl')->with(
|
|
|
|
$this->equalTo(ShortUrlIdentifier::fromShortCodeAndDomain($shortCode)),
|
|
|
|
$this->equalTo(new VisitsParams(buildDateRange(Chronos::parse($startDate), Chronos::parse($endDate)))),
|
|
|
|
)->willReturn(new Paginator(new ArrayAdapter([])));
|
2016-07-30 14:30:30 +02:00
|
|
|
|
|
|
|
$this->commandTester->execute([
|
|
|
|
'shortCode' => $shortCode,
|
2021-01-30 11:25:20 +01:00
|
|
|
'--start-date' => $startDate,
|
|
|
|
'--end-date' => $endDate,
|
2016-07-30 14:30:30 +02:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2019-12-17 09:59:54 +01:00
|
|
|
/** @test */
|
|
|
|
public function providingInvalidDatesPrintsWarning(): void
|
|
|
|
{
|
|
|
|
$shortCode = 'abc123';
|
|
|
|
$startDate = 'foo';
|
2022-10-22 13:38:46 +02:00
|
|
|
$this->visitsHelper->expects($this->once())->method('visitsForShortUrl')->with(
|
|
|
|
$this->equalTo(ShortUrlIdentifier::fromShortCodeAndDomain($shortCode)),
|
|
|
|
$this->equalTo(new VisitsParams(DateRange::allTime())),
|
2021-02-08 19:46:51 +01:00
|
|
|
)->willReturn(new Paginator(new ArrayAdapter([])));
|
2019-12-17 09:59:54 +01:00
|
|
|
|
|
|
|
$this->commandTester->execute([
|
|
|
|
'shortCode' => $shortCode,
|
2021-01-30 11:25:20 +01:00
|
|
|
'--start-date' => $startDate,
|
2019-12-17 09:59:54 +01:00
|
|
|
]);
|
|
|
|
$output = $this->commandTester->getDisplay();
|
|
|
|
|
2020-10-04 00:35:14 +02:00
|
|
|
self::assertStringContainsString(
|
2021-01-30 11:17:13 +01:00
|
|
|
sprintf('Ignored provided "start-date" since its value "%s" is not a valid date', $startDate),
|
2020-01-01 20:48:31 +01:00
|
|
|
$output,
|
2019-12-17 09:59:54 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-02-17 12:59:55 +01:00
|
|
|
/** @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';
|
2022-10-22 13:38:46 +02:00
|
|
|
$this->visitsHelper->expects($this->once())->method('visitsForShortUrl')->with(
|
|
|
|
$this->equalTo(ShortUrlIdentifier::fromShortCodeAndDomain($shortCode)),
|
|
|
|
$this->anything(),
|
|
|
|
)->willReturn(new Paginator(new ArrayAdapter([$visit])));
|
2016-07-30 14:30:30 +02:00
|
|
|
|
2019-04-14 22:20:58 +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
|
|
|
}
|
|
|
|
}
|