You are here

WebformElementStatesSelectorsTest.php in Webform 8.5

File

tests/src/Functional/Element/WebformElementStatesSelectorsTest.php
View source
<?php

namespace Drupal\Tests\webform\Functional\Element;

use Drupal\Core\Form\OptGroup;
use Drupal\webform\Entity\Webform;
use Drupal\webform\WebformInterface;

/**
 * Tests for webform element #states selectors.
 *
 * @group webform
 */
class WebformElementStatesSelectorsTest extends WebformElementBrowserTestBase {

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

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

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

    // Create 'tags' vocabulary.
    $this
      ->createTags();
    \Drupal::configFactory()
      ->getEditable('webform.settings')
      ->set('libraries.excluded_libraries', [])
      ->save();

    // Enable all elements, including password and password_confirm.
    \Drupal::configFactory()
      ->getEditable('webform.settings')
      ->set('element.excluded_elements', [])
      ->save();
  }

  /**
   * Tests element #states selectors for basic and composite elements.
   */
  public function testSelectors() {
    foreach ([
      'test_example_elements',
      'test_example_elements_composite',
    ] as $webform_id) {

      /** @var \Drupal\webform\WebformInterface $webform */
      $webform = Webform::load($webform_id);
      $webform
        ->setStatus(WebformInterface::STATUS_OPEN)
        ->save();
      $this
        ->drupalGet('/webform/' . $webform_id);
      $selectors = OptGroup::flattenOptions($webform
        ->getElementsSelectorOptions());

      // Ignore text format and captcha selectors which are not available during
      // this test.
      unset($selectors[':input[name="text_format[format]"]'], $selectors[':input[name="captcha"]']);
      foreach ($selectors as $selector => $name) {

        // Remove :input since it is a jQuery specific selector.
        $selector = str_replace(':input', '', $selector);
        $this
          ->assertCssSelect($selector);
      }
    }
    $webform = Webform::load('test_example_elements');

    // Check the value element is excluded.
    $selectors = $webform
      ->getElementsSelectorOptions();
    $this
      ->assertArrayNotHasKey(':input[name="value"]', $selectors);

    // Check the value element is included.
    $selectors = $webform
      ->getElementsSelectorOptions([
      'excluded_elements' => [],
    ]);
    $this
      ->assertEqual($selectors[':input[name="value"]'], 'Value [Value]');
  }

}

Classes

Namesort descending Description
WebformElementStatesSelectorsTest Tests for webform element #states selectors.