koel/tests/Integration/Services/FileSynchronizerTest.php

57 lines
1.7 KiB
PHP
Raw Normal View History

<?php
namespace Tests\Integration\Services;
use App\Services\FileSynchronizer;
use Tests\TestCase;
class FileSynchronizerTest extends TestCase
{
2021-06-05 10:47:56 +00:00
private FileSynchronizer $fileSynchronizer;
2019-07-22 07:03:23 +00:00
public function setUp(): void
{
parent::setUp();
$this->fileSynchronizer = app(FileSynchronizer::class);
}
2019-07-22 07:03:23 +00:00
public function testGetFileInfo(): void
{
2022-07-07 10:45:57 +00:00
$info = $this->fileSynchronizer->setFile(__DIR__ . '/../../songs/full.mp3')->getFileScanInformation();
$expectedData = [
'artist' => 'Koel',
'album' => 'Koel Testing Vol. 1',
'title' => 'Amet',
'track' => 5,
'disc' => 3,
'lyrics' => "Foo\rbar",
'cover' => [
2020-12-22 20:11:22 +00:00
'data' => file_get_contents(__DIR__ . '/../../blobs/cover.png'),
'image_mime' => 'image/png',
'image_width' => 512,
'image_height' => 512,
'imagetype' => 'PNG',
'picturetype' => 'Other',
'description' => '',
'datalength' => 7627,
],
2022-07-07 10:45:57 +00:00
'path' => realpath(__DIR__ . '/../../songs/full.mp3'),
2020-12-22 20:11:22 +00:00
'mtime' => filemtime(__DIR__ . '/../../songs/full.mp3'),
'albumartist' => '',
];
2022-07-07 10:45:57 +00:00
self::assertArraySubset($expectedData, $info->toArray());
self::assertEqualsWithDelta(10, $info->length, 0.001);
}
/** @test */
public function testSongWithoutTitleHasFileNameAsTitle(): void
{
2020-12-22 20:11:22 +00:00
$this->fileSynchronizer->setFile(__DIR__ . '/../../songs/blank.mp3');
2022-07-07 10:45:57 +00:00
self::assertSame('blank', $this->fileSynchronizer->getFileScanInformation()->title);
}
}