mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
103 lines
3.1 KiB
PHP
103 lines
3.1 KiB
PHP
<?php
|
|
|
|
namespace Tests\Unit\Services;
|
|
|
|
use App\Exceptions\MediaPathNotSetException;
|
|
use App\Exceptions\SongUploadFailedException;
|
|
use App\Models\Setting;
|
|
use App\Models\Song;
|
|
use App\Services\FileSynchronizer;
|
|
use App\Services\UploadService;
|
|
use App\Values\SyncResult;
|
|
use Illuminate\Http\UploadedFile;
|
|
use Mockery;
|
|
use Mockery\LegacyMockInterface;
|
|
use Mockery\MockInterface;
|
|
use Tests\TestCase;
|
|
|
|
class UploadServiceTest extends TestCase
|
|
{
|
|
private FileSynchronizer|MockInterface|LegacyMockInterface $fileSynchronizer;
|
|
private UploadService $uploadService;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->fileSynchronizer = Mockery::mock(FileSynchronizer::class);
|
|
$this->uploadService = new UploadService($this->fileSynchronizer);
|
|
}
|
|
|
|
public function testHandleUploadedFileWithMediaPathNotSet(): void
|
|
{
|
|
Setting::set('media_path');
|
|
self::expectException(MediaPathNotSetException::class);
|
|
$this->uploadService->handleUploadedFile(Mockery::mock(UploadedFile::class));
|
|
}
|
|
|
|
public function testHandleUploadedFileFails(): void
|
|
{
|
|
Setting::set('media_path', '/media/koel');
|
|
|
|
/** @var UploadedFile|MockInterface $file */
|
|
$file = Mockery::mock(UploadedFile::class);
|
|
|
|
$file->shouldReceive('getClientOriginalName')
|
|
->andReturn('foo.mp3');
|
|
|
|
$file->shouldReceive('move')
|
|
->once()
|
|
->with('/media/koel/__KOEL_UPLOADS__/', 'foo.mp3');
|
|
|
|
$this->fileSynchronizer
|
|
->shouldReceive('setFile')
|
|
->once()
|
|
->with('/media/koel/__KOEL_UPLOADS__/foo.mp3')
|
|
->andReturnSelf();
|
|
|
|
$this->fileSynchronizer
|
|
->shouldReceive('sync')
|
|
->once()
|
|
->with()
|
|
->andReturn(SyncResult::error('/media/koel/__KOEL_UPLOADS__/foo.mp3', 'A monkey ate your file oh no'));
|
|
|
|
self::expectException(SongUploadFailedException::class);
|
|
self::expectExceptionMessage('A monkey ate your file oh no');
|
|
$this->uploadService->handleUploadedFile($file);
|
|
}
|
|
|
|
public function testHandleUploadedFile(): void
|
|
{
|
|
Setting::set('media_path', '/media/koel');
|
|
|
|
/** @var UploadedFile|MockInterface $file */
|
|
$file = Mockery::mock(UploadedFile::class);
|
|
|
|
$file->shouldReceive('getClientOriginalName')
|
|
->andReturn('foo.mp3');
|
|
|
|
$file->shouldReceive('move')
|
|
->once()
|
|
->with('/media/koel/__KOEL_UPLOADS__/', 'foo.mp3');
|
|
|
|
$this->fileSynchronizer
|
|
->shouldReceive('setFile')
|
|
->once()
|
|
->with('/media/koel/__KOEL_UPLOADS__/foo.mp3')
|
|
->andReturnSelf();
|
|
|
|
$this->fileSynchronizer
|
|
->shouldReceive('sync')
|
|
->once()
|
|
->andReturn(SyncResult::success('/media/koel/__KOEL_UPLOADS__/foo.mp3'));
|
|
|
|
$song = new Song();
|
|
|
|
$this->fileSynchronizer
|
|
->shouldReceive('getSong')
|
|
->once()
|
|
->andReturn($song);
|
|
|
|
self::assertSame($song, $this->uploadService->handleUploadedFile($file));
|
|
}
|
|
}
|