45 lines
1.2 KiB
PHP
45 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Zoomyboy\MedialibraryHelper\Tests\Feature;
|
|
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Zoomyboy\MedialibraryHelper\Tests\TestCase;
|
|
|
|
class MiddlewareTest extends TestCase
|
|
{
|
|
|
|
use RefreshDatabase;
|
|
|
|
public function testItReturns401WhenNotLoggedIn(): void
|
|
{
|
|
$this->registerModel();
|
|
$post = $this->newPost();
|
|
|
|
$response = $this->postJson('/mediaupload', [
|
|
'model' => 'post',
|
|
'id' => $post->id,
|
|
'collection' => 'defaultSingleFile',
|
|
'content' => base64_encode($this->pdfFile()->getContent()),
|
|
'name' => 'beispiel bild.jpg',
|
|
]);
|
|
|
|
$response->assertStatus(401);
|
|
}
|
|
|
|
public function testItReturns401WhenDestroying(): void
|
|
{
|
|
$this->registerModel();
|
|
$post = $this->newPost();
|
|
$media = $post->addMedia($this->pdfFile()->getPathname())->toMediaCollection('defaultSingleFile');
|
|
|
|
$response = $this->deleteJson("/mediaupload/{$media->id}");
|
|
|
|
$response->assertStatus(401);
|
|
}
|
|
|
|
protected function defineEnvironment($app)
|
|
{
|
|
$app['config']->set('medialibrary-helper.middleware', ['web', 'auth:web']);
|
|
}
|
|
}
|