function SaveUploadTest::testExistingError

Test for failure when uploading over a file that already exists.

File

drupal/core/modules/file/lib/Drupal/file/Tests/SaveUploadTest.php, line 306
Definition of Drupal\file\Tests\SaveUploadTest.

Class

SaveUploadTest
Test the file_save_upload() function.

Namespace

Drupal\file\Tests

Code

function testExistingError() {
  $edit = array(
    'file_test_replace' => FILE_EXISTS_ERROR,
    'files[file_test_upload]' => drupal_realpath($this->image->uri),
  );
  $this
    ->drupalPost('file-test/upload', $edit, t('Submit'));
  $this
    ->assertResponse(200, t('Received a 200 response for posted test file.'));
  $this
    ->assertRaw(t('Epic upload FAIL!'), t('Found the failure message.'));

  // Check that the no hooks were called while failing.
  $this
    ->assertFileHooksCalled(array());
}