public function FileUploadTest::testFileUploadNoDirectorySetting in Drupal 10
Tests using the file upload POST route no directory configured.
File
- core/
modules/ jsonapi/ tests/ src/ Functional/ FileUploadTest.php, line 747
Class
- FileUploadTest
- Tests binary data file upload route.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
public function testFileUploadNoDirectorySetting() {
$this
->setUpAuthorization('POST');
$this
->config('jsonapi.settings')
->set('read_only', FALSE)
->save(TRUE);
$uri = Url::fromUri('base:' . static::$postUri);
$this->field
->setSetting('file_directory', '')
->save();
$response = $this
->fileRequest($uri, $this->testFileData, [
'Content-Disposition' => 'filename="example.txt"',
]);
$expected = $this
->getExpectedDocument(1, 'example.txt', TRUE);
$expected['data']['attributes']['uri']['value'] = 'public://example.txt';
$expected['data']['attributes']['uri']['url'] = base_path() . $this->siteDirectory . '/files/example.txt';
$this
->assertResponseData($expected, $response);
$this
->assertFileExists('public://example.txt');
}