FileUploadHandlerTest.php
Same filename in other branches
Namespace
Drupal\Tests\file\KernelFile
-
core/
modules/ file/ tests/ src/ Kernel/ FileUploadHandlerTest.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\file\Kernel;
use Drupal\Core\Lock\LockAcquiringException;
use Drupal\Core\Lock\LockBackendInterface;
use Drupal\file\Upload\FileUploadHandler;
use Drupal\file\Upload\UploadedFileInterface;
use Drupal\KernelTests\KernelTestBase;
use Symfony\Component\Mime\MimeTypeGuesserInterface;
use Symfony\Component\Validator\ConstraintViolationList;
/**
* Tests the file upload handler.
*
* @group file
*/
class FileUploadHandlerTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = [
'file',
'file_validator_test',
];
/**
* The file upload handler under test.
*/
protected FileUploadHandler $fileUploadHandler;
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this->fileUploadHandler = $this->container
->get('file.upload_handler');
}
/**
* Tests the legacy extension support.
*
* @group legacy
*/
public function testLegacyExtensions() : void {
$filename = $this->randomMachineName() . '.txt';
$uploadedFile = $this->createMock(UploadedFileInterface::class);
$uploadedFile->expects($this->once())
->method('getClientOriginalName')
->willReturn($filename);
$uploadedFile->expects($this->once())
->method('isValid')
->willReturn(TRUE);
// Throw an exception in mimeTypeGuesser to return early from the method.
$mimeTypeGuesser = $this->createMock(MimeTypeGuesserInterface::class);
$mimeTypeGuesser->expects($this->once())
->method('guessMimeType')
->willThrowException(new \RuntimeException('Expected exception'));
$fileUploadHandler = new FileUploadHandler(fileSystem: $this->container
->get('file_system'), entityTypeManager: $this->container
->get('entity_type.manager'), streamWrapperManager: $this->container
->get('stream_wrapper_manager'), eventDispatcher: $this->container
->get('event_dispatcher'), mimeTypeGuesser: $mimeTypeGuesser, currentUser: $this->container
->get('current_user'), requestStack: $this->container
->get('request_stack'), fileRepository: $this->container
->get('file.repository'), file_validator: $this->container
->get('file.validator'));
$this->expectException(\Exception::class);
$this->expectDeprecation('\'file_validate_extensions\' is deprecated in drupal:10.2.0 and is removed from drupal:11.0.0. Use the \'FileExtension\' constraint instead. See https://www.drupal.org/node/3363700');
$fileUploadHandler->handleFileUpload($uploadedFile, [
'file_validate_extensions' => [
'txt',
],
]);
$subscriber = $this->container
->get('file_validation_sanitization_subscriber');
$this->assertEquals([
'txt',
], $subscriber->getAllowedExtensions());
}
/**
* Test the lock acquire exception.
*/
public function testLockAcquireException() : void {
$lock = $this->createMock(LockBackendInterface::class);
$lock->expects($this->once())
->method('acquire')
->willReturn(FALSE);
$fileUploadHandler = new FileUploadHandler($this->container
->get('file_system'), $this->container
->get('entity_type.manager'), $this->container
->get('stream_wrapper_manager'), $this->container
->get('event_dispatcher'), $this->container
->get('file.mime_type.guesser'), $this->container
->get('current_user'), $this->container
->get('request_stack'), $this->container
->get('file.repository'), $this->container
->get('file.validator'), $lock, $this->container
->get('validation.basic_recursive_validator_factory'));
$file_name = $this->randomMachineName();
$file_info = $this->createMock(UploadedFileInterface::class);
$file_info->expects($this->once())
->method('getClientOriginalName')
->willReturn($file_name);
$file_info->expects($this->once())
->method('validate')
->willReturn(new ConstraintViolationList());
$this->expectException(LockAcquiringException::class);
$this->expectExceptionMessage(sprintf('File "temporary://%s" is already locked for writing.', $file_name));
$fileUploadHandler->handleFileUpload(uploadedFile: $file_info, throw: FALSE);
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
FileUploadHandlerTest | Tests the file upload handler. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.