visitsHelper = $this->createMock(VisitsStatsHelperInterface::class); $this->stringifier = $this->createMock(ShortUrlStringifierInterface::class); $this->commandTester = $this->testerForCommand( new GetDomainVisitsCommand($this->visitsHelper, $this->stringifier), ); } /** @test */ public function outputIsProperlyGenerated(): void { $shortUrl = ShortUrl::createEmpty(); $visit = Visit::forValidShortUrl($shortUrl, new Visitor('bar', 'foo', '', ''))->locate( VisitLocation::fromGeolocation(new Location('', 'Spain', '', 'Madrid', 0, 0, '')), ); $domain = 's.test'; $this->visitsHelper->expects($this->once())->method('visitsForDomain')->with( $domain, $this->anything(), )->willReturn(new Paginator(new ArrayAdapter([$visit]))); $this->stringifier->expects($this->once())->method('stringify')->with($shortUrl)->willReturn( 'the_short_url', ); $this->commandTester->execute(['domain' => $domain]); $output = $this->commandTester->getDisplay(); self::assertEquals( <<getDate()->toAtomString()} | bar | Spain | Madrid | the_short_url | +---------+---------------------------+------------+---------+--------+---------------+ OUTPUT, $output, ); } }