mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
175 lines
5.5 KiB
PHP
175 lines
5.5 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Models\Album;
|
|
use App\Models\Artist;
|
|
use App\Models\Interaction;
|
|
use App\Models\Playlist;
|
|
use App\Models\Song;
|
|
use App\Services\DownloadService;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
use Mockery;
|
|
use Mockery\MockInterface;
|
|
use PHPUnit\Framework\Attributes\Test;
|
|
use Tests\TestCase;
|
|
|
|
use function Tests\create_user;
|
|
use function Tests\test_path;
|
|
|
|
class DownloadTest extends TestCase
|
|
{
|
|
private MockInterface|DownloadService $downloadService;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->downloadService = self::mock(DownloadService::class);
|
|
}
|
|
|
|
#[Test]
|
|
public function nonLoggedInUserCannotDownload(): void
|
|
{
|
|
$this->downloadService->shouldNotReceive('getDownloadablePath');
|
|
|
|
$this->get('download/songs?songs[]=' . Song::factory()->create()->id)
|
|
->assertUnauthorized();
|
|
}
|
|
|
|
#[Test]
|
|
public function downloadOneSong(): void
|
|
{
|
|
$song = Song::factory()->create();
|
|
$user = create_user();
|
|
|
|
$this->downloadService
|
|
->shouldReceive('getDownloadablePath')
|
|
->once()
|
|
->with(Mockery::on(static function (Collection $retrievedSongs) use ($song) {
|
|
return $retrievedSongs->count() === 1 && $retrievedSongs->first()->is($song);
|
|
}))
|
|
->andReturn(test_path('songs/blank.mp3'));
|
|
|
|
$this->get("download/songs?songs[]={$song->id}&api_token=" . $user->createToken('Koel')->plainTextToken)
|
|
->assertOk();
|
|
}
|
|
|
|
#[Test]
|
|
public function downloadMultipleSongs(): void
|
|
{
|
|
$songs = Song::factory(2)->create();
|
|
$user = create_user();
|
|
|
|
$this->downloadService
|
|
->shouldReceive('getDownloadablePath')
|
|
->once()
|
|
->with(Mockery::on(static function (Collection $retrievedSongs) use ($songs): bool {
|
|
self::assertEqualsCanonicalizing($retrievedSongs->modelKeys(), $songs->modelKeys());
|
|
|
|
return true;
|
|
}))
|
|
->andReturn(test_path('songs/blank.mp3')); // should be a zip file, but we're testing here…
|
|
|
|
$this->get(
|
|
"download/songs?songs[]={$songs[0]->id}&songs[]={$songs[1]->id}&api_token="
|
|
. $user->createToken('Koel')->plainTextToken
|
|
)
|
|
->assertOk();
|
|
}
|
|
|
|
#[Test]
|
|
public function downloadAlbum(): void
|
|
{
|
|
$album = Album::factory()->create();
|
|
$songs = Song::factory(3)->for($album)->create();
|
|
$user = create_user();
|
|
|
|
$this->downloadService
|
|
->shouldReceive('getDownloadablePath')
|
|
->once()
|
|
->with(Mockery::on(static function (Collection $retrievedSongs) use ($songs): bool {
|
|
self::assertEqualsCanonicalizing($retrievedSongs->modelKeys(), $songs->modelKeys());
|
|
|
|
return true;
|
|
}))
|
|
->andReturn(test_path('songs/blank.mp3'));
|
|
|
|
$this->get("download/album/{$album->id}?api_token=" . $user->createToken('Koel')->plainTextToken)
|
|
->assertOk();
|
|
}
|
|
|
|
#[Test]
|
|
public function downloadArtist(): void
|
|
{
|
|
$artist = Artist::factory()->create();
|
|
$songs = Song::factory(3)->for($artist)->create();
|
|
$user = create_user();
|
|
|
|
$this->downloadService
|
|
->shouldReceive('getDownloadablePath')
|
|
->once()
|
|
->with(Mockery::on(static function (Collection $retrievedSongs) use ($songs): bool {
|
|
self::assertEqualsCanonicalizing($retrievedSongs->modelKeys(), $songs->modelKeys());
|
|
|
|
return true;
|
|
}))
|
|
->andReturn(test_path('songs/blank.mp3'));
|
|
|
|
$this->get("download/artist/{$artist->id}?api_token=" . $user->createToken('Koel')->plainTextToken)
|
|
->assertOk();
|
|
}
|
|
|
|
#[Test]
|
|
public function downloadPlaylist(): void
|
|
{
|
|
$user = create_user();
|
|
$songs = Song::factory(3)->create();
|
|
|
|
/** @var Playlist $playlist */
|
|
$playlist = Playlist::factory()->for($user)->create();
|
|
$playlist->addPlayables($songs);
|
|
|
|
$this->downloadService
|
|
->shouldReceive('getDownloadablePath')
|
|
->with(Mockery::on(static function (Collection $retrievedSongs) use ($songs): bool {
|
|
self::assertEqualsCanonicalizing($retrievedSongs->modelKeys(), $songs->modelKeys());
|
|
|
|
return true;
|
|
}))
|
|
->once()
|
|
->andReturn(test_path('songs/blank.mp3'));
|
|
|
|
$this->get("download/playlist/{$playlist->id}?api_token=" . $user->createToken('Koel')->plainTextToken)
|
|
->assertOk();
|
|
}
|
|
|
|
#[Test]
|
|
public function nonOwnerCannotDownloadPlaylist(): void
|
|
{
|
|
$playlist = Playlist::factory()->create();
|
|
|
|
$this->get("download/playlist/{$playlist->id}?api_token=" . create_user()->createToken('Koel')->plainTextToken)
|
|
->assertForbidden();
|
|
}
|
|
|
|
#[Test]
|
|
public function downloadFavorites(): void
|
|
{
|
|
$user = create_user();
|
|
$favorites = Interaction::factory(3)->for($user)->create(['liked' => true]);
|
|
|
|
$this->downloadService
|
|
->shouldReceive('getDownloadablePath')
|
|
->with(Mockery::on(static function (Collection $songs) use ($favorites): bool {
|
|
self::assertEqualsCanonicalizing($songs->modelKeys(), $favorites->pluck('song_id')->all());
|
|
|
|
return true;
|
|
}))
|
|
->once()
|
|
->andReturn(test_path('songs/blank.mp3'));
|
|
|
|
$this->get('download/favorites?api_token=' . $user->createToken('Koel')->plainTextToken)
|
|
->assertOk();
|
|
}
|
|
}
|