cleanUp(); } public function testGetAlbumThumbnailUrl(): void { copy(__DIR__ . '/../../blobs/cover.png', album_cover_path('album-cover-for-thumbnail-test.jpg')); $album = Album::factory()->create(['cover' => 'album-cover-for-thumbnail-test.jpg']); self::assertSame( album_cover_url('album-cover-for-thumbnail-test_thumb.jpg'), app(MediaMetadataService::class)->getAlbumThumbnailUrl($album) ); self::assertFileExists(album_cover_path('album-cover-for-thumbnail-test_thumb.jpg')); } public function testGetAlbumThumbnailUrlWithNoCover(): void { $album = Album::factory()->create(['cover' => null]); self::assertNull(app(MediaMetadataService::class)->getAlbumThumbnailUrl($album)); } private function cleanUp(): void { @unlink(album_cover_path('album-cover-for-thumbnail-test.jpg')); @unlink(album_cover_path('album-cover-for-thumbnail-test_thumb.jpg')); self::assertFileDoesNotExist(album_cover_path('album-cover-for-thumbnail-test.jpg')); self::assertFileDoesNotExist(album_cover_path('album-cover-for-thumbnail-test_thumb.jpg')); } protected function tearDown(): void { $this->cleanUp(); parent::tearDown(); } }