mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 09:34:50 +02:00
327 lines
10 KiB
PHP
327 lines
10 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Constants\Config\VideoConstants;
|
|
use App\Enums\Models\List\PlaylistVisibility;
|
|
use App\Enums\Models\Wiki\VideoOverlap;
|
|
use App\Enums\Models\Wiki\VideoSource;
|
|
use App\Events\Wiki\Video\VideoForceDeleting;
|
|
use App\Models\List\Playlist;
|
|
use App\Models\List\Playlist\PlaylistTrack;
|
|
use App\Models\Wiki\Anime;
|
|
use App\Models\Wiki\Anime\AnimeTheme;
|
|
use App\Models\Wiki\Anime\Theme\AnimeThemeEntry;
|
|
use App\Models\Wiki\Audio;
|
|
use App\Models\Wiki\Video;
|
|
use App\Models\Wiki\Video\VideoScript;
|
|
use App\Pivots\Wiki\AnimeThemeEntryVideo;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\Relations\HasOne;
|
|
use Illuminate\Foundation\Testing\WithFaker;
|
|
use Illuminate\Http\Testing\File;
|
|
use Illuminate\Support\Arr;
|
|
use Illuminate\Support\Facades\Config;
|
|
use Illuminate\Support\Facades\Event;
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
uses(WithFaker::class);
|
|
|
|
test('casts overlap to enum', function (): void {
|
|
$video = Video::factory()->createOne();
|
|
|
|
$overlap = $video->overlap;
|
|
|
|
$this->assertInstanceOf(VideoOverlap::class, $overlap);
|
|
});
|
|
|
|
test('casts source to enum', function (): void {
|
|
$video = Video::factory()->createOne();
|
|
|
|
$source = $video->source;
|
|
|
|
$this->assertInstanceOf(VideoSource::class, $source);
|
|
});
|
|
|
|
test('searchable as', function (): void {
|
|
$video = Video::factory()->createOne();
|
|
|
|
$this->assertIsString($video->searchableAs());
|
|
});
|
|
|
|
test('to searchable array', function (): void {
|
|
$video = Video::factory()->createOne();
|
|
|
|
$this->assertIsArray($video->toSearchableArray());
|
|
});
|
|
|
|
test('nameable', function (): void {
|
|
$video = Video::factory()->createOne();
|
|
|
|
$this->assertIsString($video->getName());
|
|
});
|
|
|
|
test('has subtitle', function (): void {
|
|
$video = Video::factory()->createOne();
|
|
|
|
$this->assertIsString($video->getSubtitle());
|
|
});
|
|
|
|
test('appends tags', function (): void {
|
|
$video = Video::factory()->createOne();
|
|
|
|
$this->assertArrayHasKey(Video::ATTRIBUTE_TAGS, $video);
|
|
});
|
|
|
|
test('nc tag', function (): void {
|
|
$video = Video::factory()->createOne([
|
|
Video::ATTRIBUTE_NC => true,
|
|
]);
|
|
|
|
$this->assertStringContainsString('NC', $video->tags);
|
|
});
|
|
|
|
test('no nc tag', function (): void {
|
|
$video = Video::factory()->createOne([
|
|
Video::ATTRIBUTE_NC => false,
|
|
]);
|
|
|
|
$this->assertStringNotContainsString('NC', $video->tags);
|
|
});
|
|
|
|
test('dvd tag', function (): void {
|
|
$source = VideoSource::DVD;
|
|
|
|
$video = Video::factory()->createOne([
|
|
Video::ATTRIBUTE_SOURCE => $source->value,
|
|
]);
|
|
|
|
$this->assertStringContainsString($source->localize(), $video->tags);
|
|
});
|
|
|
|
test('bd tag', function (): void {
|
|
$source = VideoSource::BD;
|
|
|
|
$video = Video::factory()->createOne([
|
|
Video::ATTRIBUTE_SOURCE => $source->value,
|
|
]);
|
|
|
|
$this->assertStringContainsString($source->localize(), $video->tags);
|
|
});
|
|
|
|
test('other source tag', function (): void {
|
|
$source = null;
|
|
while ($source === null) {
|
|
$sourceCandidate = Arr::random(VideoSource::cases());
|
|
if ($sourceCandidate !== VideoSource::BD && $sourceCandidate !== VideoSource::DVD) {
|
|
$source = $sourceCandidate;
|
|
}
|
|
}
|
|
|
|
$video = Video::factory()->createOne([
|
|
Video::ATTRIBUTE_SOURCE => $source->value,
|
|
]);
|
|
|
|
$this->assertStringNotContainsString($source->localize(), $video->tags);
|
|
});
|
|
|
|
test('resolution tag', function (): void {
|
|
$video = Video::factory()->createOne();
|
|
|
|
$this->assertStringContainsString(strval($video->resolution), $video->tags);
|
|
});
|
|
|
|
test('no720 resolution tag', function (): void {
|
|
$video = Video::factory()->createOne([
|
|
Video::ATTRIBUTE_RESOLUTION => 720,
|
|
]);
|
|
|
|
$this->assertStringNotContainsString(strval($video->resolution), $video->tags);
|
|
});
|
|
|
|
test('subbed tag', function (): void {
|
|
$video = Video::factory()->createOne([
|
|
Video::ATTRIBUTE_SUBBED => true,
|
|
]);
|
|
|
|
$this->assertStringContainsString('Subbed', $video->tags);
|
|
$this->assertStringNotContainsString('Lyrics', $video->tags);
|
|
});
|
|
|
|
test('lyrics tag', function (): void {
|
|
$video = Video::factory()->createOne([
|
|
Video::ATTRIBUTE_SUBBED => false,
|
|
Video::ATTRIBUTE_LYRICS => true,
|
|
]);
|
|
|
|
$this->assertStringNotContainsString('Subbed', $video->tags);
|
|
$this->assertStringContainsString('Lyrics', $video->tags);
|
|
});
|
|
|
|
test('source priority', function (array $a, array $b): void {
|
|
$first = Video::factory()->createOne($a);
|
|
|
|
$second = Video::factory()->createOne($b);
|
|
|
|
$this->assertGreaterThan($first->getAttribute(Video::ATTRIBUTE_PRIORITY), $second->getAttribute(Video::ATTRIBUTE_PRIORITY));
|
|
})->with('priorityProvider');
|
|
test('entries', function (): void {
|
|
$entryCount = fake()->randomDigitNotNull();
|
|
|
|
$video = Video::factory()
|
|
->has(AnimeThemeEntry::factory()->for(AnimeTheme::factory()->for(Anime::factory()))->count($entryCount))
|
|
->createOne();
|
|
|
|
$this->assertInstanceOf(BelongsToMany::class, $video->animethemeentries());
|
|
$this->assertEquals($entryCount, $video->animethemeentries()->count());
|
|
$this->assertInstanceOf(AnimeThemeEntry::class, $video->animethemeentries()->first());
|
|
$this->assertEquals(AnimeThemeEntryVideo::class, $video->animethemeentries()->getPivotClass());
|
|
});
|
|
|
|
test('audio', function (): void {
|
|
$video = Video::factory()
|
|
->for(Audio::factory())
|
|
->createOne();
|
|
|
|
$this->assertInstanceOf(BelongsTo::class, $video->audio());
|
|
$this->assertInstanceOf(Audio::class, $video->audio()->first());
|
|
});
|
|
|
|
test('tracks public', function (): void {
|
|
$trackCount = fake()->randomDigitNotNull();
|
|
|
|
$playlist = Playlist::factory()->createOne([Playlist::ATTRIBUTE_VISIBILITY => PlaylistVisibility::PUBLIC]);
|
|
$video = Video::factory()
|
|
->has(PlaylistTrack::factory()->for($playlist)->count($trackCount), Video::RELATION_TRACKS)
|
|
->createOne();
|
|
|
|
$this->assertInstanceOf(HasMany::class, $video->tracks());
|
|
$this->assertEquals($trackCount, $video->tracks()->count());
|
|
$this->assertInstanceOf(PlaylistTrack::class, $video->tracks()->first());
|
|
});
|
|
|
|
test('tracks not public', function (): void {
|
|
$trackCount = fake()->randomDigitNotNull();
|
|
|
|
$visibility = Arr::random([PlaylistVisibility::PRIVATE, PlaylistVisibility::UNLISTED]);
|
|
$playlist = Playlist::factory()->createOne([Playlist::ATTRIBUTE_VISIBILITY => $visibility]);
|
|
$video = Video::factory()
|
|
->has(PlaylistTrack::factory()->for($playlist)->count($trackCount), Video::RELATION_TRACKS)
|
|
->createOne();
|
|
|
|
$this->assertInstanceOf(HasMany::class, $video->tracks());
|
|
$this->assertNotEquals($trackCount, $video->tracks()->count());
|
|
});
|
|
|
|
test('script', function (): void {
|
|
$video = Video::factory()
|
|
->has(VideoScript::factory(), Video::RELATION_SCRIPT)
|
|
->createOne();
|
|
|
|
$this->assertInstanceOf(HasOne::class, $video->videoscript());
|
|
$this->assertInstanceOf(VideoScript::class, $video->videoscript()->first());
|
|
});
|
|
/**
|
|
* Provider for source priority testing.
|
|
*
|
|
* @return array
|
|
*/
|
|
dataset('priorityProvider', fn (): array => [
|
|
[
|
|
[
|
|
Video::ATTRIBUTE_SOURCE => VideoSource::WEB->value,
|
|
],
|
|
[
|
|
Video::ATTRIBUTE_SOURCE => VideoSource::BD->value,
|
|
],
|
|
],
|
|
[
|
|
[
|
|
Video::ATTRIBUTE_SOURCE => VideoSource::BD->value,
|
|
Video::ATTRIBUTE_OVERLAP => VideoOverlap::OVER->value,
|
|
Video::ATTRIBUTE_LYRICS => false,
|
|
Video::ATTRIBUTE_SUBBED => false,
|
|
],
|
|
[
|
|
Video::ATTRIBUTE_SOURCE => VideoSource::BD->value,
|
|
Video::ATTRIBUTE_OVERLAP => VideoOverlap::NONE->value,
|
|
Video::ATTRIBUTE_LYRICS => false,
|
|
Video::ATTRIBUTE_SUBBED => false,
|
|
],
|
|
],
|
|
[
|
|
[
|
|
Video::ATTRIBUTE_SOURCE => VideoSource::BD->value,
|
|
Video::ATTRIBUTE_OVERLAP => VideoOverlap::TRANS->value,
|
|
Video::ATTRIBUTE_LYRICS => false,
|
|
Video::ATTRIBUTE_SUBBED => false,
|
|
],
|
|
[
|
|
Video::ATTRIBUTE_SOURCE => VideoSource::BD->value,
|
|
Video::ATTRIBUTE_OVERLAP => VideoOverlap::NONE->value,
|
|
Video::ATTRIBUTE_LYRICS => false,
|
|
Video::ATTRIBUTE_SUBBED => false,
|
|
],
|
|
],
|
|
[
|
|
[
|
|
Video::ATTRIBUTE_SOURCE => VideoSource::BD->value,
|
|
Video::ATTRIBUTE_OVERLAP => VideoOverlap::NONE->value,
|
|
Video::ATTRIBUTE_LYRICS => true,
|
|
Video::ATTRIBUTE_SUBBED => false,
|
|
],
|
|
[
|
|
Video::ATTRIBUTE_SOURCE => VideoSource::BD->value,
|
|
Video::ATTRIBUTE_OVERLAP => VideoOverlap::NONE->value,
|
|
Video::ATTRIBUTE_LYRICS => false,
|
|
Video::ATTRIBUTE_SUBBED => false,
|
|
],
|
|
],
|
|
[
|
|
[
|
|
Video::ATTRIBUTE_SOURCE => VideoSource::BD->value,
|
|
Video::ATTRIBUTE_OVERLAP => VideoOverlap::NONE->value,
|
|
Video::ATTRIBUTE_LYRICS => false,
|
|
Video::ATTRIBUTE_SUBBED => true,
|
|
],
|
|
[
|
|
Video::ATTRIBUTE_SOURCE => VideoSource::BD->value,
|
|
Video::ATTRIBUTE_OVERLAP => VideoOverlap::NONE,
|
|
Video::ATTRIBUTE_LYRICS => false,
|
|
Video::ATTRIBUTE_SUBBED => false,
|
|
],
|
|
],
|
|
]);
|
|
|
|
test('video storage deletion', function (): void {
|
|
$fs = Storage::fake(Config::get(VideoConstants::DEFAULT_DISK_QUALIFIED));
|
|
$file = File::fake()->create(fake()->word().'.webm', fake()->randomDigitNotNull());
|
|
$fsFile = $fs->putFile('', $file);
|
|
|
|
$video = Video::factory()->createOne([
|
|
Video::ATTRIBUTE_PATH => $fsFile,
|
|
]);
|
|
|
|
$video->delete();
|
|
|
|
$this->assertTrue($fs->exists($video->path));
|
|
});
|
|
|
|
test('video storage force deletion', function (): void {
|
|
Event::fakeExcept(VideoForceDeleting::class);
|
|
|
|
$fs = Storage::fake(Config::get(VideoConstants::DEFAULT_DISK_QUALIFIED));
|
|
$file = File::fake()->create(fake()->word().'.webm', fake()->randomDigitNotNull());
|
|
$fsFile = $fs->putFile('', $file);
|
|
|
|
$video = Video::factory()->createOne([
|
|
Video::ATTRIBUTE_PATH => $fsFile,
|
|
]);
|
|
|
|
$video->forceDelete();
|
|
|
|
$this->assertFalse($fs->exists($video->path));
|
|
});
|