2016-07-30 15:42:09 +03:00
|
|
|
<?php
|
2017-10-12 11:13:20 +03:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2016-08-15 12:01:55 +03:00
|
|
|
namespace ShlinkioTest\Shlink\CLI\Command\Visit;
|
2016-07-30 15:42:09 +03:00
|
|
|
|
2017-03-24 22:34:18 +03:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-07-30 15:42:09 +03:00
|
|
|
use Prophecy\Argument;
|
|
|
|
use Prophecy\Prophecy\ObjectProphecy;
|
2019-04-14 10:10:00 +03:00
|
|
|
use Shlinkio\Shlink\CLI\Command\Visit\LocateVisitsCommand;
|
2018-11-17 11:42:15 +03:00
|
|
|
use Shlinkio\Shlink\Common\Exception\WrongIpException;
|
2018-11-11 14:44:57 +03:00
|
|
|
use Shlinkio\Shlink\Common\IpGeolocation\IpApiLocationResolver;
|
2019-02-17 14:59:55 +03:00
|
|
|
use Shlinkio\Shlink\Common\IpGeolocation\Model\Location;
|
2018-11-17 11:42:15 +03:00
|
|
|
use Shlinkio\Shlink\Common\Util\IpAddress;
|
2018-10-28 18:20:10 +03:00
|
|
|
use Shlinkio\Shlink\Core\Entity\ShortUrl;
|
2016-07-30 15:42:09 +03:00
|
|
|
use Shlinkio\Shlink\Core\Entity\Visit;
|
2018-11-17 11:42:15 +03:00
|
|
|
use Shlinkio\Shlink\Core\Entity\VisitLocation;
|
2018-10-28 18:20:10 +03:00
|
|
|
use Shlinkio\Shlink\Core\Model\Visitor;
|
2016-07-30 15:42:09 +03:00
|
|
|
use Shlinkio\Shlink\Core\Service\VisitService;
|
|
|
|
use Symfony\Component\Console\Application;
|
2018-10-18 20:19:42 +03:00
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
2016-07-30 15:42:09 +03:00
|
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
2018-11-17 16:10:38 +03:00
|
|
|
use Symfony\Component\Lock;
|
2019-02-27 00:56:43 +03:00
|
|
|
|
2018-11-17 11:42:15 +03:00
|
|
|
use function array_shift;
|
2018-11-17 16:10:38 +03:00
|
|
|
use function sprintf;
|
2016-07-30 15:42:09 +03:00
|
|
|
|
2019-04-14 10:10:00 +03:00
|
|
|
class LocateVisitsCommandTest extends TestCase
|
2016-07-30 15:42:09 +03:00
|
|
|
{
|
2018-11-20 21:30:27 +03:00
|
|
|
/** @var CommandTester */
|
2018-11-12 22:37:30 +03:00
|
|
|
private $commandTester;
|
2018-11-20 21:30:27 +03:00
|
|
|
/** @var ObjectProphecy */
|
2018-11-12 22:37:30 +03:00
|
|
|
private $visitService;
|
2018-11-20 21:30:27 +03:00
|
|
|
/** @var ObjectProphecy */
|
2018-11-12 22:37:30 +03:00
|
|
|
private $ipResolver;
|
2018-11-20 21:30:27 +03:00
|
|
|
/** @var ObjectProphecy */
|
2018-11-17 16:10:38 +03:00
|
|
|
private $locker;
|
2018-11-20 21:30:27 +03:00
|
|
|
/** @var ObjectProphecy */
|
2018-11-17 16:10:38 +03:00
|
|
|
private $lock;
|
2016-07-30 15:42:09 +03:00
|
|
|
|
2019-02-16 12:53:45 +03:00
|
|
|
public function setUp(): void
|
2016-07-30 15:42:09 +03:00
|
|
|
{
|
|
|
|
$this->visitService = $this->prophesize(VisitService::class);
|
2018-07-31 21:24:13 +03:00
|
|
|
$this->ipResolver = $this->prophesize(IpApiLocationResolver::class);
|
2018-08-03 00:02:48 +03:00
|
|
|
|
2018-11-17 16:10:38 +03:00
|
|
|
$this->locker = $this->prophesize(Lock\Factory::class);
|
|
|
|
$this->lock = $this->prophesize(Lock\LockInterface::class);
|
|
|
|
$this->lock->acquire()->willReturn(true);
|
|
|
|
$this->lock->release()->will(function () {
|
|
|
|
});
|
|
|
|
$this->locker->createLock(Argument::type('string'))->willReturn($this->lock->reveal());
|
|
|
|
|
2019-04-14 10:10:00 +03:00
|
|
|
$command = new LocateVisitsCommand(
|
2016-07-30 15:42:09 +03:00
|
|
|
$this->visitService->reveal(),
|
|
|
|
$this->ipResolver->reveal(),
|
2018-11-18 18:02:52 +03:00
|
|
|
$this->locker->reveal()
|
2016-07-30 15:42:09 +03:00
|
|
|
);
|
|
|
|
$app = new Application();
|
|
|
|
$app->add($command);
|
|
|
|
|
|
|
|
$this->commandTester = new CommandTester($command);
|
|
|
|
}
|
|
|
|
|
2019-02-17 14:59:55 +03:00
|
|
|
/** @test */
|
|
|
|
public function allPendingVisitsAreProcessed(): void
|
2016-07-30 15:42:09 +03:00
|
|
|
{
|
2018-11-17 11:42:15 +03:00
|
|
|
$visit = new Visit(new ShortUrl(''), new Visitor('', '', '1.2.3.4'));
|
2019-02-17 14:59:55 +03:00
|
|
|
$location = new VisitLocation(Location::emptyInstance());
|
2018-10-28 18:20:10 +03:00
|
|
|
|
2019-02-17 15:21:07 +03:00
|
|
|
$locateVisits = $this->visitService->locateUnlocatedVisits(Argument::cetera())->will(
|
2018-11-17 11:42:15 +03:00
|
|
|
function (array $args) use ($visit, $location) {
|
|
|
|
$firstCallback = array_shift($args);
|
|
|
|
$firstCallback($visit);
|
2016-07-30 15:42:09 +03:00
|
|
|
|
2018-11-17 11:42:15 +03:00
|
|
|
$secondCallback = array_shift($args);
|
|
|
|
$secondCallback($location, $visit);
|
|
|
|
}
|
|
|
|
);
|
2019-02-17 14:59:55 +03:00
|
|
|
$resolveIpLocation = $this->ipResolver->resolveIpLocation(Argument::any())->willReturn(
|
|
|
|
Location::emptyInstance()
|
|
|
|
);
|
2016-07-30 15:42:09 +03:00
|
|
|
|
|
|
|
$this->commandTester->execute([
|
|
|
|
'command' => 'visit:process',
|
|
|
|
]);
|
|
|
|
$output = $this->commandTester->getDisplay();
|
2018-11-17 11:42:15 +03:00
|
|
|
|
2019-02-16 12:53:45 +03:00
|
|
|
$this->assertStringContainsString('Processing IP 1.2.3.0', $output);
|
2018-11-17 11:42:15 +03:00
|
|
|
$locateVisits->shouldHaveBeenCalledOnce();
|
|
|
|
$resolveIpLocation->shouldHaveBeenCalledOnce();
|
2016-07-30 15:42:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
2018-11-17 11:42:15 +03:00
|
|
|
* @dataProvider provideIgnoredAddresses
|
2016-07-30 15:42:09 +03:00
|
|
|
*/
|
2019-02-17 14:59:55 +03:00
|
|
|
public function localhostAndEmptyAddressesAreIgnored(?string $address, string $message): void
|
2016-07-30 15:42:09 +03:00
|
|
|
{
|
2018-11-17 11:42:15 +03:00
|
|
|
$visit = new Visit(new ShortUrl(''), new Visitor('', '', $address));
|
2019-02-17 14:59:55 +03:00
|
|
|
$location = new VisitLocation(Location::emptyInstance());
|
2018-11-17 11:42:15 +03:00
|
|
|
|
2019-02-17 15:21:07 +03:00
|
|
|
$locateVisits = $this->visitService->locateUnlocatedVisits(Argument::cetera())->will(
|
2018-11-17 11:42:15 +03:00
|
|
|
function (array $args) use ($visit, $location) {
|
|
|
|
$firstCallback = array_shift($args);
|
|
|
|
$firstCallback($visit);
|
|
|
|
|
|
|
|
$secondCallback = array_shift($args);
|
|
|
|
$secondCallback($location, $visit);
|
|
|
|
}
|
|
|
|
);
|
2019-02-17 14:59:55 +03:00
|
|
|
$resolveIpLocation = $this->ipResolver->resolveIpLocation(Argument::any())->willReturn(
|
|
|
|
Location::emptyInstance()
|
|
|
|
);
|
2018-11-17 11:42:15 +03:00
|
|
|
|
2019-02-17 14:59:55 +03:00
|
|
|
$this->commandTester->execute([
|
|
|
|
'command' => 'visit:process',
|
|
|
|
], ['verbosity' => OutputInterface::VERBOSITY_VERBOSE]);
|
2018-11-17 11:42:15 +03:00
|
|
|
|
2019-02-17 14:59:55 +03:00
|
|
|
$output = $this->commandTester->getDisplay();
|
|
|
|
$this->assertStringContainsString($message, $output);
|
2019-02-27 00:31:07 +03:00
|
|
|
if (empty($address)) {
|
|
|
|
$this->assertStringNotContainsString('Processing IP', $output);
|
|
|
|
} else {
|
|
|
|
$this->assertStringContainsString('Processing IP', $output);
|
|
|
|
}
|
2019-02-17 14:59:55 +03:00
|
|
|
$locateVisits->shouldHaveBeenCalledOnce();
|
|
|
|
$resolveIpLocation->shouldNotHaveBeenCalled();
|
2018-11-17 11:42:15 +03:00
|
|
|
}
|
|
|
|
|
2019-02-17 14:59:55 +03:00
|
|
|
public function provideIgnoredAddresses(): iterable
|
2018-11-17 11:42:15 +03:00
|
|
|
{
|
2019-02-17 14:59:55 +03:00
|
|
|
yield 'with empty address' => ['', 'Ignored visit with no IP address'];
|
|
|
|
yield 'with null address' => [null, 'Ignored visit with no IP address'];
|
|
|
|
yield 'with localhost address' => [IpAddress::LOCALHOST, 'Ignored localhost address'];
|
2018-11-17 11:42:15 +03:00
|
|
|
}
|
2016-07-30 15:42:09 +03:00
|
|
|
|
2019-02-17 14:59:55 +03:00
|
|
|
/** @test */
|
|
|
|
public function errorWhileLocatingIpIsDisplayed(): void
|
2018-11-17 11:42:15 +03:00
|
|
|
{
|
|
|
|
$visit = new Visit(new ShortUrl(''), new Visitor('', '', '1.2.3.4'));
|
2019-02-17 14:59:55 +03:00
|
|
|
$location = new VisitLocation(Location::emptyInstance());
|
2016-07-30 15:42:09 +03:00
|
|
|
|
2019-02-17 15:21:07 +03:00
|
|
|
$locateVisits = $this->visitService->locateUnlocatedVisits(Argument::cetera())->will(
|
2018-11-17 11:42:15 +03:00
|
|
|
function (array $args) use ($visit, $location) {
|
|
|
|
$firstCallback = array_shift($args);
|
|
|
|
$firstCallback($visit);
|
|
|
|
|
|
|
|
$secondCallback = array_shift($args);
|
|
|
|
$secondCallback($location, $visit);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
$resolveIpLocation = $this->ipResolver->resolveIpLocation(Argument::any())->willThrow(WrongIpException::class);
|
|
|
|
|
2019-02-17 14:59:55 +03:00
|
|
|
$this->commandTester->execute([
|
|
|
|
'command' => 'visit:process',
|
|
|
|
], ['verbosity' => OutputInterface::VERBOSITY_VERBOSE]);
|
2018-11-17 11:42:15 +03:00
|
|
|
|
2019-02-17 14:59:55 +03:00
|
|
|
$output = $this->commandTester->getDisplay();
|
2018-11-17 11:42:15 +03:00
|
|
|
|
2019-02-17 14:59:55 +03:00
|
|
|
$this->assertStringContainsString('An error occurred while locating IP. Skipped', $output);
|
|
|
|
$locateVisits->shouldHaveBeenCalledOnce();
|
|
|
|
$resolveIpLocation->shouldHaveBeenCalledOnce();
|
2016-07-30 15:42:09 +03:00
|
|
|
}
|
2018-11-17 16:10:38 +03:00
|
|
|
|
2019-02-17 22:28:34 +03:00
|
|
|
/** @test */
|
2018-11-17 16:10:38 +03:00
|
|
|
public function noActionIsPerformedIfLockIsAcquired()
|
|
|
|
{
|
|
|
|
$this->lock->acquire()->willReturn(false);
|
|
|
|
|
2019-02-17 15:21:07 +03:00
|
|
|
$locateVisits = $this->visitService->locateUnlocatedVisits(Argument::cetera())->will(function () {
|
2018-11-17 16:10:38 +03:00
|
|
|
});
|
|
|
|
$resolveIpLocation = $this->ipResolver->resolveIpLocation(Argument::any())->willReturn([]);
|
|
|
|
|
|
|
|
$this->commandTester->execute([
|
|
|
|
'command' => 'visit:process',
|
|
|
|
], ['verbosity' => OutputInterface::VERBOSITY_VERBOSE]);
|
|
|
|
$output = $this->commandTester->getDisplay();
|
|
|
|
|
2019-02-16 12:53:45 +03:00
|
|
|
$this->assertStringContainsString(
|
2019-04-14 10:10:00 +03:00
|
|
|
sprintf('There is already an instance of the "%s" command', LocateVisitsCommand::NAME),
|
2018-11-17 16:10:38 +03:00
|
|
|
$output
|
|
|
|
);
|
|
|
|
$locateVisits->shouldNotHaveBeenCalled();
|
|
|
|
$resolveIpLocation->shouldNotHaveBeenCalled();
|
|
|
|
}
|
2016-07-30 15:42:09 +03:00
|
|
|
}
|