mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-11 08:38:03 +03:00
37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioApiTest\Shlink\Rest\Utils;
|
|
|
|
class ApiTestDataProviders
|
|
{
|
|
public static function invalidUrlsProvider(): iterable
|
|
{
|
|
yield 'invalid shortcode' => ['invalid', null, 'No URL found with short code "invalid"', 'valid_api_key'];
|
|
yield 'invalid shortcode without domain' => [
|
|
'abc123',
|
|
'example.com',
|
|
'No URL found with short code "abc123" for domain "example.com"',
|
|
'valid_api_key',
|
|
];
|
|
yield 'invalid shortcode and custom domain' => [
|
|
'custom-with-domain',
|
|
'example.com',
|
|
'No URL found with short code "custom-with-domain" for domain "example.com"',
|
|
'valid_api_key',
|
|
];
|
|
yield 'valid shortcode with invalid API key' => [
|
|
'ghi789',
|
|
null,
|
|
'No URL found with short code "ghi789"',
|
|
'author_api_key',
|
|
];
|
|
yield 'valid shortcode and custom domain with invalid API key' => [
|
|
'custom-with-domain',
|
|
'some-domain.com',
|
|
'No URL found with short code "custom-with-domain" for domain "some-domain.com"',
|
|
'domain_api_key',
|
|
];
|
|
}
|
|
}
|