function FileUploadTest::getExpectedUnauthorizedAccessMessage
Return the expected error message.
Parameters
string $method: The HTTP method (GET, POST, PATCH, DELETE).
Return value
string The error string.
Overrides ResourceTestBase::getExpectedUnauthorizedAccessMessage
2 calls to FileUploadTest::getExpectedUnauthorizedAccessMessage()
- FileUploadTest::testPostFileUpload in core/
modules/ jsonapi/ tests/ src/ Functional/ FileUploadTest.php  - Tests using the file upload POST route; needs second request to "use" file.
 - FileUploadTest::testPostFileUploadAndUseInSingleRequest in core/
modules/ jsonapi/ tests/ src/ Functional/ FileUploadTest.php  - Tests using the 'file upload and "use" file in single request" POST route.
 
File
- 
              core/
modules/ jsonapi/ tests/ src/ Functional/ FileUploadTest.php, line 733  
Class
- FileUploadTest
 - Tests binary data file upload route.
 
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function getExpectedUnauthorizedAccessMessage($method) : string {
  switch ($method) {
    case 'GET':
      return "The current user is not allowed to view this relationship. The 'view test entity' permission is required.";
    case 'POST':
      return "The current user is not permitted to upload a file for this field. The following permissions are required: 'administer entity_test content' OR 'administer entity_test_with_bundle content' OR 'create entity_test entity_test_with_bundle entities'.";
    case 'PATCH':
      return "The current user is not permitted to upload a file for this field. The 'administer entity_test content' permission is required.";
  }
  return '';
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.