You are here

protected function FileUploadTest::fileRequest in JSON:API 8.2

Performs a file upload request. Wraps the Guzzle HTTP client.

Parameters

\Drupal\Core\Url $url: URL to request.

string $file_contents: The file contents to send as the request body.

array $headers: Additional headers to send with the request. Defaults will be added for Content-Type and Content-Disposition. In order to remove the defaults set the header value to FALSE.

Return value

\Psr\Http\Message\ResponseInterface The received response.

See also

\GuzzleHttp\ClientInterface::request()

11 calls to FileUploadTest::fileRequest()
FileUploadTest::testFileUploadInvalidFileType in tests/src/Functional/FileUploadTest.php
Tests using the file upload route with an invalid file type.
FileUploadTest::testFileUploadLargerFileSize in tests/src/Functional/FileUploadTest.php
Tests using the file upload route with a file size larger than allowed.
FileUploadTest::testFileUploadMaliciousExtension in tests/src/Functional/FileUploadTest.php
Tests using the file upload POST route with malicious extensions.
FileUploadTest::testFileUploadNoExtensionSetting in tests/src/Functional/FileUploadTest.php
Tests using the file upload POST route no extension configured.
FileUploadTest::testFileUploadStrippedFilePath in tests/src/Functional/FileUploadTest.php
Tests using the file upload route with any path prefixes being stripped.

... See full list

File

tests/src/Functional/FileUploadTest.php, line 772

Class

FileUploadTest
Tests binary data file upload route.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function fileRequest(Url $url, $file_contents, array $headers = []) {
  $request_options = [];
  $headers = $headers + [
    // Set the required (and only accepted) content type for the request.
    'Content-Type' => 'application/octet-stream',
    // Set the required Content-Disposition header for the file name.
    'Content-Disposition' => 'file; filename="example.txt"',
    // Set the required JSON:API Accept header.
    'Accept' => 'application/vnd.api+json',
  ];
  $request_options[RequestOptions::HEADERS] = array_filter($headers, function ($value) {
    return $value !== FALSE;
  });
  $request_options[RequestOptions::BODY] = $file_contents;
  $request_options = NestedArray::mergeDeep($request_options, $this
    ->getAuthenticationRequestOptions());
  return $this
    ->request('POST', $url, $request_options);
}