You are here

WebformUiElementPropertiesTest.php in Webform 6.x

File

modules/webform_ui/tests/src/Functional/WebformUiElementPropertiesTest.php
View source
<?php

namespace Drupal\Tests\webform_ui\Functional;

use Drupal\Tests\webform\Functional\WebformBrowserTestBase;
use Drupal\webform\Entity\Webform;

/**
 * Tests for webform UI element properties.
 *
 * @group webform_ui
 */
class WebformUiElementPropertiesTest extends WebformBrowserTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = [
    'filter',
    'file',
    'taxonomy',
    'webform',
    'webform_ui',
  ];

  /**
   * Webforms to load.
   *
   * @var array
   */
  protected static $testWebforms = [
    'example_style_guide',
    'example_element_states',
    'test_element',
    'test_element_access',
    'test_states_triggers',
    'test_example_elements',
    'test_example_elements_composite',
  ];

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();

    // Create filters.
    $this
      ->createFilters();
  }

  /**
   * Tests element properties.
   */
  public function testElementProperties() {
    $this
      ->drupalLogin($this->rootUser);

    // Loops through all the elements, edits them via the UI, and checks that
    // the element's render array has not been altered.
    // This verifies that the edit element (via UI) form is not unexpectedly
    // altering an element's render array.
    foreach (static::$testWebforms as $webform_id) {

      /** @var \Drupal\webform\WebformInterface $webform_elements */
      $webform_elements = Webform::load($webform_id);
      $original_elements = $webform_elements
        ->getElementsDecodedAndFlattened();
      foreach ($original_elements as $key => $original_element) {
        $this
          ->drupalPostForm('/admin/structure/webform/manage/' . $webform_elements
          ->id() . '/element/' . $key . '/edit', [], 'Save');

        // Must reset the webform entity cache so that the update elements can
        // be loaded.
        \Drupal::entityTypeManager()
          ->getStorage('webform_submission')
          ->resetCache();

        /** @var \Drupal\webform\WebformInterface $webform_elements */
        $webform_elements = Webform::load($webform_id);
        $updated_element = $webform_elements
          ->getElementsDecodedAndFlattened()[$key];
        $this
          ->assertEqual($original_element, $updated_element, "'{$key}'' properties is equal.");
      }
    }
  }

}

Classes

Namesort descending Description
WebformUiElementPropertiesTest Tests for webform UI element properties.