function NodeFieldMultilingualTestCase::testMultilingualNodeForm

Tests whether field languages are correctly set through the node form.

File

drupal/core/modules/node/lib/Drupal/node/Tests/NodeFieldMultilingualTestCase.php, line 70
Definition of Drupal\node\Tests\NodeFieldMultilingualTestCase.

Class

NodeFieldMultilingualTestCase
Functional test for multilingual fields.

Namespace

Drupal\node\Tests

Code

function testMultilingualNodeForm() {

  // Create "Basic page" content.
  $langcode = language_get_default_langcode('node', 'page');
  $title_key = "title";
  $title_value = $this
    ->randomName(8);
  $body_key = "body[{$langcode}][0][value]";
  $body_value = $this
    ->randomName(16);

  // Create node to edit.
  $edit = array();
  $edit[$title_key] = $title_value;
  $edit[$body_key] = $body_value;
  $this
    ->drupalPost('node/add/page', $edit, t('Save'));

  // Check that the node exists in the database.
  $node = $this
    ->drupalGetNodeByTitle($edit[$title_key]);
  $this
    ->assertTrue($node, 'Node found in database.');
  $assert = isset($node->body['en']) && !isset($node->body[LANGUAGE_NOT_SPECIFIED]) && $node->body['en'][0]['value'] == $body_value;
  $this
    ->assertTrue($assert, 'Field language correctly set.');

  // Change node language.
  $this
    ->drupalGet("node/{$node->nid}/edit");
  $edit = array(
    $title_key => $this
      ->randomName(8),
    'langcode' => 'it',
  );
  $this
    ->drupalPost(NULL, $edit, t('Save'));
  $node = $this
    ->drupalGetNodeByTitle($edit[$title_key], TRUE);
  $this
    ->assertTrue($node, 'Node found in database.');
  $assert = isset($node->body['it']) && !isset($node->body['en']) && $node->body['it'][0]['value'] == $body_value;
  $this
    ->assertTrue($assert, 'Field language correctly changed.');

  // Enable content language URL detection.
  language_negotiation_set(LANGUAGE_TYPE_CONTENT, array(
    LANGUAGE_NEGOTIATION_URL => 0,
  ));

  // Test multilingual field language fallback logic.
  $this
    ->drupalGet("it/node/{$node->nid}");
  $this
    ->assertRaw($body_value, 'Body correctly displayed using Italian as requested language');
  $this
    ->drupalGet("node/{$node->nid}");
  $this
    ->assertRaw($body_value, 'Body correctly displayed using English as requested language');
}