You are here

public function ConditionalFieldRadiosTest::testVisibleValueRegExp in Conditional Fields 8

Same name and namespace in other branches
  1. 4.x tests/src/FunctionalJavascript/ConditionalFieldRadiosTest.php \Drupal\Tests\conditional_fields\FunctionalJavascript\ConditionalFieldRadiosTest::testVisibleValueRegExp()

The target field is Visible when the control field has value from Regular expression.

Overrides ConditionalFieldValueInterface::testVisibleValueRegExp

File

tests/src/FunctionalJavascript/ConditionalFieldRadiosTest.php, line 128

Class

ConditionalFieldRadiosTest
Test Conditional Fields States.

Namespace

Drupal\Tests\conditional_fields\FunctionalJavascript

Code

public function testVisibleValueRegExp() {
  $this
    ->baseTestSteps();

  // Random term id to check necessary value.
  $term_id = mt_rand(1, $this->termsCount);
  do {
    $term_id_f = mt_rand(1, $this->termsCount);
  } while ($term_id_f == $term_id);

  // Visit a ConditionalFields configuration page for `Article` Content type.
  $this
    ->createCondition('body', 'field_' . $this->taxonomyName, 'visible', 'value');

  // Set up conditions.
  $data = [
    'condition' => 'value',
    'values_set' => ConditionalFieldsInterface::CONDITIONAL_FIELDS_DEPENDENCY_VALUES_REGEX,
    'regex' => "^[{$term_id}]\$",
    'grouping' => 'AND',
    'state' => 'visible',
    'effect' => 'show',
  ];
  $this
    ->submitForm($data, 'Save settings');

  // Check if that configuration is saved.
  $this
    ->drupalGet('admin/structure/conditional_fields/node/article');
  $this
    ->assertSession()
    ->pageTextContains('body field_' . $this->taxonomyName . ' visible value');

  // Visit Article Add form to check that conditions are applied.
  $this
    ->drupalGet('node/add/article');

  // Check that the field Body is not visible.
  $this
    ->waitUntilHidden('.field--name-body', 0, '01. Article Body field is visible');

  // Change a select value set to show the body.
  $this
    ->changeSelect('#edit-field-' . $this->taxonomyName . '-' . $term_id, $term_id);
  $this
    ->waitUntilVisible('.field--name-body', 50, '02. Article Body field is not visible');
  $this
    ->changeSelect('#edit-field-' . $this->taxonomyName . '-' . $term_id);
  $this
    ->waitUntilHidden('.field--name-body', 50, '03. Article Body field is visible');

  //    $this->createScreenshot('sites/simpletest/scr1BodyVisTerm.jpg');
  // Change a select value set to hide the body again.
  $this
    ->changeSelect('#edit-field-' . $this->taxonomyName . '-' . $term_id_f, $term_id_f);
  $this
    ->waitUntilHidden('.field--name-body', 50, '04. Article Body field is visible');
  $this
    ->changeSelect('#edit-field-' . $this->taxonomyName . '-' . $term_id_f);
  $this
    ->waitUntilHidden('.field--name-body', 50, '05. Article Body field is visible');
}