mirror of
https://github.com/koel/koel
synced 2024-11-14 00:17:13 +00:00
55 lines
1.4 KiB
PHP
55 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Events\LibraryChanged;
|
|
use App\Models\Artist;
|
|
use App\Models\User;
|
|
use App\Services\MediaMetadataService;
|
|
use Mockery;
|
|
use Mockery\MockInterface;
|
|
|
|
class ArtistImageTest extends TestCase
|
|
{
|
|
/** @var MockInterface|MediaMetadataService */
|
|
private $mediaMetadataService;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->mediaMetadataService = self::mock(MediaMetadataService::class);
|
|
}
|
|
|
|
public function testUpdate(): void
|
|
{
|
|
$this->expectsEvents(LibraryChanged::class);
|
|
Artist::factory()->create(['id' => 9999]);
|
|
|
|
$this->mediaMetadataService
|
|
->shouldReceive('writeArtistImage')
|
|
->once()
|
|
->with(Mockery::on(static function (Artist $artist): bool {
|
|
return $artist->id === 9999;
|
|
}), 'Foo', 'jpeg');
|
|
|
|
$this->putAsUser('api/artist/9999/image', [
|
|
'image' => 'data:image/jpeg;base64,Rm9v',
|
|
], User::factory()->admin()->create())
|
|
->assertStatus(200);
|
|
}
|
|
|
|
public function testUpdateNotAllowedForNormalUsers(): void
|
|
{
|
|
Artist::factory()->create(['id' => 9999]);
|
|
|
|
$this->mediaMetadataService
|
|
->shouldReceive('writeArtistImage')
|
|
->never();
|
|
|
|
$this->putAsUser('api/artist/9999/image', [
|
|
'image' => 'data:image/jpeg;base64,Rm9v',
|
|
], User::factory()->create())
|
|
->assertStatus(403);
|
|
}
|
|
}
|