Added e2e tests covering shortening of twitter URLs with url validatio enabled

This commit is contained in:
Alejandro Celaya 2021-02-18 21:33:30 +01:00
parent 8ad34357d3
commit 5ddb6a7f99

View file

@ -297,6 +297,24 @@ class CreateShortUrlTest extends ApiTestCase
yield 'example domain' => ['example.com'];
}
/**
* @test
* @dataProvider provideTwitterUrls
*/
public function urlsWithBothProtectionCanBeShortenedWithUrlValidationEnabled(string $longUrl): void
{
[$statusCode] = $this->createShortUrl(['longUrl' => $longUrl, 'validateUrl' => true]);
self::assertEquals(self::STATUS_OK, $statusCode);
}
public function provideTwitterUrls(): iterable
{
yield ['https://twitter.com/shlinkio'];
yield ['https://mobile.twitter.com/shlinkio'];
yield ['https://twitter.com/shlinkio/status/1360637738421268481'];
yield ['https://mobile.twitter.com/shlinkio/status/1360637738421268481'];
}
/**
* @return array {
* @var int $statusCode