mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-25 18:45:27 -06:00
Created tests for short-url-visits commands
This commit is contained in:
@@ -0,0 +1,71 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace ShlinkioTest\Shlink\CLI\Command\Domain;
|
||||||
|
|
||||||
|
use Pagerfanta\Adapter\ArrayAdapter;
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
|
use Prophecy\Argument;
|
||||||
|
use Prophecy\Prophecy\ObjectProphecy;
|
||||||
|
use Shlinkio\Shlink\CLI\Command\Domain\GetDomainVisitsCommand;
|
||||||
|
use Shlinkio\Shlink\Common\Paginator\Paginator;
|
||||||
|
use Shlinkio\Shlink\Core\Entity\ShortUrl;
|
||||||
|
use Shlinkio\Shlink\Core\Entity\Visit;
|
||||||
|
use Shlinkio\Shlink\Core\Entity\VisitLocation;
|
||||||
|
use Shlinkio\Shlink\Core\Model\Visitor;
|
||||||
|
use Shlinkio\Shlink\Core\ShortUrl\Helper\ShortUrlStringifierInterface;
|
||||||
|
use Shlinkio\Shlink\Core\Visit\VisitsStatsHelperInterface;
|
||||||
|
use Shlinkio\Shlink\IpGeolocation\Model\Location;
|
||||||
|
use ShlinkioTest\Shlink\CLI\CliTestUtilsTrait;
|
||||||
|
use Symfony\Component\Console\Tester\CommandTester;
|
||||||
|
|
||||||
|
class GetDomainVisitsCommandTest extends TestCase
|
||||||
|
{
|
||||||
|
use CliTestUtilsTrait;
|
||||||
|
|
||||||
|
private CommandTester $commandTester;
|
||||||
|
private ObjectProphecy $visitsHelper;
|
||||||
|
private ObjectProphecy $stringifier;
|
||||||
|
|
||||||
|
protected function setUp(): void
|
||||||
|
{
|
||||||
|
$this->visitsHelper = $this->prophesize(VisitsStatsHelperInterface::class);
|
||||||
|
$this->stringifier = $this->prophesize(ShortUrlStringifierInterface::class);
|
||||||
|
|
||||||
|
$this->commandTester = $this->testerForCommand(
|
||||||
|
new GetDomainVisitsCommand($this->visitsHelper->reveal(), $this->stringifier->reveal()),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @test */
|
||||||
|
public function outputIsProperlyGenerated(): void
|
||||||
|
{
|
||||||
|
$shortUrl = ShortUrl::createEmpty();
|
||||||
|
$visit = Visit::forValidShortUrl($shortUrl, new Visitor('bar', 'foo', '', ''))->locate(
|
||||||
|
VisitLocation::fromGeolocation(new Location('', 'Spain', '', 'Madrid', 0, 0, '')),
|
||||||
|
);
|
||||||
|
$domain = 'doma.in';
|
||||||
|
$getVisits = $this->visitsHelper->visitsForDomain($domain, Argument::any())->willReturn(
|
||||||
|
new Paginator(new ArrayAdapter([$visit])),
|
||||||
|
);
|
||||||
|
$stringify = $this->stringifier->stringify($shortUrl)->willReturn('the_short_url');
|
||||||
|
|
||||||
|
$this->commandTester->execute(['domain' => $domain]);
|
||||||
|
$output = $this->commandTester->getDisplay();
|
||||||
|
|
||||||
|
self::assertEquals(
|
||||||
|
<<<OUTPUT
|
||||||
|
+---------+---------------------------+------------+---------+--------+---------------+
|
||||||
|
| Referer | Date | User agent | Country | City | Short Url |
|
||||||
|
+---------+---------------------------+------------+---------+--------+---------------+
|
||||||
|
| foo | {$visit->getDate()->toAtomString()} | bar | Spain | Madrid | the_short_url |
|
||||||
|
+---------+---------------------------+------------+---------+--------+---------------+
|
||||||
|
|
||||||
|
OUTPUT,
|
||||||
|
$output,
|
||||||
|
);
|
||||||
|
$getVisits->shouldHaveBeenCalledOnce();
|
||||||
|
$stringify->shouldHaveBeenCalledOnce();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -114,8 +114,6 @@ class GetShortUrlVisitsCommandTest extends TestCase
|
|||||||
$this->commandTester->execute(['shortCode' => $shortCode]);
|
$this->commandTester->execute(['shortCode' => $shortCode]);
|
||||||
$output = $this->commandTester->getDisplay();
|
$output = $this->commandTester->getDisplay();
|
||||||
|
|
||||||
echo $output;
|
|
||||||
|
|
||||||
self::assertEquals(
|
self::assertEquals(
|
||||||
<<<OUTPUT
|
<<<OUTPUT
|
||||||
+---------+---------------------------+------------+---------+--------+
|
+---------+---------------------------+------------+---------+--------+
|
||||||
|
|||||||
71
module/CLI/test/Command/Tag/GetTagVisitsCommandTest.php
Normal file
71
module/CLI/test/Command/Tag/GetTagVisitsCommandTest.php
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace ShlinkioTest\Shlink\CLI\Command\Tag;
|
||||||
|
|
||||||
|
use Pagerfanta\Adapter\ArrayAdapter;
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
|
use Prophecy\Argument;
|
||||||
|
use Prophecy\Prophecy\ObjectProphecy;
|
||||||
|
use Shlinkio\Shlink\CLI\Command\Tag\GetTagVisitsCommand;
|
||||||
|
use Shlinkio\Shlink\Common\Paginator\Paginator;
|
||||||
|
use Shlinkio\Shlink\Core\Entity\ShortUrl;
|
||||||
|
use Shlinkio\Shlink\Core\Entity\Visit;
|
||||||
|
use Shlinkio\Shlink\Core\Entity\VisitLocation;
|
||||||
|
use Shlinkio\Shlink\Core\Model\Visitor;
|
||||||
|
use Shlinkio\Shlink\Core\ShortUrl\Helper\ShortUrlStringifierInterface;
|
||||||
|
use Shlinkio\Shlink\Core\Visit\VisitsStatsHelperInterface;
|
||||||
|
use Shlinkio\Shlink\IpGeolocation\Model\Location;
|
||||||
|
use ShlinkioTest\Shlink\CLI\CliTestUtilsTrait;
|
||||||
|
use Symfony\Component\Console\Tester\CommandTester;
|
||||||
|
|
||||||
|
class GetTagVisitsCommandTest extends TestCase
|
||||||
|
{
|
||||||
|
use CliTestUtilsTrait;
|
||||||
|
|
||||||
|
private CommandTester $commandTester;
|
||||||
|
private ObjectProphecy $visitsHelper;
|
||||||
|
private ObjectProphecy $stringifier;
|
||||||
|
|
||||||
|
protected function setUp(): void
|
||||||
|
{
|
||||||
|
$this->visitsHelper = $this->prophesize(VisitsStatsHelperInterface::class);
|
||||||
|
$this->stringifier = $this->prophesize(ShortUrlStringifierInterface::class);
|
||||||
|
|
||||||
|
$this->commandTester = $this->testerForCommand(
|
||||||
|
new GetTagVisitsCommand($this->visitsHelper->reveal(), $this->stringifier->reveal()),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @test */
|
||||||
|
public function outputIsProperlyGenerated(): void
|
||||||
|
{
|
||||||
|
$shortUrl = ShortUrl::createEmpty();
|
||||||
|
$visit = Visit::forValidShortUrl($shortUrl, new Visitor('bar', 'foo', '', ''))->locate(
|
||||||
|
VisitLocation::fromGeolocation(new Location('', 'Spain', '', 'Madrid', 0, 0, '')),
|
||||||
|
);
|
||||||
|
$tag = 'abc123';
|
||||||
|
$getVisits = $this->visitsHelper->visitsForTag($tag, Argument::any())->willReturn(
|
||||||
|
new Paginator(new ArrayAdapter([$visit])),
|
||||||
|
);
|
||||||
|
$stringify = $this->stringifier->stringify($shortUrl)->willReturn('the_short_url');
|
||||||
|
|
||||||
|
$this->commandTester->execute(['tag' => $tag]);
|
||||||
|
$output = $this->commandTester->getDisplay();
|
||||||
|
|
||||||
|
self::assertEquals(
|
||||||
|
<<<OUTPUT
|
||||||
|
+---------+---------------------------+------------+---------+--------+---------------+
|
||||||
|
| Referer | Date | User agent | Country | City | Short Url |
|
||||||
|
+---------+---------------------------+------------+---------+--------+---------------+
|
||||||
|
| foo | {$visit->getDate()->toAtomString()} | bar | Spain | Madrid | the_short_url |
|
||||||
|
+---------+---------------------------+------------+---------+--------+---------------+
|
||||||
|
|
||||||
|
OUTPUT,
|
||||||
|
$output,
|
||||||
|
);
|
||||||
|
$getVisits->shouldHaveBeenCalledOnce();
|
||||||
|
$stringify->shouldHaveBeenCalledOnce();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,70 @@
|
|||||||
|
<?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\GetNonOrphanVisitsCommand;
|
||||||
|
use Shlinkio\Shlink\Common\Paginator\Paginator;
|
||||||
|
use Shlinkio\Shlink\Core\Entity\ShortUrl;
|
||||||
|
use Shlinkio\Shlink\Core\Entity\Visit;
|
||||||
|
use Shlinkio\Shlink\Core\Entity\VisitLocation;
|
||||||
|
use Shlinkio\Shlink\Core\Model\Visitor;
|
||||||
|
use Shlinkio\Shlink\Core\ShortUrl\Helper\ShortUrlStringifierInterface;
|
||||||
|
use Shlinkio\Shlink\Core\Visit\VisitsStatsHelperInterface;
|
||||||
|
use Shlinkio\Shlink\IpGeolocation\Model\Location;
|
||||||
|
use ShlinkioTest\Shlink\CLI\CliTestUtilsTrait;
|
||||||
|
use Symfony\Component\Console\Tester\CommandTester;
|
||||||
|
|
||||||
|
class GetNonOrphanVisitsCommandTest extends TestCase
|
||||||
|
{
|
||||||
|
use CliTestUtilsTrait;
|
||||||
|
|
||||||
|
private CommandTester $commandTester;
|
||||||
|
private ObjectProphecy $visitsHelper;
|
||||||
|
private ObjectProphecy $stringifier;
|
||||||
|
|
||||||
|
protected function setUp(): void
|
||||||
|
{
|
||||||
|
$this->visitsHelper = $this->prophesize(VisitsStatsHelperInterface::class);
|
||||||
|
$this->stringifier = $this->prophesize(ShortUrlStringifierInterface::class);
|
||||||
|
|
||||||
|
$this->commandTester = $this->testerForCommand(
|
||||||
|
new GetNonOrphanVisitsCommand($this->visitsHelper->reveal(), $this->stringifier->reveal()),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @test */
|
||||||
|
public function outputIsProperlyGenerated(): void
|
||||||
|
{
|
||||||
|
$shortUrl = ShortUrl::createEmpty();
|
||||||
|
$visit = Visit::forValidShortUrl($shortUrl, new Visitor('bar', 'foo', '', ''))->locate(
|
||||||
|
VisitLocation::fromGeolocation(new Location('', 'Spain', '', 'Madrid', 0, 0, '')),
|
||||||
|
);
|
||||||
|
$getVisits = $this->visitsHelper->nonOrphanVisits(Argument::any())->willReturn(
|
||||||
|
new Paginator(new ArrayAdapter([$visit])),
|
||||||
|
);
|
||||||
|
$stringify = $this->stringifier->stringify($shortUrl)->willReturn('the_short_url');
|
||||||
|
|
||||||
|
$this->commandTester->execute([]);
|
||||||
|
$output = $this->commandTester->getDisplay();
|
||||||
|
|
||||||
|
self::assertEquals(
|
||||||
|
<<<OUTPUT
|
||||||
|
+---------+---------------------------+------------+---------+--------+---------------+
|
||||||
|
| Referer | Date | User agent | Country | City | Short Url |
|
||||||
|
+---------+---------------------------+------------+---------+--------+---------------+
|
||||||
|
| foo | {$visit->getDate()->toAtomString()} | bar | Spain | Madrid | the_short_url |
|
||||||
|
+---------+---------------------------+------------+---------+--------+---------------+
|
||||||
|
|
||||||
|
OUTPUT,
|
||||||
|
$output,
|
||||||
|
);
|
||||||
|
$getVisits->shouldHaveBeenCalledOnce();
|
||||||
|
$stringify->shouldHaveBeenCalledOnce();
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user