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('media-library.middleware', ['web', 'auth:web']); } }