mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
73 lines
2 KiB
PHP
73 lines
2 KiB
PHP
<?php
|
|
|
|
namespace Tests\Unit\Services;
|
|
|
|
use App\Models\Playlist;
|
|
use App\Models\PlaylistFolder;
|
|
use App\Services\PlaylistFolderService;
|
|
use Illuminate\Support\Collection;
|
|
use Tests\TestCase;
|
|
|
|
use function Tests\create_user;
|
|
|
|
class PlaylistFolderServiceTest extends TestCase
|
|
{
|
|
private PlaylistFolderService $service;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->service = new PlaylistFolderService();
|
|
}
|
|
|
|
public function testCreate(): void
|
|
{
|
|
$user = create_user();
|
|
|
|
self::assertCount(0, $user->playlist_folders);
|
|
|
|
$this->service->createFolder($user, 'Classical');
|
|
|
|
self::assertCount(1, $user->refresh()->playlist_folders);
|
|
self::assertSame('Classical', $user->playlist_folders[0]->name);
|
|
}
|
|
|
|
public function testUpdate(): void
|
|
{
|
|
/** @var PlaylistFolder $folder */
|
|
$folder = PlaylistFolder::factory()->create(['name' => 'Metal']);
|
|
|
|
$this->service->renameFolder($folder, 'Classical');
|
|
|
|
self::assertSame('Classical', $folder->fresh()->name);
|
|
}
|
|
|
|
public function testAddPlaylistsToFolder(): void
|
|
{
|
|
/** @var Collection|array<array-key, Playlist> $playlists */
|
|
$playlists = Playlist::factory()->count(3)->create();
|
|
|
|
/** @var PlaylistFolder $folder */
|
|
$folder = PlaylistFolder::factory()->create();
|
|
|
|
$this->service->addPlaylistsToFolder($folder, $playlists->pluck('id')->all());
|
|
|
|
self::assertCount(3, $folder->playlists);
|
|
}
|
|
|
|
public function testMovePlaylistsToRootLevel(): void
|
|
{
|
|
/** @var PlaylistFolder $folder */
|
|
$folder = PlaylistFolder::factory()->create();
|
|
|
|
/** @var Collection|array<array-key, Playlist> $playlists */
|
|
$playlists = Playlist::factory()->count(3)->for($folder, 'folder')->create();
|
|
|
|
$this->service->movePlaylistsToRootLevel($playlists->pluck('id')->all());
|
|
|
|
self::assertCount(0, $folder->playlists);
|
|
|
|
$playlists->each(static fn (Playlist $playlist) => self::assertNull($playlist->refresh()->folder_id));
|
|
}
|
|
}
|