You are here

public function FileUploadTest::testFileUploadNoExtensionSetting in JSON:API 8.2

Tests using the file upload POST route no extension configured.

File

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

Class

FileUploadTest
Tests binary data file upload route.

Namespace

Drupal\Tests\jsonapi\Functional

Code

public function testFileUploadNoExtensionSetting() {
  $this
    ->setUpAuthorization('POST');
  $this
    ->config('jsonapi.settings')
    ->set('read_only', FALSE)
    ->save(TRUE);
  $uri = Url::fromUri('base:' . static::$postUri);
  $this->field
    ->setSetting('file_extensions', '')
    ->save();
  $this
    ->rebuildAll();
  $response = $this
    ->fileRequest($uri, $this->testFileData, [
    'Content-Disposition' => 'filename="example.txt"',
  ]);
  $expected = $this
    ->getExpectedDocument(1, 'example.txt', TRUE);
  $this
    ->assertResponseData($expected, $response);
  $this
    ->assertTrue(file_exists('public://foobar/example.txt'));
}