mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-01 06:37:04 +03:00
60 lines
2.2 KiB
PHP
60 lines
2.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\CLI\Command\Visit;
|
|
|
|
use Pagerfanta\Adapter\ArrayAdapter;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Prophecy\Argument;
|
|
use Prophecy\Prophecy\ObjectProphecy;
|
|
use Shlinkio\Shlink\CLI\Command\Visit\GetOrphanVisitsCommand;
|
|
use Shlinkio\Shlink\Common\Paginator\Paginator;
|
|
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\VisitsStatsHelperInterface;
|
|
use Shlinkio\Shlink\IpGeolocation\Model\Location;
|
|
use ShlinkioTest\Shlink\CLI\CliTestUtilsTrait;
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
|
|
|
class GetOrphanVisitsCommandTest extends TestCase
|
|
{
|
|
use CliTestUtilsTrait;
|
|
|
|
private CommandTester $commandTester;
|
|
private ObjectProphecy $visitsHelper;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$this->visitsHelper = $this->prophesize(VisitsStatsHelperInterface::class);
|
|
$this->commandTester = $this->testerForCommand(new GetOrphanVisitsCommand($this->visitsHelper->reveal()));
|
|
}
|
|
|
|
/** @test */
|
|
public function outputIsProperlyGenerated(): void
|
|
{
|
|
$visit = Visit::forBasePath(new Visitor('bar', 'foo', '', ''))->locate(
|
|
VisitLocation::fromGeolocation(new Location('', 'Spain', '', 'Madrid', 0, 0, '')),
|
|
);
|
|
$getVisits = $this->visitsHelper->orphanVisits(Argument::any())->willReturn(
|
|
new Paginator(new ArrayAdapter([$visit])),
|
|
);
|
|
|
|
$this->commandTester->execute([]);
|
|
$output = $this->commandTester->getDisplay();
|
|
|
|
self::assertEquals(
|
|
<<<OUTPUT
|
|
+---------+---------------------------+------------+---------+--------+----------+
|
|
| Referer | Date | User agent | Country | City | Type |
|
|
+---------+---------------------------+------------+---------+--------+----------+
|
|
| foo | {$visit->getDate()->toAtomString()} | bar | Spain | Madrid | base_url |
|
|
+---------+---------------------------+------------+---------+--------+----------+
|
|
|
|
OUTPUT,
|
|
$output,
|
|
);
|
|
$getVisits->shouldHaveBeenCalledOnce();
|
|
}
|
|
}
|