mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-03 19:24:59 +02:00
103 lines
2.8 KiB
PHP
103 lines
2.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Enums\Models\Wiki\ResourceSite;
|
|
use App\Models\Wiki\Song;
|
|
use App\Rules\Wiki\Resource\SongResourceLinkFormatRule;
|
|
use Illuminate\Foundation\Testing\WithFaker;
|
|
use Illuminate\Support\Arr;
|
|
use Illuminate\Support\Facades\Validator;
|
|
use Illuminate\Support\Str;
|
|
|
|
uses(WithFaker::class);
|
|
|
|
test('fails for no pattern', function (): void {
|
|
$attribute = fake()->word();
|
|
|
|
$validator = Validator::make(
|
|
[$attribute => fake()->url()],
|
|
[$attribute => new SongResourceLinkFormatRule(ResourceSite::HULU)],
|
|
);
|
|
|
|
$this->assertFalse($validator->passes());
|
|
});
|
|
|
|
test('passes for pattern', function (): void {
|
|
/** @var ResourceSite $site */
|
|
$site = Arr::random(ResourceSite::getForModel(Song::class));
|
|
|
|
$url = $site->formatResourceLink(Song::class, fake()->randomDigitNotNull(), fake()->word(), 'null');
|
|
|
|
$attribute = fake()->word();
|
|
|
|
$validator = Validator::make(
|
|
[$attribute => $url],
|
|
[$attribute => new SongResourceLinkFormatRule($site)],
|
|
);
|
|
|
|
$this->assertTrue($validator->passes());
|
|
});
|
|
|
|
test('fails for trailing slash', function (): void {
|
|
/** @var ResourceSite $site */
|
|
$site = Arr::random(ResourceSite::getForModel(Song::class));
|
|
|
|
$url = $site->formatResourceLink(Song::class, fake()->randomDigitNotNull(), fake()->word());
|
|
|
|
$url = Str::of($url)
|
|
->append('/')
|
|
->__toString();
|
|
|
|
$attribute = fake()->word();
|
|
|
|
$validator = Validator::make(
|
|
[$attribute => $url],
|
|
[$attribute => new SongResourceLinkFormatRule($site)],
|
|
);
|
|
|
|
$this->assertFalse($site->getPattern(Song::class) && $validator->passes());
|
|
});
|
|
|
|
test('fails for trailing slug', function (): void {
|
|
/** @var ResourceSite $site */
|
|
$site = Arr::random(ResourceSite::getForModel(Song::class));
|
|
|
|
$url = $site->formatResourceLink(Song::class, fake()->randomDigitNotNull(), fake()->word());
|
|
|
|
$url = Str::of($url)
|
|
->append('/')
|
|
->append(fake()->word())
|
|
->__toString();
|
|
|
|
$attribute = fake()->word();
|
|
|
|
$validator = Validator::make(
|
|
[$attribute => $url],
|
|
[$attribute => new SongResourceLinkFormatRule($site)],
|
|
);
|
|
|
|
$this->assertFalse($site->getPattern(Song::class) && $validator->passes());
|
|
});
|
|
|
|
test('fails for other resources', function (): void {
|
|
/** @var ResourceSite $site */
|
|
$site = Arr::random(
|
|
array_filter(
|
|
ResourceSite::cases(),
|
|
fn (ResourceSite $value): bool => ! in_array($value, ResourceSite::getForModel(Song::class))
|
|
)
|
|
);
|
|
|
|
$url = $site->formatResourceLink(Song::class, fake()->randomDigitNotNull(), fake()->word());
|
|
|
|
$attribute = fake()->word();
|
|
|
|
$validator = Validator::make(
|
|
[$attribute => $url],
|
|
[$attribute => new SongResourceLinkFormatRule($site)],
|
|
);
|
|
|
|
$this->assertFalse($validator->passes());
|
|
});
|