function FileFieldValidateTest::testRequired

Tests the required property on file fields.

File

drupal/core/modules/file/lib/Drupal/file/Tests/FileFieldValidateTest.php, line 28
Definition of Drupal\file\Tests\FileFieldValidateTest.

Class

FileFieldValidateTest
Tests various validations.

Namespace

Drupal\file\Tests

Code

function testRequired() {
  $type_name = 'article';
  $field_name = strtolower($this
    ->randomName());
  $this
    ->createFileField($field_name, $type_name, array(), array(
    'required' => '1',
  ));
  $field = field_info_field($field_name);
  $instance = field_info_instance('node', $field_name, $type_name);
  $test_file = $this
    ->getTestFile('text');

  // Try to post a new node without uploading a file.
  $langcode = LANGUAGE_NOT_SPECIFIED;
  $edit = array(
    "title" => $this
      ->randomName(),
  );
  $this
    ->drupalPost('node/add/' . $type_name, $edit, t('Save'));
  $this
    ->assertRaw(t('!title field is required.', array(
    '!title' => $instance['label'],
  )), t('Node save failed when required file field was empty.'));

  // Create a new node with the uploaded file.
  $nid = $this
    ->uploadNodeFile($test_file, $field_name, $type_name);
  $this
    ->assertTrue($nid !== FALSE, t('uploadNodeFile(@test_file, @field_name, @type_name) succeeded', array(
    '@test_file' => $test_file->uri,
    '@field_name' => $field_name,
    '@type_name' => $type_name,
  )));
  $node = node_load($nid, TRUE);
  $node_file = file_load($node->{$field_name}[LANGUAGE_NOT_SPECIFIED][0]['fid']);
  $this
    ->assertFileExists($node_file, t('File exists after uploading to the required field.'));
  $this
    ->assertFileEntryExists($node_file, t('File entry exists after uploading to the required field.'));

  // Try again with a multiple value field.
  field_delete_field($field_name);
  $this
    ->createFileField($field_name, $type_name, array(
    'cardinality' => FIELD_CARDINALITY_UNLIMITED,
  ), array(
    'required' => '1',
  ));

  // Try to post a new node without uploading a file in the multivalue field.
  $edit = array(
    'title' => $this
      ->randomName(),
  );
  $this
    ->drupalPost('node/add/' . $type_name, $edit, t('Save'));
  $this
    ->assertRaw(t('!title field is required.', array(
    '!title' => $instance['label'],
  )), t('Node save failed when required multiple value file field was empty.'));

  // Create a new node with the uploaded file into the multivalue field.
  $nid = $this
    ->uploadNodeFile($test_file, $field_name, $type_name);
  $node = node_load($nid, TRUE);
  $node_file = file_load($node->{$field_name}[LANGUAGE_NOT_SPECIFIED][0]['fid']);
  $this
    ->assertFileExists($node_file, t('File exists after uploading to the required multiple value field.'));
  $this
    ->assertFileEntryExists($node_file, t('File entry exists after uploading to the required multipel value field.'));

  // Remove our file field.
  field_delete_field($field_name);
}