urlValidator = $this->prophesize(UrlValidatorInterface::class); $this->urlValidator->validateUrl('http://foobar.com/12345/hello?foo=bar', null)->will( function (): void { }, ); $this->em = $this->prophesize(EntityManagerInterface::class); $this->em->persist(Argument::any())->will(function ($arguments): void { /** @var ShortUrl $shortUrl */ [$shortUrl] = $arguments; $shortUrl->setId('10'); }); $this->em->transactional(Argument::type('callable'))->will(function (array $args) { /** @var callable $callback */ [$callback] = $args; return $callback(); }); $repo = $this->prophesize(ShortUrlRepository::class); $repo->shortCodeIsInUse(Argument::cetera())->willReturn(false); $this->em->getRepository(ShortUrl::class)->willReturn($repo->reveal()); $this->shortCodeHelper = $this->prophesize(ShortCodeHelperInterface::class); $this->shortCodeHelper->ensureShortCodeUniqueness(Argument::cetera())->willReturn(true); $this->urlShortener = new UrlShortener( $this->urlValidator->reveal(), $this->em->reveal(), new SimpleShortUrlRelationResolver(), $this->shortCodeHelper->reveal(), ); } /** @test */ public function urlIsProperlyShortened(): void { $shortUrl = $this->urlShortener->shorten( 'http://foobar.com/12345/hello?foo=bar', [], ShortUrlMeta::createEmpty(), ); self::assertEquals('http://foobar.com/12345/hello?foo=bar', $shortUrl->getLongUrl()); } /** @test */ public function exceptionIsThrownWhenNonUniqueSlugIsProvided(): void { $ensureUniqueness = $this->shortCodeHelper->ensureShortCodeUniqueness(Argument::cetera())->willReturn(false); $ensureUniqueness->shouldBeCalledOnce(); $this->expectException(NonUniqueSlugException::class); $this->urlShortener->shorten( 'http://foobar.com/12345/hello?foo=bar', [], ShortUrlMeta::fromRawData(['customSlug' => 'custom-slug']), ); } /** * @test * @dataProvider provideExistingShortUrls */ public function existingShortUrlIsReturnedWhenRequested( string $url, array $tags, ShortUrlMeta $meta, ShortUrl $expected ): void { $repo = $this->prophesize(ShortUrlRepository::class); $findExisting = $repo->findOneMatching(Argument::cetera())->willReturn($expected); $getRepo = $this->em->getRepository(ShortUrl::class)->willReturn($repo->reveal()); $result = $this->urlShortener->shorten($url, $tags, $meta); $findExisting->shouldHaveBeenCalledOnce(); $getRepo->shouldHaveBeenCalledOnce(); $this->em->persist(Argument::cetera())->shouldNotHaveBeenCalled(); $this->urlValidator->validateUrl(Argument::cetera())->shouldNotHaveBeenCalled(); self::assertSame($expected, $result); } public function provideExistingShortUrls(): iterable { $url = 'http://foo.com'; yield [$url, [], ShortUrlMeta::fromRawData(['findIfExists' => true]), new ShortUrl($url)]; yield [$url, [], ShortUrlMeta::fromRawData( ['findIfExists' => true, 'customSlug' => 'foo'], ), new ShortUrl($url)]; yield [ $url, ['foo', 'bar'], ShortUrlMeta::fromRawData(['findIfExists' => true]), (new ShortUrl($url))->setTags(new ArrayCollection([new Tag('bar'), new Tag('foo')])), ]; yield [ $url, [], ShortUrlMeta::fromRawData(['findIfExists' => true, 'maxVisits' => 3]), new ShortUrl($url, ShortUrlMeta::fromRawData(['maxVisits' => 3])), ]; yield [ $url, [], ShortUrlMeta::fromRawData(['findIfExists' => true, 'validSince' => Chronos::parse('2017-01-01')]), new ShortUrl($url, ShortUrlMeta::fromRawData(['validSince' => Chronos::parse('2017-01-01')])), ]; yield [ $url, [], ShortUrlMeta::fromRawData(['findIfExists' => true, 'validUntil' => Chronos::parse('2017-01-01')]), new ShortUrl($url, ShortUrlMeta::fromRawData(['validUntil' => Chronos::parse('2017-01-01')])), ]; yield [ $url, [], ShortUrlMeta::fromRawData(['findIfExists' => true, 'domain' => 'example.com']), new ShortUrl($url, ShortUrlMeta::fromRawData(['domain' => 'example.com'])), ]; yield [ $url, ['baz', 'foo', 'bar'], ShortUrlMeta::fromRawData([ 'findIfExists' => true, 'validUntil' => Chronos::parse('2017-01-01'), 'maxVisits' => 4, ]), (new ShortUrl($url, ShortUrlMeta::fromRawData([ 'validUntil' => Chronos::parse('2017-01-01'), 'maxVisits' => 4, ])))->setTags(new ArrayCollection([new Tag('foo'), new Tag('bar'), new Tag('baz')])), ]; } }