mirror of
https://github.com/koel/koel
synced 2024-11-28 15:00:42 +00:00
55 lines
1.6 KiB
PHP
55 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace Tests\Integration\Services;
|
|
|
|
use App\Models\Album;
|
|
use App\Services\MediaMetadataService;
|
|
use Tests\TestCase;
|
|
|
|
class MediaMetadataServiceTest extends TestCase
|
|
{
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->cleanUp();
|
|
}
|
|
|
|
public function testGetAlbumThumbnailUrl(): void
|
|
{
|
|
copy(__DIR__ . '/../../blobs/cover.png', album_cover_path('album-cover-for-thumbnail-test.jpg'));
|
|
|
|
/** @var Album $album */
|
|
$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
|
|
{
|
|
/** @var Album $album */
|
|
$album = Album::factory()->create(['cover' => '']);
|
|
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();
|
|
}
|
|
}
|