mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 13:49:03 +03:00
39 lines
1,004 B
PHP
39 lines
1,004 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\Core\Entity;
|
|
|
|
use Cake\Chronos\Chronos;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Shlinkio\Shlink\Core\Entity\ShortUrl;
|
|
use Shlinkio\Shlink\Core\Entity\Visit;
|
|
use Shlinkio\Shlink\Core\Model\Visitor;
|
|
|
|
class VisitTest extends TestCase
|
|
{
|
|
/**
|
|
* @test
|
|
* @dataProvider provideDates
|
|
*/
|
|
public function isProperlyJsonSerialized(?Chronos $date): void
|
|
{
|
|
$visit = new Visit(new ShortUrl(''), new Visitor('Chrome', 'some site', '1.2.3.4'), $date);
|
|
|
|
$this->assertEquals([
|
|
'referer' => 'some site',
|
|
'date' => ($date ?? $visit->getDate())->toAtomString(),
|
|
'userAgent' => 'Chrome',
|
|
'visitLocation' => null,
|
|
|
|
// Deprecated
|
|
'remoteAddr' => null,
|
|
], $visit->jsonSerialize());
|
|
}
|
|
|
|
public function provideDates(): iterable
|
|
{
|
|
yield 'null date' => [null];
|
|
yield 'not null date' => [Chronos::now()->subDays(10)];
|
|
}
|
|
}
|