mirror of
https://github.com/koel/koel
synced 2024-12-18 16:44:03 +00:00
314 lines
11 KiB
PHP
314 lines
11 KiB
PHP
<?php
|
|
|
|
namespace Tests\Integration\Services;
|
|
|
|
use App\Models\Playlist;
|
|
use App\Models\PlaylistFolder;
|
|
use App\Models\Podcast;
|
|
use App\Models\Song;
|
|
use App\Services\PlaylistService;
|
|
use App\Values\SmartPlaylistRuleGroupCollection;
|
|
use Illuminate\Support\Collection;
|
|
use InvalidArgumentException as BaseInvalidArgumentException;
|
|
use PHPUnit\Framework\Attributes\Test;
|
|
use Tests\PlusTestCase;
|
|
use Tests\TestCase;
|
|
use Webmozart\Assert\InvalidArgumentException;
|
|
|
|
use function Tests\create_user;
|
|
|
|
class PlaylistServiceTest extends TestCase
|
|
{
|
|
private PlaylistService $service;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->service = app(PlaylistService::class);
|
|
}
|
|
|
|
#[Test]
|
|
public function createPlaylist(): void
|
|
{
|
|
$user = create_user();
|
|
|
|
$playlist = $this->service->createPlaylist('foo', $user);
|
|
|
|
self::assertSame('foo', $playlist->name);
|
|
self::assertTrue($user->is($playlist->user));
|
|
self::assertFalse($playlist->is_smart);
|
|
}
|
|
|
|
#[Test]
|
|
public function createPlaylistWithSongs(): void
|
|
{
|
|
/** @var Collection<array-key, Song> $songs */
|
|
$songs = Song::factory(3)->create();
|
|
|
|
$user = create_user();
|
|
|
|
$playlist = $this->service->createPlaylist('foo', $user, null, $songs->pluck('id')->all());
|
|
|
|
self::assertSame('foo', $playlist->name);
|
|
self::assertTrue($user->is($playlist->user));
|
|
self::assertFalse($playlist->is_smart);
|
|
self::assertEqualsCanonicalizing($playlist->playables->pluck('id')->all(), $songs->pluck('id')->all());
|
|
}
|
|
|
|
#[Test]
|
|
public function createSmartPlaylist(): void
|
|
{
|
|
$rules = SmartPlaylistRuleGroupCollection::create([
|
|
[
|
|
'id' => '45368b8f-fec8-4b72-b826-6b295af0da65',
|
|
'rules' => [
|
|
[
|
|
'id' => '8cfa8700-fbc0-4078-b175-af31c20a3582',
|
|
'model' => 'title',
|
|
'operator' => 'is',
|
|
'value' => ['foo'],
|
|
],
|
|
],
|
|
],
|
|
]);
|
|
|
|
$user = create_user();
|
|
|
|
$playlist = $this->service->createPlaylist('foo', $user, null, [], $rules);
|
|
|
|
self::assertSame('foo', $playlist->name);
|
|
self::assertTrue($user->is($playlist->user));
|
|
self::assertTrue($playlist->is_smart);
|
|
}
|
|
|
|
#[Test]
|
|
public function createPlaylistInFolder(): void
|
|
{
|
|
/** @var PlaylistFolder $folder */
|
|
$folder = PlaylistFolder::factory()->create();
|
|
|
|
$playlist = $this->service->createPlaylist('foo', $folder->user, $folder);
|
|
|
|
self::assertSame('foo', $playlist->name);
|
|
self::assertTrue($folder->ownedBy($playlist->user));
|
|
self::assertTrue($playlist->inFolder($folder));
|
|
}
|
|
|
|
#[Test]
|
|
public function createPlaylistInAnotherUsersFolder(): void
|
|
{
|
|
/** @var PlaylistFolder $folder */
|
|
$folder = PlaylistFolder::factory()->create();
|
|
|
|
$this->expectException(InvalidArgumentException::class);
|
|
|
|
$this->service->createPlaylist('foo', create_user(), $folder);
|
|
}
|
|
|
|
#[Test]
|
|
public function updateSimplePlaylist(): void
|
|
{
|
|
/** @var Playlist $playlist */
|
|
$playlist = Playlist::factory()->create(['name' => 'foo']);
|
|
|
|
$this->service->updatePlaylist($playlist, 'bar');
|
|
|
|
self::assertSame('bar', $playlist->name);
|
|
}
|
|
|
|
#[Test]
|
|
public function updateSmartPlaylist(): void
|
|
{
|
|
$rules = SmartPlaylistRuleGroupCollection::create([
|
|
[
|
|
'id' => '45368b8f-fec8-4b72-b826-6b295af0da65',
|
|
'rules' => [
|
|
[
|
|
'id' => '8cfa8700-fbc0-4078-b175-af31c20a3582',
|
|
'model' => 'title',
|
|
'operator' => 'is',
|
|
'value' => ['foo'],
|
|
],
|
|
],
|
|
],
|
|
]);
|
|
|
|
/** @var Playlist $playlist */
|
|
$playlist = Playlist::factory()->create(['name' => 'foo', 'rules' => $rules]);
|
|
|
|
$this->service->updatePlaylist($playlist, 'bar', null, SmartPlaylistRuleGroupCollection::create([
|
|
[
|
|
'id' => '45368b8f-fec8-4b72-b826-6b295af0da65',
|
|
'rules' => [
|
|
[
|
|
'id' => '8cfa8700-fbc0-4078-b175-af31c20a3582',
|
|
'model' => 'title',
|
|
'operator' => 'is',
|
|
'value' => ['bar'],
|
|
],
|
|
],
|
|
],
|
|
]));
|
|
|
|
$playlist->refresh();
|
|
|
|
self::assertSame('bar', $playlist->name);
|
|
self::assertTrue($playlist->is_smart);
|
|
self::assertSame($playlist->rule_groups->first()->rules->first()->value, ['bar']);
|
|
}
|
|
|
|
#[Test]
|
|
public function settingOwnsSongOnlyFailsForCommunityLicenseWhenCreate(): void
|
|
{
|
|
$this->expectException(BaseInvalidArgumentException::class);
|
|
$this->expectExceptionMessage('"Own songs only" option only works with smart playlists and Plus license.');
|
|
|
|
$this->service->createPlaylist(
|
|
name: 'foo',
|
|
user: create_user(),
|
|
ruleGroups: SmartPlaylistRuleGroupCollection::create([
|
|
[
|
|
'id' => '45368b8f-fec8-4b72-b826-6b295af0da65',
|
|
'rules' => [
|
|
[
|
|
'id' => '8cfa8700-fbc0-4078-b175-af31c20a3582',
|
|
'model' => 'title',
|
|
'operator' => 'is',
|
|
'value' => ['foo'],
|
|
],
|
|
],
|
|
],
|
|
]),
|
|
ownSongsOnly: true
|
|
);
|
|
}
|
|
|
|
#[Test]
|
|
public function settingOwnsSongOnlyFailsForCommunityLicenseWhenUpdate(): void
|
|
{
|
|
$this->expectException(BaseInvalidArgumentException::class);
|
|
$this->expectExceptionMessage('"Own songs only" option only works with smart playlists and Plus license.');
|
|
|
|
/** @var Playlist $playlist */
|
|
$playlist = Playlist::factory()->smart()->create();
|
|
|
|
$this->service->updatePlaylist(
|
|
playlist: $playlist,
|
|
name: 'foo',
|
|
ownSongsOnly: true
|
|
);
|
|
}
|
|
|
|
#[Test]
|
|
public function addSongsToPlaylist(): void
|
|
{
|
|
/** @var Playlist $playlist */
|
|
$playlist = Playlist::factory()->create();
|
|
$playlist->addPlayables(Song::factory(3)->create());
|
|
$songs = Song::factory(2)->create();
|
|
|
|
$addedSongs = $this->service->addPlayablesToPlaylist($playlist, $songs, $playlist->user);
|
|
$playlist->refresh();
|
|
|
|
self::assertCount(2, $addedSongs);
|
|
self::assertCount(5, $playlist->playables);
|
|
self::assertEqualsCanonicalizing($addedSongs->pluck('id')->all(), $songs->pluck('id')->all());
|
|
$songs->each(static fn (Song $song) => self::assertTrue($playlist->playables->contains($song)));
|
|
}
|
|
|
|
#[Test]
|
|
public function addEpisodesToPlaylist(): void
|
|
{
|
|
/** @var Playlist $playlist */
|
|
$playlist = Playlist::factory()->create();
|
|
$playlist->addPlayables(Song::factory(3)->create());
|
|
|
|
/** @var Podcast $podcast */
|
|
$podcast = Podcast::factory()->create();
|
|
$episodes = Song::factory(2)->asEpisode()->for($podcast)->create();
|
|
|
|
$playlist->user->subscribeToPodcast($podcast);
|
|
|
|
$addedEpisodes = $this->service->addPlayablesToPlaylist($playlist, $episodes, $playlist->user);
|
|
$playlist->refresh();
|
|
|
|
self::assertCount(2, $addedEpisodes);
|
|
self::assertCount(5, $playlist->playables);
|
|
self::assertEqualsCanonicalizing($addedEpisodes->pluck('id')->all(), $episodes->pluck('id')->all());
|
|
}
|
|
|
|
#[Test]
|
|
public function addMixOfSongsAndEpisodesToPlaylist(): void
|
|
{
|
|
/** @var Playlist $playlist */
|
|
$playlist = Playlist::factory()->create();
|
|
$playlist->addPlayables(Song::factory(3)->create());
|
|
$playables = Song::factory(2)->asEpisode()->create()
|
|
->merge(Song::factory(2)->create());
|
|
|
|
$addedEpisodes = $this->service->addPlayablesToPlaylist($playlist, $playables, $playlist->user);
|
|
$playlist->refresh();
|
|
|
|
self::assertCount(4, $addedEpisodes);
|
|
self::assertCount(7, $playlist->playables);
|
|
self::assertEqualsCanonicalizing($addedEpisodes->pluck('id')->all(), $playables->pluck('id')->all());
|
|
}
|
|
|
|
#[Test]
|
|
public function privateSongsAreMadePublicWhenAddedToCollaborativePlaylist(): void
|
|
{
|
|
PlusTestCase::enablePlusLicense();
|
|
|
|
/** @var Playlist $playlist */
|
|
$playlist = Playlist::factory()->create();
|
|
$user = create_user();
|
|
$playlist->collaborators()->attach($user);
|
|
$playlist->refresh();
|
|
self::assertTrue($playlist->is_collaborative);
|
|
|
|
$songs = Song::factory(2)->create(['is_public' => false]);
|
|
|
|
$this->service->addPlayablesToPlaylist($playlist, $songs, $user);
|
|
|
|
$songs->each(static fn (Song $song) => self::assertTrue($song->refresh()->is_public));
|
|
}
|
|
|
|
#[Test]
|
|
public function makePlaylistSongsPublic(): void
|
|
{
|
|
/** @var Playlist $playlist */
|
|
$playlist = Playlist::factory()->create();
|
|
$playlist->addPlayables(Song::factory(2)->create(['is_public' => false]));
|
|
|
|
$this->service->makePlaylistContentPublic($playlist);
|
|
|
|
$playlist->playables->each(static fn (Song $song) => self::assertTrue($song->is_public));
|
|
}
|
|
|
|
#[Test]
|
|
public function moveSongsInPlaylist(): void
|
|
{
|
|
/** @var Playlist $playlist */
|
|
$playlist = Playlist::factory()->create();
|
|
|
|
/** @var Collection<array-key, Song> $songs */
|
|
$songs = Song::factory(4)->create();
|
|
$ids = $songs->pluck('id')->all();
|
|
$playlist->addPlayables($songs);
|
|
|
|
$this->service->movePlayablesInPlaylist($playlist, [$ids[2], $ids[3]], $ids[0], 'after');
|
|
self::assertSame([$ids[0], $ids[2], $ids[3], $ids[1]], $playlist->refresh()->playables->pluck('id')->all());
|
|
|
|
$this->service->movePlayablesInPlaylist($playlist, [$ids[0]], $ids[3], 'before');
|
|
self::assertSame([$ids[2], $ids[0], $ids[3], $ids[1]], $playlist->refresh()->playables->pluck('id')->all());
|
|
|
|
// move to the first position
|
|
$this->service->movePlayablesInPlaylist($playlist, [$ids[0], $ids[1]], $ids[2], 'before');
|
|
self::assertSame([$ids[0], $ids[1], $ids[2], $ids[3]], $playlist->refresh()->playables->pluck('id')->all());
|
|
|
|
// move to the last position
|
|
$this->service->movePlayablesInPlaylist($playlist, [$ids[0], $ids[1]], $ids[3], 'after');
|
|
self::assertSame([$ids[2], $ids[3], $ids[0], $ids[1]], $playlist->refresh()->playables->pluck('id')->all());
|
|
}
|
|
}
|