koel/tests/Feature/UploadTest.php

93 lines
2.4 KiB
PHP
Raw Normal View History

2020-06-07 20:43:04 +00:00
<?php
namespace Tests\Feature;
use App\Events\MediaCacheObsolete;
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;
class UploadTest extends TestCase
{
private $uploadService;
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');
$this->doesntExpectEvents(MediaCacheObsolete::class);
$file = UploadedFile::fake()->create('foo.mp3', 2048);
$this->uploadService
->shouldReceive('handleUploadedFile')
->never();
$this->postAsUser(
'/api/upload',
['file' => $file],
User::factory()->create()
2020-09-06 18:21:39 +00:00
)->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
{
$this->doesntExpectEvents(MediaCacheObsolete::class);
$file = UploadedFile::fake()->create('foo.mp3', 2048);
$this->uploadService
->shouldReceive('handleUploadedFile')
->once()
->with($file)
->andThrow($exceptionClass);
$this->postAsUser(
'/api/upload',
['file' => $file],
User::factory()->admin()->create()
2020-09-06 18:21:39 +00:00
)->assertStatus($statusCode);
2020-06-07 20:43:04 +00:00
}
public function testPost(): void
{
Setting::set('media_path', '/media/koel');
$this->expectsEvents(MediaCacheObsolete::class);
$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);
$this->postAsUser(
'/api/upload',
['file' => $file],
User::factory()->admin()->create()
2020-09-06 18:21:39 +00:00
)->assertJsonStructure([
2020-06-07 20:43:04 +00:00
'album',
'artist',
2020-06-13 19:44:15 +00:00
]);
2020-06-07 20:43:04 +00:00
}
}