2016-07-30 15:30:30 +03:00
|
|
|
<?php
|
2017-10-12 11:13:20 +03:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2018-09-16 19:36:02 +03:00
|
|
|
namespace ShlinkioTest\Shlink\CLI\Command\ShortUrl;
|
2016-07-30 15:30:30 +03:00
|
|
|
|
2018-09-29 13:52:32 +03:00
|
|
|
use Cake\Chronos\Chronos;
|
2017-03-24 22:34:18 +03:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-07-30 15:30:30 +03:00
|
|
|
use Prophecy\Argument;
|
|
|
|
use Prophecy\Prophecy\ObjectProphecy;
|
2018-09-16 19:36:02 +03:00
|
|
|
use Shlinkio\Shlink\CLI\Command\ShortUrl\GetVisitsCommand;
|
2016-07-30 15:30:30 +03:00
|
|
|
use Shlinkio\Shlink\Common\Util\DateRange;
|
2018-10-28 18:20:10 +03:00
|
|
|
use Shlinkio\Shlink\Core\Entity\ShortUrl;
|
2016-07-30 15:30:30 +03:00
|
|
|
use Shlinkio\Shlink\Core\Entity\Visit;
|
2018-09-14 20:12:23 +03:00
|
|
|
use Shlinkio\Shlink\Core\Entity\VisitLocation;
|
2018-10-28 18:20:10 +03:00
|
|
|
use Shlinkio\Shlink\Core\Model\Visitor;
|
2018-11-27 23:09:27 +03:00
|
|
|
use Shlinkio\Shlink\Core\Model\VisitsParams;
|
2016-07-30 15:30:30 +03:00
|
|
|
use Shlinkio\Shlink\Core\Service\VisitsTrackerInterface;
|
|
|
|
use Symfony\Component\Console\Application;
|
|
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
2018-11-28 22:39:08 +03:00
|
|
|
use Zend\Paginator\Adapter\ArrayAdapter;
|
|
|
|
use Zend\Paginator\Paginator;
|
2016-07-30 15:30:30 +03:00
|
|
|
|
|
|
|
class GetVisitsCommandTest extends TestCase
|
|
|
|
{
|
2018-11-20 21:30:27 +03:00
|
|
|
/** @var CommandTester */
|
2018-11-20 21:37:22 +03:00
|
|
|
private $commandTester;
|
2018-11-20 21:30:27 +03:00
|
|
|
/** @var ObjectProphecy */
|
2018-11-20 21:37:22 +03:00
|
|
|
private $visitsTracker;
|
2016-07-30 15:30:30 +03:00
|
|
|
|
2019-02-16 12:53:45 +03:00
|
|
|
public function setUp(): void
|
2016-07-30 15:30:30 +03:00
|
|
|
{
|
|
|
|
$this->visitsTracker = $this->prophesize(VisitsTrackerInterface::class);
|
2018-11-18 18:02:52 +03:00
|
|
|
$command = new GetVisitsCommand($this->visitsTracker->reveal());
|
2016-07-30 15:30:30 +03:00
|
|
|
$app = new Application();
|
|
|
|
$app->add($command);
|
|
|
|
$this->commandTester = new CommandTester($command);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function noDateFlagsTriesToListWithoutDateRange()
|
|
|
|
{
|
|
|
|
$shortCode = 'abc123';
|
2018-11-28 22:39:08 +03:00
|
|
|
$this->visitsTracker->info($shortCode, new VisitsParams(new DateRange(null, null)))->willReturn(
|
|
|
|
new Paginator(new ArrayAdapter([]))
|
|
|
|
)->shouldBeCalledOnce();
|
2016-07-30 15:30:30 +03:00
|
|
|
|
|
|
|
$this->commandTester->execute([
|
|
|
|
'command' => 'shortcode:visits',
|
|
|
|
'shortCode' => $shortCode,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function providingDateFlagsTheListGetsFiltered()
|
|
|
|
{
|
|
|
|
$shortCode = 'abc123';
|
|
|
|
$startDate = '2016-01-01';
|
|
|
|
$endDate = '2016-02-01';
|
2018-11-27 23:09:27 +03:00
|
|
|
$this->visitsTracker->info(
|
|
|
|
$shortCode,
|
|
|
|
new VisitsParams(new DateRange(Chronos::parse($startDate), Chronos::parse($endDate)))
|
|
|
|
)
|
2018-11-28 22:39:08 +03:00
|
|
|
->willReturn(new Paginator(new ArrayAdapter([])))
|
2018-11-11 15:18:21 +03:00
|
|
|
->shouldBeCalledOnce();
|
2016-07-30 15:30:30 +03:00
|
|
|
|
|
|
|
$this->commandTester->execute([
|
|
|
|
'command' => 'shortcode:visits',
|
|
|
|
'shortCode' => $shortCode,
|
|
|
|
'--startDate' => $startDate,
|
|
|
|
'--endDate' => $endDate,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function outputIsProperlyGenerated()
|
|
|
|
{
|
|
|
|
$shortCode = 'abc123';
|
2018-11-28 22:39:08 +03:00
|
|
|
$this->visitsTracker->info($shortCode, Argument::any())->willReturn(
|
|
|
|
new Paginator(new ArrayAdapter([
|
|
|
|
(new Visit(new ShortUrl(''), new Visitor('bar', 'foo', '')))->locate(
|
|
|
|
new VisitLocation(['country_name' => 'Spain'])
|
|
|
|
),
|
|
|
|
]))
|
|
|
|
)->shouldBeCalledOnce();
|
2016-07-30 15:30:30 +03:00
|
|
|
|
|
|
|
$this->commandTester->execute([
|
|
|
|
'command' => 'shortcode:visits',
|
|
|
|
'shortCode' => $shortCode,
|
|
|
|
]);
|
|
|
|
$output = $this->commandTester->getDisplay();
|
2019-02-16 12:53:45 +03:00
|
|
|
$this->assertStringContainsString('foo', $output);
|
|
|
|
$this->assertStringContainsString('Spain', $output);
|
|
|
|
$this->assertStringContainsString('bar', $output);
|
2016-07-30 15:30:30 +03:00
|
|
|
}
|
|
|
|
}
|