koel/tests/Feature/UploadTest.php

81 lines
2.2 KiB
PHP
Raw Normal View History

2020-06-07 20:43:04 +00:00
<?php
namespace Tests\Feature;
use App\Exceptions\MediaPathNotSetException;
use App\Exceptions\SongUploadFailedException;
use App\Models\Setting;
use App\Models\Song;
use App\Models\User;
use App\Services\UploadService;
use Illuminate\Http\UploadedFile;
2022-06-10 10:47:46 +00:00
use Mockery\LegacyMockInterface;
use Mockery\MockInterface;
2020-06-07 20:43:04 +00:00
class UploadTest extends TestCase
{
2022-06-10 10:47:46 +00:00
private UploadService|MockInterface|LegacyMockInterface $uploadService;
2020-06-07 20:43:04 +00:00
public function setUp(): void
{
parent::setUp();
2020-12-22 23:01:49 +00:00
$this->uploadService = self::mock(UploadService::class);
2020-06-07 20:43:04 +00:00
}
public function testUnauthorizedPost(): void
{
Setting::set('media_path', '/media/koel');
$file = UploadedFile::fake()->create('foo.mp3', 2048);
$this->uploadService
->shouldReceive('handleUploadedFile')
->never();
2022-06-10 10:47:46 +00:00
$this->postAsUser('/api/upload', ['file' => $file], User::factory()->create())->assertStatus(403);
2020-06-07 20:43:04 +00:00
}
2020-12-22 20:11:22 +00:00
/** @return array<mixed> */
2020-06-07 20:43:04 +00:00
public function provideUploadExceptions(): array
{
return [
[MediaPathNotSetException::class, 403],
[SongUploadFailedException::class, 400],
];
}
/** @dataProvider provideUploadExceptions */
2020-06-07 20:43:04 +00:00
public function testPostShouldFail(string $exceptionClass, int $statusCode): void
{
$file = UploadedFile::fake()->create('foo.mp3', 2048);
$this->uploadService
->shouldReceive('handleUploadedFile')
->once()
->with($file)
->andThrow($exceptionClass);
2022-06-10 10:47:46 +00:00
$this->postAsUser('/api/upload', ['file' => $file], User::factory()->admin()->create())
->assertStatus($statusCode);
2020-06-07 20:43:04 +00:00
}
public function testPost(): void
{
Setting::set('media_path', '/media/koel');
$file = UploadedFile::fake()->create('foo.mp3', 2048);
/** @var Song $song */
$song = Song::factory()->create();
2020-06-07 20:43:04 +00:00
$this->uploadService
->shouldReceive('handleUploadedFile')
->once()
->with($file)
->andReturn($song);
2022-06-10 10:47:46 +00:00
$this->postAsUser('/api/upload', ['file' => $file], User::factory()->admin()->create())
->assertJsonStructure([
2022-07-07 10:45:57 +00:00
'song',
2022-06-10 10:47:46 +00:00
'album',
]);
2020-06-07 20:43:04 +00:00
}
}