koel/tests/Feature/AlbumInformationTest.php
2023-06-05 23:46:41 +02:00

75 lines
2.1 KiB
PHP

<?php
namespace Tests\Feature;
use App\Models\Album;
use App\Services\MediaInformationService;
use App\Values\AlbumInformation;
use Mockery;
class AlbumInformationTest extends TestCase
{
private const JSON_STRUCTURE = [
'url',
'cover',
'wiki' => [
'summary',
'full',
],
'tracks' => [
'*' => [
'title',
'length',
'url',
],
],
];
public function testGet(): void
{
config(['koel.lastfm.key' => 'foo']);
config(['koel.lastfm.secret' => 'geheim']);
/** @var Album $album */
$album = Album::factory()->create();
$lastfm = self::mock(MediaInformationService::class);
$lastfm->shouldReceive('getAlbumInformation')
->with(Mockery::on(static fn (Album $a) => $a->is($album)))
->andReturn(AlbumInformation::make(
url: 'https://lastfm.com/album/foo',
cover: 'https://lastfm.com/cover/foo',
wiki: [
'summary' => 'foo',
'full' => 'bar',
],
tracks: [
[
'title' => 'foo',
'length' => 123,
'url' => 'https://lastfm.com/track/foo',
],
[
'title' => 'bar',
'length' => 456,
'url' => 'https://lastfm.com/track/bar',
],
]
));
$this->getAs('api/albums/' . $album->id . '/information')
->assertJsonStructure(self::JSON_STRUCTURE);
}
public function testGetWithoutLastfmStillReturnsValidStructure(): void
{
config(['koel.lastfm.key' => null]);
config(['koel.lastfm.secret' => null]);
/** @var Album $album */
$album = Album::factory()->create();
$this->getAs('api/albums/' . $album->id . '/information')
->assertJsonStructure(self::JSON_STRUCTURE);
}
}