mirror of
https://github.com/shlinkio/shlink.git
synced 2025-01-08 21:07:32 +03:00
120 lines
5.1 KiB
PHP
120 lines
5.1 KiB
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace ShlinkioTest\Shlink\Core\Matomo;
|
||
|
|
||
|
use MatomoTracker;
|
||
|
use PHPUnit\Framework\Attributes\DataProvider;
|
||
|
use PHPUnit\Framework\Attributes\Test;
|
||
|
use PHPUnit\Framework\MockObject\MockObject;
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
use Shlinkio\Shlink\Core\Matomo\MatomoTrackerBuilderInterface;
|
||
|
use Shlinkio\Shlink\Core\Matomo\MatomoVisitSender;
|
||
|
use Shlinkio\Shlink\Core\ShortUrl\Entity\ShortUrl;
|
||
|
use Shlinkio\Shlink\Core\ShortUrl\Helper\ShortUrlStringifier;
|
||
|
use Shlinkio\Shlink\Core\ShortUrl\Model\ShortUrlCreation;
|
||
|
use Shlinkio\Shlink\Core\ShortUrl\Model\Validation\ShortUrlInputFilter;
|
||
|
use Shlinkio\Shlink\Core\Visit\Entity\Visit;
|
||
|
use Shlinkio\Shlink\Core\Visit\Entity\VisitLocation;
|
||
|
use Shlinkio\Shlink\Core\Visit\Model\Visitor;
|
||
|
use Shlinkio\Shlink\IpGeolocation\Model\Location;
|
||
|
|
||
|
class MatomoVisitSenderTest extends TestCase
|
||
|
{
|
||
|
private MockObject & MatomoTrackerBuilderInterface $trackerBuilder;
|
||
|
private MatomoVisitSender $visitSender;
|
||
|
|
||
|
protected function setUp(): void
|
||
|
{
|
||
|
$this->trackerBuilder = $this->createMock(MatomoTrackerBuilderInterface::class);
|
||
|
$this->visitSender = new MatomoVisitSender(
|
||
|
$this->trackerBuilder,
|
||
|
new ShortUrlStringifier(['hostname' => 's2.test']),
|
||
|
);
|
||
|
}
|
||
|
|
||
|
#[Test, DataProvider('provideTrackerMethods')]
|
||
|
public function visitIsSentToMatomo(Visit $visit, ?string $originalIpAddress, array $invokedMethods): void
|
||
|
{
|
||
|
$tracker = $this->createMock(MatomoTracker::class);
|
||
|
$tracker->expects($this->once())->method('setUrl')->willReturn($tracker);
|
||
|
$tracker->expects($this->once())->method('setUserAgent')->willReturn($tracker);
|
||
|
$tracker->expects($this->once())->method('setUrlReferrer')->willReturn($tracker);
|
||
|
$tracker->expects($this->once())->method('doTrackPageView')->with($visit->shortUrl?->title() ?? '');
|
||
|
|
||
|
if ($visit->isOrphan()) {
|
||
|
$tracker->expects($this->exactly(2))->method('setCustomTrackingParameter')->willReturnMap([
|
||
|
['type', $visit->type->value, $tracker],
|
||
|
['orphan', 'true', $tracker],
|
||
|
]);
|
||
|
} else {
|
||
|
$tracker->expects($this->once())->method('setCustomTrackingParameter')->with(
|
||
|
'type',
|
||
|
$visit->type->value,
|
||
|
)->willReturn($tracker);
|
||
|
}
|
||
|
|
||
|
foreach ($invokedMethods as $invokedMethod) {
|
||
|
$tracker->expects($this->once())->method($invokedMethod)->willReturn($tracker);
|
||
|
}
|
||
|
|
||
|
$this->trackerBuilder->expects($this->once())->method('buildMatomoTracker')->willReturn($tracker);
|
||
|
|
||
|
$this->visitSender->sendVisitToMatomo($visit, $originalIpAddress);
|
||
|
}
|
||
|
|
||
|
public static function provideTrackerMethods(): iterable
|
||
|
{
|
||
|
yield 'unlocated orphan visit' => [Visit::forBasePath(Visitor::emptyInstance()), null, []];
|
||
|
yield 'located regular visit' => [
|
||
|
Visit::forValidShortUrl(ShortUrl::withLongUrl('https://shlink.io'), Visitor::emptyInstance())
|
||
|
->locate(VisitLocation::fromGeolocation(new Location(
|
||
|
countryCode: 'countryCode',
|
||
|
countryName: 'countryName',
|
||
|
regionName: 'regionName',
|
||
|
city: 'city',
|
||
|
latitude: 123,
|
||
|
longitude: 123,
|
||
|
timeZone: 'timeZone',
|
||
|
))),
|
||
|
'1.2.3.4',
|
||
|
['setCity', 'setCountry', 'setLatitude', 'setLongitude', 'setIp'],
|
||
|
];
|
||
|
yield 'fallback IP' => [Visit::forBasePath(new Visitor('', '', '1.2.3.4', '')), null, ['setIp']];
|
||
|
}
|
||
|
|
||
|
#[Test, DataProvider('provideUrlsToTrack')]
|
||
|
public function properUrlIsTracked(Visit $visit, string $expectedTrackedUrl): void
|
||
|
{
|
||
|
$tracker = $this->createMock(MatomoTracker::class);
|
||
|
$tracker->expects($this->once())->method('setUrl')->with($expectedTrackedUrl)->willReturn($tracker);
|
||
|
$tracker->expects($this->once())->method('setUserAgent')->willReturn($tracker);
|
||
|
$tracker->expects($this->once())->method('setUrlReferrer')->willReturn($tracker);
|
||
|
$tracker->expects($this->any())->method('setCustomTrackingParameter')->willReturn($tracker);
|
||
|
$tracker->expects($this->once())->method('doTrackPageView');
|
||
|
|
||
|
$this->trackerBuilder->expects($this->once())->method('buildMatomoTracker')->willReturn($tracker);
|
||
|
|
||
|
$this->visitSender->sendVisitToMatomo($visit);
|
||
|
}
|
||
|
|
||
|
public static function provideUrlsToTrack(): iterable
|
||
|
{
|
||
|
yield 'orphan visit without visited URL' => [Visit::forBasePath(Visitor::emptyInstance()), ''];
|
||
|
yield 'orphan visit with visited URL' => [
|
||
|
Visit::forBasePath(new Visitor('', '', null, 'https://s.test/foo')),
|
||
|
'https://s.test/foo',
|
||
|
];
|
||
|
yield 'non-orphan visit' => [
|
||
|
Visit::forValidShortUrl(ShortUrl::create(
|
||
|
ShortUrlCreation::fromRawData([
|
||
|
ShortUrlInputFilter::LONG_URL => 'https://shlink.io',
|
||
|
ShortUrlInputFilter::CUSTOM_SLUG => 'bar',
|
||
|
]),
|
||
|
), Visitor::emptyInstance()),
|
||
|
'http://s2.test/bar',
|
||
|
];
|
||
|
}
|
||
|
}
|