Add destroy test

This commit is contained in:
philipp lang 2023-03-08 00:04:00 +01:00
parent f5e9aff0be
commit 9d8ae685f6
5 changed files with 65 additions and 0 deletions

View File

@ -62,6 +62,8 @@ class MediaController
public function update(Request $request, Media $media): MediaData public function update(Request $request, Media $media): MediaData
{ {
$this->authorize('updateMedia', $media->model);
$rules = collect($media->model->getMediaCollection($media->collection_name)->runCallback('withPropertyValidation', $media->file_name)) $rules = collect($media->model->getMediaCollection($media->collection_name)->runCallback('withPropertyValidation', $media->file_name))
->mapWithKeys(fn ($rule, $key) => ["properties.{$key}" => $rule])->toArray(); ->mapWithKeys(fn ($rule, $key) => ["properties.{$key}" => $rule])->toArray();
@ -76,6 +78,7 @@ class MediaController
{ {
$model = app('media-library-helpers')->get($parentModel); $model = app('media-library-helpers')->get($parentModel);
$model = $model::find($parentId); $model = $model::find($parentId);
$this->authorize('listMedia', $model);
$isSingle = 1 === $model->getMediaCollection($collection)->collectionSizeLimit; $isSingle = 1 === $model->getMediaCollection($collection)->collectionSizeLimit;
abort_if($isSingle && !$model->getFirstMedia($collection), 404); abort_if($isSingle && !$model->getFirstMedia($collection), 404);

View File

@ -0,0 +1,35 @@
<?php
namespace Zoomyboy\MedialibraryHelper\Tests\Feature;
test('it deletes multiple media', function () {
$this->auth()->registerModel();
$post = $this->newPost();
$post->addMedia($this->pdfFile()->getPathname())->withCustomProperties(['test' => 'old'])->preservingOriginal()->toMediaCollection('multipleForced');
$post->addMedia($this->pdfFile()->getPathname())->withCustomProperties(['test' => 'old'])->preservingOriginal()->toMediaCollection('multipleForced');
$media = $post->getFirstMedia('multipleForced');
$this->deleteJson("/mediaupload/{$media->id}")->assertStatus(200);
$this->assertCount(1, $post->fresh()->getMedia('multipleForced'));
});
test('it deletes single media', function () {
$this->auth()->registerModel();
$post = $this->newPost();
$post->addMedia($this->pdfFile()->getPathname())->withCustomProperties(['test' => 'old'])->preservingOriginal()->toMediaCollection('defaultSingleFile');
$media = $post->getFirstMedia('defaultSingleFile');
$this->deleteJson("/mediaupload/{$media->id}")->assertStatus(200);
$this->assertCount(0, $post->fresh()->getMedia('defaultSingleFile'));
});
test('it needs authorization', function () {
$this->auth(['destroyMedia' => false])->registerModel();
$post = $this->newPost();
$post->addMedia($this->pdfFile()->getPathname())->withCustomProperties(['test' => 'old'])->preservingOriginal()->toMediaCollection('defaultSingleFile');
$media = $post->getFirstMedia('defaultSingleFile');
$this->deleteJson("/mediaupload/{$media->id}")->assertStatus(403);
});

View File

@ -28,6 +28,16 @@ test('it gets media for single', function () {
$response->assertJsonPath('properties.test', 'old'); $response->assertJsonPath('properties.test', 'old');
}); });
test('it checks for authorization', function () {
$this->auth(['listMedia' => false])->registerModel();
$post = $this->newPost();
$post->addMedia($this->pdfFile()->getPathname())->withCustomProperties(['test' => 'old'])->preservingOriginal()->toMediaCollection('images');
$response = $this->getJson("/mediaupload/post/{$post->id}/images");
$response->assertStatus(403);
});
test('it returns 404 when media not found', function () { test('it returns 404 when media not found', function () {
$this->auth()->registerModel(); $this->auth()->registerModel();
$post = $this->newPost(); $post = $this->newPost();

View File

@ -37,3 +37,19 @@ test('it validates a single files properties', function () {
$response->assertStatus(422); $response->assertStatus(422);
$response->assertJsonValidationErrors('properties.test'); $response->assertJsonValidationErrors('properties.test');
}); });
test('it checks for authorization', function () {
$this->auth(['updateMedia' => false])->registerModel();
$post = $this->newPost();
$post->addMedia($this->pdfFile()->getPathname())->preservingOriginal()->toMediaCollection('multipleProperties');
$media = $post->getFirstMedia('multipleProperties');
$response = $this->patchJson("/mediaupload/{$media->id}", [
'properties' => [
'test' => 'new',
'missing' => 'value',
],
]);
$response->assertStatus(403);
});

View File

@ -64,6 +64,7 @@ class TestCase extends BaseTestCase
'storeMedia' => true, 'storeMedia' => true,
'updateMedia' => true, 'updateMedia' => true,
'destroyMedia' => true, 'destroyMedia' => true,
'listMedia' => true,
...$policies, ...$policies,
]; ];