koel/tests/Feature/PlaylistTest.php

149 lines
4.3 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();
2022-07-27 08:49:33 +00:00
$response = $this->postAs('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'],
]);
2022-07-27 08:49:33 +00:00
$this->postAs('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
{
2022-07-27 08:49:33 +00:00
$this->postAs('api/playlist', [
'name' => 'Smart Foo Bar',
'rules' => [
[
'id' => 12345,
'rules' => [
SmartPlaylistRule::create([
'model' => 'artist.name',
'operator' => SmartPlaylistRule::OPERATOR_IS,
'value' => ['Bob Dylan'],
])->toArray(),
],
],
],
'songs' => Song::orderBy('id')->take(3)->get()->pluck('id')->all(),
]);
/** @var Playlist $playlist */
$playlist = Playlist::orderBy('id', 'desc')->first();
self::assertSame('Smart Foo Bar', $playlist->name);
self::assertEmpty($playlist->songs);
}
public function testCreatingPlaylistWithNonExistentSongsFails(): void
{
2022-07-27 15:32:36 +00:00
$this->postAs('api/playlist', [
'name' => 'Foo Bar',
'rules' => [],
'songs' => ['foo'],
2022-07-27 15:32:36 +00:00
])
->assertUnprocessable();
}
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 Playlist $playlist */
2022-07-27 15:32:36 +00:00
$playlist = Playlist::factory()->create(['name' => 'Foo']);
2015-12-13 04:42:28 +00:00
2022-07-27 15:32:36 +00:00
$this->putAs("api/playlist/$playlist->id", ['name' => 'Bar'], $playlist->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 */
2022-07-27 15:32:36 +00:00
$playlist = Playlist::factory()->create(['name' => 'Foo']);
2015-12-13 04:42:28 +00:00
2022-07-27 15:32:36 +00:00
$this->putAs("api/playlist/$playlist->id", ['name' => 'Qux'])->assertForbidden();
2015-12-13 04:42:28 +00:00
}
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 Playlist $playlist */
2022-07-27 15:32:36 +00:00
$playlist = Playlist::factory()->create();
2015-12-13 04:42:28 +00:00
2022-07-27 15:32:36 +00:00
$this->deleteAs("api/playlist/$playlist->id", [], $playlist->user);
self::assertModelMissing($playlist);
2020-09-06 18:21:39 +00:00
}
public function testNonOwnerCannotDeletePlaylist(): void
{
/** @var Playlist $playlist */
$playlist = Playlist::factory()->create();
2015-12-13 04:42:28 +00:00
2022-07-27 15:32:36 +00:00
$this->deleteAs("api/playlist/$playlist->id")->assertForbidden();
self::assertModelExists($playlist);
2015-12-13 04:42:28 +00:00
}
}