mirror of
https://github.com/koel/koel
synced 2024-11-14 16:37:28 +00:00
46 lines
1.2 KiB
PHP
46 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Models\Artist;
|
|
use App\Services\MediaMetadataService;
|
|
use Mockery;
|
|
use Mockery\MockInterface;
|
|
use Tests\TestCase;
|
|
|
|
use function Tests\create_admin;
|
|
|
|
class ArtistImageTest extends TestCase
|
|
{
|
|
private MediaMetadataService|MockInterface $mediaMetadataService;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->mediaMetadataService = self::mock(MediaMetadataService::class);
|
|
}
|
|
|
|
public function testUpdate(): void
|
|
{
|
|
$artist = Artist::factory()->create();
|
|
|
|
$this->mediaMetadataService
|
|
->shouldReceive('writeArtistImage')
|
|
->once()
|
|
->with(Mockery::on(static fn (Artist $target) => $target->is($artist)), 'data:image/jpeg;base64,Rm9v');
|
|
|
|
$this->putAs("api/artist/$artist->id/image", ['image' => 'data:image/jpeg;base64,Rm9v'], create_admin())
|
|
->assertOk();
|
|
}
|
|
|
|
public function testUpdateNotAllowedForNormalUsers(): void
|
|
{
|
|
Artist::factory()->create(['id' => 9999]);
|
|
|
|
$this->mediaMetadataService->shouldNotReceive('writeArtistImage');
|
|
|
|
$this->putAs('api/artist/9999/image', ['image' => 'data:image/jpeg;base64,Rm9v'])
|
|
->assertForbidden();
|
|
}
|
|
}
|