visitsTracker = $this->createMock(VisitsTrackerInterface::class); $this->requestTracker = new RequestTracker( $this->visitsTracker, new TrackingOptions( disableTrackParam: 'foobar', disableTrackingFrom: ['80.90.100.110', '192.168.10.0/24', '1.2.*.*'], ), ); $this->notFoundType = $this->createMock(NotFoundType::class); $this->request = ServerRequestFactory::fromGlobals()->withAttribute( NotFoundType::class, $this->notFoundType, ); } /** * @test * @dataProvider provideNonTrackingRequests */ public function trackingIsDisabledWhenRequestDoesNotMeetConditions(ServerRequestInterface $request): void { $this->visitsTracker->expects($this->never())->method('track'); $shortUrl = ShortUrl::withLongUrl(self::LONG_URL); $this->requestTracker->trackIfApplicable($shortUrl, $request); } public function provideNonTrackingRequests(): iterable { yield 'forwarded from head' => [ServerRequestFactory::fromGlobals()->withAttribute( ImplicitHeadMiddleware::FORWARDED_HTTP_METHOD_ATTRIBUTE, RequestMethodInterface::METHOD_HEAD, )]; yield 'disable track param' => [ServerRequestFactory::fromGlobals()->withQueryParams(['foobar' => 'foo'])]; yield 'disable track param as null' => [ ServerRequestFactory::fromGlobals()->withQueryParams(['foobar' => null]), ]; yield 'exact remote address' => [ServerRequestFactory::fromGlobals()->withAttribute( IpAddressMiddlewareFactory::REQUEST_ATTR, '80.90.100.110', )]; yield 'matching wildcard remote address' => [ServerRequestFactory::fromGlobals()->withAttribute( IpAddressMiddlewareFactory::REQUEST_ATTR, '1.2.3.4', )]; yield 'matching CIDR block remote address' => [ServerRequestFactory::fromGlobals()->withAttribute( IpAddressMiddlewareFactory::REQUEST_ATTR, '192.168.10.100', )]; } /** @test */ public function trackingHappensOverShortUrlsWhenRequestMeetsConditions(): void { $shortUrl = ShortUrl::withLongUrl(self::LONG_URL); $this->visitsTracker->expects($this->once())->method('track')->with( $shortUrl, $this->isInstanceOf(Visitor::class), ); $this->requestTracker->trackIfApplicable($shortUrl, $this->request); } /** @test */ public function baseUrlErrorIsTracked(): void { $this->notFoundType->expects($this->once())->method('isBaseUrl')->willReturn(true); $this->notFoundType->expects($this->never())->method('isRegularNotFound'); $this->notFoundType->expects($this->never())->method('isInvalidShortUrl'); $this->visitsTracker->expects($this->once())->method('trackBaseUrlVisit')->with( $this->isInstanceOf(Visitor::class), ); $this->visitsTracker->expects($this->never())->method('trackRegularNotFoundVisit'); $this->visitsTracker->expects($this->never())->method('trackInvalidShortUrlVisit'); $this->requestTracker->trackNotFoundIfApplicable($this->request); } /** @test */ public function regularNotFoundErrorIsTracked(): void { $this->notFoundType->expects($this->once())->method('isBaseUrl')->willReturn(false); $this->notFoundType->expects($this->once())->method('isRegularNotFound')->willReturn(true); $this->notFoundType->expects($this->never())->method('isInvalidShortUrl'); $this->visitsTracker->expects($this->never())->method('trackBaseUrlVisit'); $this->visitsTracker->expects($this->once())->method('trackRegularNotFoundVisit')->with( $this->isInstanceOf(Visitor::class), ); $this->visitsTracker->expects($this->never())->method('trackInvalidShortUrlVisit'); $this->requestTracker->trackNotFoundIfApplicable($this->request); } /** @test */ public function invalidShortUrlErrorIsTracked(): void { $this->notFoundType->expects($this->once())->method('isBaseUrl')->willReturn(false); $this->notFoundType->expects($this->once())->method('isRegularNotFound')->willReturn(false); $this->notFoundType->expects($this->once())->method('isInvalidShortUrl')->willReturn(true); $this->visitsTracker->expects($this->never())->method('trackBaseUrlVisit'); $this->visitsTracker->expects($this->never())->method('trackRegularNotFoundVisit'); $this->visitsTracker->expects($this->once())->method('trackInvalidShortUrlVisit')->with( $this->isInstanceOf(Visitor::class), ); $this->requestTracker->trackNotFoundIfApplicable($this->request); } /** * @test * @dataProvider provideNonTrackingRequests */ public function notFoundIsNotTrackedIfRequestDoesNotMeetConditions(ServerRequestInterface $request): void { $this->visitsTracker->expects($this->never())->method('trackBaseUrlVisit'); $this->visitsTracker->expects($this->never())->method('trackRegularNotFoundVisit'); $this->visitsTracker->expects($this->never())->method('trackInvalidShortUrlVisit'); $this->requestTracker->trackNotFoundIfApplicable($request); } }