koel/tests/Feature/PlaylistTest.php

201 lines
5.8 KiB
PHP
Raw Normal View History

2015-12-13 04:42:28 +00:00
<?php
2017-02-14 06:53:02 +00:00
namespace Tests\Feature;
2015-12-13 04:42:28 +00:00
use App\Models\Playlist;
2015-12-14 13:22:39 +00:00
use App\Models\Song;
use App\Models\User;
use App\Values\SmartPlaylistRule;
2021-06-05 10:47:56 +00:00
use Illuminate\Support\Collection;
2015-12-13 04:42:28 +00:00
2017-08-05 16:56:11 +00:00
class PlaylistTest extends TestCase
2015-12-13 04:42:28 +00:00
{
2019-07-22 07:03:23 +00:00
public function setUp(): void
2015-12-13 04:42:28 +00:00
{
parent::setUp();
static::createSampleMediaSet();
2015-12-13 04:42:28 +00:00
}
2019-07-22 07:03:23 +00:00
public function testCreatingPlaylist(): void
2015-12-13 04:42:28 +00:00
{
2020-09-06 18:21:39 +00:00
/** @var User $user */
$user = User::factory()->create();
2021-06-05 10:47:56 +00:00
/** @var array<Song>|Collection $songs */
2015-12-13 04:42:28 +00:00
$songs = Song::orderBy('id')->take(3)->get();
$response = $this->postAsUser('api/playlist', [
2018-11-25 21:21:46 +00:00
'name' => 'Foo Bar',
'songs' => $songs->pluck('id')->toArray(),
'rules' => [],
], $user);
2015-12-13 04:42:28 +00:00
$response->assertOk();
2015-12-13 04:42:28 +00:00
2021-06-05 10:47:56 +00:00
/** @var Playlist $playlist */
2015-12-13 04:42:28 +00:00
$playlist = Playlist::orderBy('id', 'desc')->first();
self::assertSame('Foo Bar', $playlist->name);
self::assertTrue($playlist->user->is($user));
self::assertEqualsCanonicalizing($songs->pluck('id')->all(), $playlist->songs->pluck('id')->all());
2015-12-13 04:42:28 +00:00
}
public function testCreatingSmartPlaylist(): void
{
/** @var User $user */
$user = User::factory()->create();
$rule = SmartPlaylistRule::create([
'model' => 'artist.name',
'operator' => SmartPlaylistRule::OPERATOR_IS,
'value' => ['Bob Dylan'],
]);
$this->postAsUser('api/playlist', [
'name' => 'Smart Foo Bar',
'rules' => [
[
'id' => 12345,
'rules' => [$rule->toArray()],
],
],
], $user);
/** @var Playlist $playlist */
$playlist = Playlist::orderBy('id', 'desc')->first();
self::assertSame('Smart Foo Bar', $playlist->name);
self::assertTrue($playlist->user->is($user));
self::assertTrue($playlist->is_smart);
self::assertCount(1, $playlist->rule_groups);
self::assertTrue($rule->equals($playlist->rule_groups[0]->rules[0]));
}
public function testCreatingSmartPlaylistIgnoresSongs(): void
{
/** @var User $user */
$user = User::factory()->create();
$this->postAsUser('api/playlist', [
'name' => 'Smart Foo Bar',
'rules' => [
SmartPlaylistRule::create([
'model' => 'artist.name',
'operator' => SmartPlaylistRule::OPERATOR_IS,
'value' => ['Bob Dylan'],
])->toArray(),
],
'songs' => Song::orderBy('id')->take(3)->get()->pluck('id')->all(),
], $user);
/** @var Playlist $playlist */
$playlist = Playlist::orderBy('id', 'desc')->first();
self::assertSame('Smart Foo Bar', $playlist->name);
self::assertEmpty($playlist->songs);
}
2020-09-06 18:21:39 +00:00
public function testUpdatePlaylistName(): void
2015-12-13 04:42:28 +00:00
{
2020-09-06 18:21:39 +00:00
/** @var User $user */
$user = User::factory()->create();
2015-12-13 04:42:28 +00:00
2020-09-06 18:21:39 +00:00
/** @var Playlist $playlist */
$playlist = Playlist::factory()->create([
2015-12-13 04:42:28 +00:00
'user_id' => $user->id,
2020-09-06 18:21:39 +00:00
'name' => 'Foo',
2015-12-13 04:42:28 +00:00
]);
$this->putAsUser("api/playlist/$playlist->id", ['name' => 'Bar'], $user);
2015-12-13 04:42:28 +00:00
2020-09-06 18:21:39 +00:00
self::assertSame('Bar', $playlist->refresh()->name);
}
public function testNonOwnerCannotUpdatePlaylist(): void
{
/** @var Playlist $playlist */
$playlist = Playlist::factory()->create([
2020-09-06 18:21:39 +00:00
'name' => 'Foo',
2015-12-13 04:42:28 +00:00
]);
$response = $this->putAsUser("api/playlist/$playlist->id", ['name' => 'Qux']);
2020-09-06 18:21:39 +00:00
$response->assertStatus(403);
2015-12-13 04:42:28 +00:00
}
2020-09-06 18:21:39 +00:00
public function testSyncPlaylist(): void
2015-12-13 04:42:28 +00:00
{
2020-09-06 18:21:39 +00:00
/** @var User $user */
$user = User::factory()->create();
2015-12-13 04:42:28 +00:00
2020-09-06 18:21:39 +00:00
/** @var Playlist $playlist */
$playlist = Playlist::factory()->create([
2015-12-13 04:42:28 +00:00
'user_id' => $user->id,
]);
2021-06-05 10:47:56 +00:00
/** @var array<Song>|Collection $songs */
2015-12-13 04:42:28 +00:00
$songs = Song::orderBy('id')->take(4)->get();
$playlist->songs()->attach($songs->pluck('id')->all());
2015-12-13 04:42:28 +00:00
2021-06-05 10:47:56 +00:00
/** @var Song $removedSong */
2015-12-13 04:42:28 +00:00
$removedSong = $songs->pop();
$this->putAsUser("api/playlist/$playlist->id/sync", [
'songs' => $songs->pluck('id')->all(),
], $user);
2015-12-13 04:42:28 +00:00
// We should still see the first 3 songs, but not the removed one
foreach ($songs as $song) {
2020-09-06 18:21:39 +00:00
self::assertDatabaseHas('playlist_song', [
2015-12-13 04:42:28 +00:00
'playlist_id' => $playlist->id,
'song_id' => $song->id,
]);
}
2020-09-06 18:21:39 +00:00
self::assertDatabaseMissing('playlist_song', [
2015-12-13 04:42:28 +00:00
'playlist_id' => $playlist->id,
'song_id' => $removedSong->id,
]);
}
2020-09-06 18:21:39 +00:00
public function testDeletePlaylist(): void
2015-12-13 04:42:28 +00:00
{
2020-09-06 18:21:39 +00:00
/** @var User $user */
$user = User::factory()->create();
2015-12-13 04:42:28 +00:00
2020-09-06 18:21:39 +00:00
/** @var Playlist $playlist */
$playlist = Playlist::factory()->create([
2015-12-13 04:42:28 +00:00
'user_id' => $user->id,
]);
$this->deleteAsUser("api/playlist/$playlist->id", [], $user);
2020-09-06 18:21:39 +00:00
self::assertDatabaseMissing('playlists', ['id' => $playlist->id]);
}
public function testNonOwnerCannotDeletePlaylist(): void
{
/** @var Playlist $playlist */
$playlist = Playlist::factory()->create();
2015-12-13 04:42:28 +00:00
$this->deleteAsUser("api/playlist/$playlist->id")
2020-09-06 18:21:39 +00:00
->assertStatus(403);
2015-12-13 04:42:28 +00:00
}
2020-09-06 18:21:39 +00:00
public function testGetPlaylist(): void
{
2020-09-06 18:21:39 +00:00
/** @var User $user */
$user = User::factory()->create();
2020-09-06 18:21:39 +00:00
/** @var Playlist $playlist */
$playlist = Playlist::factory()->create([
'user_id' => $user->id,
]);
$songs = Song::factory(2)->create();
$playlist->songs()->saveMany($songs);
$this->getAsUser("api/playlist/$playlist->id/songs", $user)
2020-09-06 18:21:39 +00:00
->assertJson($songs->pluck('id')->all());
}
2015-12-13 04:42:28 +00:00
}