mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
57 lines
1.6 KiB
PHP
57 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Models\Playlist;
|
|
use App\Models\Song;
|
|
use App\Models\User;
|
|
|
|
class PlaylistSongTest extends TestCase
|
|
{
|
|
public function testUpdatePlaylistSongs(): void
|
|
{
|
|
$this->doTestUpdatePlaylistSongs();
|
|
}
|
|
|
|
/** @deprecated */
|
|
public function testSyncPlaylist(): void
|
|
{
|
|
$this->doTestUpdatePlaylistSongs(true);
|
|
}
|
|
|
|
private function doTestUpdatePlaylistSongs(bool $useDeprecatedRoute = false): void
|
|
{
|
|
/** @var User $user */
|
|
$user = User::factory()->create();
|
|
|
|
/** @var Playlist $playlist */
|
|
$playlist = Playlist::factory()->for($user)->create();
|
|
|
|
$toRemainSongs = Song::factory(3)->create();
|
|
$toBeRemovedSongs = Song::factory(2)->create();
|
|
$playlist->songs()->attach($toRemainSongs->merge($toBeRemovedSongs));
|
|
|
|
$path = $useDeprecatedRoute ? "api/playlist/$playlist->id/sync" : "api/playlist/$playlist->id/songs";
|
|
|
|
$this->putAs($path, ['songs' => $toRemainSongs->pluck('id')->all()], $user)->assertNoContent();
|
|
|
|
self::assertEqualsCanonicalizing(
|
|
$toRemainSongs->pluck('id')->all(),
|
|
$playlist->refresh()->songs->pluck('id')->all()
|
|
);
|
|
}
|
|
|
|
public function testGetPlaylistSongs(): void
|
|
{
|
|
/** @var Playlist $playlist */
|
|
$playlist = Playlist::factory()->create();
|
|
|
|
$songs = Song::factory(2)->create();
|
|
$playlist->songs()->saveMany($songs);
|
|
|
|
$responseIds = $this->getAs("api/playlist/$playlist->id/songs", $playlist->user)
|
|
->json();
|
|
|
|
self::assertEqualsCanonicalizing($responseIds, $songs->pluck('id')->all());
|
|
}
|
|
}
|