koel/tests/Feature/ArtistImageTest.php

47 lines
1.2 KiB
PHP
Raw Normal View History

<?php
namespace Tests\Feature;
use App\Models\Artist;
use App\Services\MediaMetadataService;
use Mockery;
use Mockery\MockInterface;
2024-01-09 18:34:40 +00:00
use Tests\TestCase;
2024-01-11 12:41:33 +00:00
use function Tests\create_admin;
class ArtistImageTest extends TestCase
{
2022-07-27 15:32:36 +00:00
private MediaMetadataService|MockInterface $mediaMetadataService;
public function setUp(): void
{
parent::setUp();
2020-12-22 20:11:22 +00:00
2020-12-22 23:01:49 +00:00
$this->mediaMetadataService = self::mock(MediaMetadataService::class);
}
public function testUpdate(): void
{
Artist::factory()->create(['id' => 9999]);
$this->mediaMetadataService
->shouldReceive('writeArtistImage')
->once()
2022-07-27 15:32:36 +00:00
->with(Mockery::on(static fn (Artist $artist) => $artist->id === 9999), 'Foo', 'jpeg');
2024-01-11 12:41:33 +00:00
$this->putAs('api/artist/9999/image', ['image' => 'data:image/jpeg;base64,Rm9v'], create_admin())
2022-07-27 15:32:36 +00:00
->assertOk();
}
public function testUpdateNotAllowedForNormalUsers(): void
{
Artist::factory()->create(['id' => 9999]);
$this->mediaMetadataService->shouldNotReceive('writeArtistImage');
2022-07-27 15:32:36 +00:00
$this->putAs('api/artist/9999/image', ['image' => 'data:image/jpeg;base64,Rm9v'])
->assertForbidden();
}
}