mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
65 lines
1.7 KiB
PHP
65 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Models\Playlist;
|
|
use PHPUnit\Framework\Attributes\Test;
|
|
use Tests\TestCase;
|
|
|
|
use function Tests\create_user;
|
|
use function Tests\read_as_data_url;
|
|
use function Tests\test_path;
|
|
|
|
class PlaylistCoverTest extends TestCase
|
|
{
|
|
#[Test]
|
|
public function uploadCover(): void
|
|
{
|
|
$playlist = Playlist::factory()->create();
|
|
self::assertNull($playlist->cover);
|
|
|
|
$this->putAs(
|
|
"api/playlists/{$playlist->id}/cover",
|
|
['cover' => read_as_data_url(test_path('blobs/cover.png'))],
|
|
$playlist->user
|
|
)
|
|
->assertOk();
|
|
|
|
self::assertNotNull($playlist->refresh()->cover);
|
|
}
|
|
|
|
#[Test]
|
|
public function uploadCoverNotAllowedForNonOwner(): void
|
|
{
|
|
$playlist = Playlist::factory()->create();
|
|
|
|
$this->putAs(
|
|
"api/playlists/{$playlist->id}/cover",
|
|
['cover' => 'data:image/jpeg;base64,Rm9v'],
|
|
create_user()
|
|
)
|
|
->assertForbidden();
|
|
}
|
|
|
|
#[Test]
|
|
public function deleteCover(): void
|
|
{
|
|
$playlist = Playlist::factory()->create(['cover' => 'cover.jpg']);
|
|
|
|
$this->deleteAs("api/playlists/{$playlist->id}/cover", [], $playlist->user)
|
|
->assertNoContent();
|
|
|
|
self::assertNull($playlist->refresh()->cover);
|
|
}
|
|
|
|
#[Test]
|
|
public function nonOwnerCannotDeleteCover(): void
|
|
{
|
|
$playlist = Playlist::factory()->create(['cover' => 'cover.jpg']);
|
|
|
|
$this->deleteAs("api/playlists/{$playlist->id}/cover", [], create_user())
|
|
->assertForbidden();
|
|
|
|
self::assertSame('cover.jpg', $playlist->refresh()->getRawOriginal('cover'));
|
|
}
|
|
}
|