'http', 'hostname' => 'foo.com', ]; private CreateShortUrlAction $action; private ObjectProphecy $urlShortener; public function setUp(): void { $this->urlShortener = $this->prophesize(UrlShortener::class); $this->action = new CreateShortUrlAction($this->urlShortener->reveal(), self::DOMAIN_CONFIG); } /** @test */ public function missingLongUrlParamReturnsError(): void { $this->expectException(ValidationException::class); $this->action->handle(new ServerRequest()); } /** * @test * @dataProvider provideRequestBodies */ public function properShortcodeConversionReturnsData(array $body, array $expectedMeta): void { $apiKey = new ApiKey(); $shortUrl = new ShortUrl(''); $expectedMeta['apiKey'] = $apiKey->toString(); $shorten = $this->urlShortener->shorten( Argument::type('string'), Argument::type('array'), ShortUrlMeta::fromRawData($expectedMeta), )->willReturn($shortUrl); $request = ServerRequestFactory::fromGlobals()->withParsedBody($body)->withAttribute(ApiKey::class, $apiKey); $response = $this->action->handle($request); self::assertEquals(200, $response->getStatusCode()); self::assertTrue(strpos($response->getBody()->getContents(), $shortUrl->toString(self::DOMAIN_CONFIG)) > 0); $shorten->shouldHaveBeenCalledOnce(); } public function provideRequestBodies(): iterable { $fullMeta = [ 'longUrl' => 'http://www.domain.com/foo/bar', 'validSince' => Chronos::now()->toAtomString(), 'validUntil' => Chronos::now()->toAtomString(), 'customSlug' => 'foo-bar-baz', 'maxVisits' => 50, 'findIfExists' => true, 'domain' => 'my-domain.com', ]; yield 'no data' => [['longUrl' => 'http://www.domain.com/foo/bar'], []]; yield 'all data' => [$fullMeta, $fullMeta]; } /** * @test * @dataProvider provideInvalidDomains */ public function anInvalidDomainReturnsError(string $domain): void { $shortUrl = new ShortUrl(''); $urlToShortCode = $this->urlShortener->shorten(Argument::cetera())->willReturn($shortUrl); $request = (new ServerRequest())->withParsedBody([ 'longUrl' => 'http://www.domain.com/foo/bar', 'domain' => $domain, ])->withAttribute(ApiKey::class, new ApiKey()); $this->expectException(ValidationException::class); $urlToShortCode->shouldNotBeCalled(); $this->action->handle($request); } public function provideInvalidDomains(): iterable { yield ['localhost:80000']; yield ['127.0.0.1']; yield ['???/&%$&']; } }