koel/tests/Unit/Services/MediaMetadataServiceTest.php

88 lines
2.6 KiB
PHP
Raw Normal View History

<?php
namespace Tests\Unit\Services;
use App\Models\Album;
use App\Models\Artist;
use App\Services\ImageWriter;
use App\Services\MediaMetadataService;
2022-07-18 11:00:37 +00:00
use App\Services\SpotifyService;
use Mockery;
2022-07-16 22:42:29 +00:00
use Mockery\LegacyMockInterface;
use Mockery\MockInterface;
use Tests\TestCase;
class MediaMetadataServiceTest extends TestCase
{
2022-07-18 11:00:37 +00:00
private LegacyMockInterface|SpotifyService|MockInterface $spotifyService;
2022-07-16 22:42:29 +00:00
private LegacyMockInterface|ImageWriter|MockInterface $imageWriter;
2022-07-18 11:00:37 +00:00
private MediaMetadataService $mediaMetadataService;
public function setUp(): void
{
parent::setUp();
2022-07-18 11:00:37 +00:00
$this->spotifyService = Mockery::mock(SpotifyService::class);
$this->imageWriter = Mockery::mock(ImageWriter::class);
2022-07-18 11:00:37 +00:00
2022-08-08 16:00:59 +00:00
$this->mediaMetadataService = new MediaMetadataService($this->spotifyService, $this->imageWriter);
2022-07-18 11:00:37 +00:00
}
public function testTryDownloadAlbumCover(): void
{
/** @var Album $album */
$album = Album::factory()->create(['cover' => '']);
$this->spotifyService
->shouldReceive('tryGetAlbumCover')
->with($album)
->andReturn('/dev/null/cover.jpg');
$this->mediaMetadataService->tryDownloadAlbumCover($album);
}
public function testWriteAlbumCover(): void
{
/** @var Album $album */
$album = Album::factory()->create();
2020-09-12 15:01:48 +00:00
$coverPath = '/koel/public/img/album/foo.jpg';
$this->imageWriter
2022-07-18 11:00:37 +00:00
->shouldReceive('write')
->once()
2022-07-18 11:00:37 +00:00
->with('/koel/public/img/album/foo.jpg', 'dummy-src');
2022-07-18 11:00:37 +00:00
$this->mediaMetadataService->writeAlbumCover($album, 'dummy-src', 'jpg', $coverPath);
self::assertEquals(album_cover_url('foo.jpg'), $album->refresh()->cover);
}
2022-07-18 11:00:37 +00:00
public function testTryDownloadArtistImage(): void
{
/** @var Artist $artist */
$artist = Artist::factory()->create(['image' => '']);
$this->spotifyService
->shouldReceive('tryGetArtistImage')
->with($artist)
->andReturn('/dev/null/img.jpg');
$this->mediaMetadataService->tryDownloadArtistImage($artist);
}
public function testWriteArtistImage(): void
{
2020-06-12 15:05:18 +00:00
/** @var Artist $artist */
$artist = Artist::factory()->create();
2020-09-12 15:01:48 +00:00
$imagePath = '/koel/public/img/artist/foo.jpg';
$this->imageWriter
2022-07-18 11:00:37 +00:00
->shouldReceive('write')
->once()
2022-07-18 11:00:37 +00:00
->with('/koel/public/img/artist/foo.jpg', 'dummy-src');
2022-07-18 11:00:37 +00:00
$this->mediaMetadataService->writeArtistImage($artist, 'dummy-src', 'jpg', $imagePath);
self::assertEquals(artist_image_url('foo.jpg'), $artist->refresh()->image);
}
}