function SaveUploadTest::setUp
Same name in other branches
- 9 core/modules/file/tests/src/Functional/SaveUploadTest.php \Drupal\Tests\file\Functional\SaveUploadTest::setUp()
- 10 core/modules/file/tests/src/Functional/SaveUploadTest.php \Drupal\Tests\file\Functional\SaveUploadTest::setUp()
- 11.x core/modules/file/tests/src/Functional/SaveUploadTest.php \Drupal\Tests\file\Functional\SaveUploadTest::setUp()
Overrides FileManagedTestBase::setUp
1 call to SaveUploadTest::setUp()
- RemoteFileSaveUploadTest::setUp in core/
modules/ file/ tests/ src/ Functional/ RemoteFileSaveUploadTest.php
1 method overrides SaveUploadTest::setUp()
- RemoteFileSaveUploadTest::setUp in core/
modules/ file/ tests/ src/ Functional/ RemoteFileSaveUploadTest.php
File
-
core/
modules/ file/ tests/ src/ Functional/ SaveUploadTest.php, line 62
Class
- SaveUploadTest
- Tests the file_save_upload() function.
Namespace
Drupal\Tests\file\FunctionalCode
protected function setUp() {
parent::setUp();
$account = $this->drupalCreateUser([
'access site reports',
]);
$this->drupalLogin($account);
$image_files = $this->drupalGetTestFiles('image');
$this->image = File::create((array) current($image_files));
list(, $this->imageExtension) = explode('.', $this->image
->getFilename());
$this->assertFileExists($this->image
->getFileUri());
$this->phpfile = current($this->drupalGetTestFiles('php'));
$this->assertFileExists($this->phpfile->uri);
$this->maxFidBefore = (int) \Drupal::entityQueryAggregate('file')->aggregate('fid', 'max')
->execute()[0]['fid_max'];
// Upload with replace to guarantee there's something there.
$edit = [
'file_test_replace' => FileSystemInterface::EXISTS_REPLACE,
'files[file_test_upload]' => \Drupal::service('file_system')->realpath($this->image
->getFileUri()),
];
$this->drupalPostForm('file-test/upload', $edit, t('Submit'));
$this->assertSession()
->statusCodeEquals(200);
$this->assertRaw(t('You WIN!'), 'Found the success message.');
// Check that the correct hooks were called then clean out the hook
// counters.
$this->assertFileHooksCalled([
'validate',
'insert',
]);
file_test_reset();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.