shlink/module/Core/test/Entity/VisitTest.php

53 lines
1.7 KiB
PHP
Raw Normal View History

2018-11-17 21:23:25 +03:00
<?php
2019-10-05 18:26:10 +03:00
2018-11-17 21:23:25 +03:00
declare(strict_types=1);
namespace ShlinkioTest\Shlink\Core\Entity;
2018-11-17 21:26:07 +03:00
use PHPUnit\Framework\TestCase;
use Shlinkio\Shlink\Common\Util\IpAddress;
2018-11-17 21:23:25 +03:00
use Shlinkio\Shlink\Core\Entity\ShortUrl;
use Shlinkio\Shlink\Core\Entity\Visit;
use Shlinkio\Shlink\Core\Model\Visitor;
class VisitTest extends TestCase
{
/** @test */
public function isProperlyJsonSerialized(): void
2018-11-17 21:23:25 +03:00
{
$visit = Visit::forValidShortUrl(ShortUrl::createEmpty(), new Visitor('Chrome', 'some site', '1.2.3.4', ''));
2018-11-17 21:23:25 +03:00
2020-10-04 01:35:14 +03:00
self::assertEquals([
2018-11-17 21:23:25 +03:00
'referer' => 'some site',
'date' => $visit->getDate()->toAtomString(),
2018-11-17 21:23:25 +03:00
'userAgent' => 'Chrome',
'visitLocation' => null,
], $visit->jsonSerialize());
}
/**
* @test
* @dataProvider provideAddresses
*/
public function addressIsAnonymizedWhenRequested(bool $anonymize, ?string $address, ?string $expectedAddress): void
{
$visit = Visit::forValidShortUrl(
ShortUrl::createEmpty(),
new Visitor('Chrome', 'some site', $address, ''),
$anonymize,
);
2020-10-04 01:35:14 +03:00
self::assertEquals($expectedAddress, $visit->getRemoteAddr());
}
public function provideAddresses(): iterable
{
yield 'anonymized null address' => [true, null, null];
yield 'non-anonymized null address' => [false, null, null];
yield 'anonymized localhost' => [true, IpAddress::LOCALHOST, IpAddress::LOCALHOST];
yield 'non-anonymized localhost' => [false, IpAddress::LOCALHOST, IpAddress::LOCALHOST];
yield 'anonymized regular address' => [true, '1.2.3.4', '1.2.3.0'];
yield 'non-anonymized regular address' => [false, '1.2.3.4', '1.2.3.4'];
}
2018-11-17 21:23:25 +03:00
}