mirror of
https://github.com/shlinkio/shlink.git
synced 2026-04-13 21:03:22 -05:00
62 lines
2.0 KiB
PHP
62 lines
2.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\Core\Visit\Entity;
|
|
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
|
use PHPUnit\Framework\Attributes\Test;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Shlinkio\Shlink\Core\Visit\Entity\VisitLocation;
|
|
use Shlinkio\Shlink\Importer\Model\ImportedShlinkVisitLocation;
|
|
use Shlinkio\Shlink\IpGeolocation\Model\Location;
|
|
|
|
class VisitLocationTest extends TestCase
|
|
{
|
|
#[Test, DataProvider('provideArgs')]
|
|
public function isEmptyReturnsTrueWhenAllValuesAreEmpty(array $args, bool $isEmpty): void
|
|
{
|
|
$payload = new Location(...$args);
|
|
$location = VisitLocation::fromLocation($payload);
|
|
|
|
self::assertEquals($isEmpty, $location->isEmpty);
|
|
}
|
|
|
|
public static function provideArgs(): iterable
|
|
{
|
|
yield [['', '', '', '', 0.0, 0.0, ''], true];
|
|
yield [['', '', '', '', 0.0, 0.0, 'dd'], false];
|
|
yield [['', '', '', 'dd', 0.0, 0.0, ''], false];
|
|
yield [['', '', 'dd', '', 0.0, 0.0, ''], false];
|
|
yield [['', 'dd', '', '', 0.0, 0.0, ''], false];
|
|
yield [['dd', '', '', '', 0.0, 0.0, ''], false];
|
|
yield [['', '', '', '', 1.0, 0.0, ''], false];
|
|
yield [['', '', '', '', 0.0, 1.0, ''], false];
|
|
}
|
|
|
|
#[Test]
|
|
public function jsonSerialization(): void
|
|
{
|
|
$location = VisitLocation::fromLocation(new ImportedShlinkVisitLocation(
|
|
countryCode: 'countryCode',
|
|
countryName: 'countryName',
|
|
regionName: 'regionName',
|
|
cityName: 'cityName',
|
|
timezone: 'timezone',
|
|
latitude: 1,
|
|
longitude: 2,
|
|
));
|
|
|
|
self::assertEquals([
|
|
'countryCode' => $location->countryCode,
|
|
'countryName' => $location->countryName,
|
|
'regionName' => $location->regionName,
|
|
'cityName' => $location->cityName,
|
|
'latitude' => $location->latitude,
|
|
'longitude' => $location->longitude,
|
|
'timezone' => $location->timezone,
|
|
'isEmpty' => $location->isEmpty,
|
|
], $location->jsonSerialize());
|
|
}
|
|
}
|