visitsTracker = $this->prophesize(VisitsTracker::class); $this->action = new ShortUrlVisitsAction($this->visitsTracker->reveal()); } /** @test */ public function providingCorrectShortCodeReturnsVisits(): void { $shortCode = 'abc123'; $this->visitsTracker->info(new ShortUrlIdentifier($shortCode), Argument::type(VisitsParams::class))->willReturn( new Paginator(new ArrayAdapter([])), )->shouldBeCalledOnce(); $response = $this->action->handle((new ServerRequest())->withAttribute('shortCode', $shortCode)); self::assertEquals(200, $response->getStatusCode()); } /** @test */ public function paramsAreReadFromQuery(): void { $shortCode = 'abc123'; $this->visitsTracker->info(new ShortUrlIdentifier($shortCode), new VisitsParams( new DateRange(null, Chronos::parse('2016-01-01 00:00:00')), 3, 10, )) ->willReturn(new Paginator(new ArrayAdapter([]))) ->shouldBeCalledOnce(); $response = $this->action->handle( (new ServerRequest())->withAttribute('shortCode', $shortCode) ->withQueryParams([ 'endDate' => '2016-01-01 00:00:00', 'page' => '3', 'itemsPerPage' => '10', ]), ); self::assertEquals(200, $response->getStatusCode()); } }