You are here

WebformNodeTranslationTest.php in Webform 8.5

File

modules/webform_node/tests/src/Functional/WebformNodeTranslationTest.php
View source
<?php

namespace Drupal\Tests\webform_node\Functional;


/**
 * Tests for webform node translation.
 *
 * @group webform_node
 */
class WebformNodeTranslationTest extends WebformNodeBrowserTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = [
    'webform',
    'webform_node',
    'webform_node_test_translation',
  ];

  /**
   * Tests webform node translation.
   */
  public function testNodeTranslation() {
    $node = $this
      ->createWebformNode('webform_node_test_translation', [
      'title' => 'English node',
    ]);

    // Check computed token uses the English title.
    $this
      ->drupalGet('/node/' . $node
      ->id());
    $this
      ->assertFieldByName('computed_token', 'English node');

    // Create spanish node.
    $node
      ->addTranslation('es', [
      'title' => 'Spanish node',
    ])
      ->save();

    // Check computed token uses the Spanish title.
    $this
      ->drupalGet('/es/node/' . $node
      ->id());
    $this
      ->assertNoFieldByName('computed_token', 'English node');
    $this
      ->assertFieldByName('computed_token', 'Spanish node');
  }

}

Classes

Namesort descending Description
WebformNodeTranslationTest Tests for webform node translation.