em = $this->prophesize(EntityManager::class); $this->visitsTracker = new VisitsTracker($this->em->reveal()); } /** * @test */ public function trackPersistsVisit() { $shortCode = '123ABC'; $repo = $this->prophesize(EntityRepository::class); $repo->findOneBy(['shortCode' => $shortCode])->willReturn(new ShortUrl()); $this->em->getRepository(ShortUrl::class)->willReturn($repo->reveal())->shouldBeCalledTimes(1); $this->em->persist(Argument::any())->shouldBeCalledTimes(1); $this->em->flush()->shouldBeCalledTimes(1); $this->visitsTracker->track($shortCode); } /** * @test */ public function infoReturnsVisistForCertainShortCode() { $shortCode = '123ABC'; $shortUrl = (new ShortUrl())->setOriginalUrl('http://domain.com/foo/bar'); $repo = $this->prophesize(EntityRepository::class); $repo->findOneBy(['shortCode' => $shortCode])->willReturn($shortUrl); $this->em->getRepository(ShortUrl::class)->willReturn($repo->reveal())->shouldBeCalledTimes(1); $list = [ new Visit(), new Visit(), ]; $repo2 = $this->prophesize(VisitRepository::class); $repo2->findVisitsByShortUrl($shortUrl, null)->willReturn($list); $this->em->getRepository(Visit::class)->willReturn($repo2->reveal())->shouldBeCalledTimes(1); $this->assertEquals($list, $this->visitsTracker->info($shortCode)); } }