mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-20 03:17:43 +02:00
90 lines
2.4 KiB
PHP
90 lines
2.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Models\Auth\User;
|
|
use App\Models\List\Playlist;
|
|
use App\Models\List\Playlist\PlaylistTrack;
|
|
use App\Models\Wiki\Video;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
test('nameable', function (): void {
|
|
$track = PlaylistTrack::factory()
|
|
->for(Playlist::factory())
|
|
->createOne();
|
|
|
|
$this->assertIsString($track->getName());
|
|
});
|
|
|
|
test('has subtitle', function (): void {
|
|
$track = PlaylistTrack::factory()
|
|
->for(Playlist::factory()->for(User::factory()))
|
|
->createOne();
|
|
|
|
$this->assertIsString($track->getSubtitle());
|
|
});
|
|
|
|
test('hashids', function (): void {
|
|
$playlist = Playlist::factory()->createOne();
|
|
|
|
$track = PlaylistTrack::factory()
|
|
->for($playlist)
|
|
->createOne();
|
|
|
|
$this->assertEmpty(array_diff([$playlist->playlist_id, $track->track_id], $track->hashids()));
|
|
$this->assertEmpty(array_diff($track->hashids(), [$playlist->playlist_id, $track->track_id]));
|
|
});
|
|
|
|
test('playlist', function (): void {
|
|
$track = PlaylistTrack::factory()
|
|
->for(Playlist::factory())
|
|
->createOne();
|
|
|
|
$this->assertInstanceOf(BelongsTo::class, $track->playlist());
|
|
$this->assertInstanceOf(Playlist::class, $track->playlist()->first());
|
|
});
|
|
|
|
test('previous', function (): void {
|
|
$playlist = Playlist::factory()->createOne();
|
|
|
|
$track = PlaylistTrack::factory()
|
|
->for($playlist)
|
|
->createOne();
|
|
|
|
$previous = PlaylistTrack::factory()
|
|
->for($playlist)
|
|
->createOne();
|
|
|
|
$track->previous()->associate($previous)->save();
|
|
|
|
$this->assertInstanceOf(BelongsTo::class, $track->previous());
|
|
$this->assertInstanceOf(PlaylistTrack::class, $track->previous()->first());
|
|
});
|
|
|
|
test('next', function (): void {
|
|
$playlist = Playlist::factory()->createOne();
|
|
|
|
$track = PlaylistTrack::factory()
|
|
->for($playlist)
|
|
->createOne();
|
|
|
|
$next = PlaylistTrack::factory()
|
|
->for($playlist)
|
|
->createOne();
|
|
|
|
$track->next()->associate($next)->save();
|
|
|
|
$this->assertInstanceOf(BelongsTo::class, $track->next());
|
|
$this->assertInstanceOf(PlaylistTrack::class, $track->next()->first());
|
|
});
|
|
|
|
test('video', function (): void {
|
|
$track = PlaylistTrack::factory()
|
|
->for(Playlist::factory())
|
|
->for(Video::factory())
|
|
->createOne();
|
|
|
|
$this->assertInstanceOf(BelongsTo::class, $track->video());
|
|
$this->assertInstanceOf(Video::class, $track->video()->first());
|
|
});
|