You are here

public function ConditionalFieldRadiosTest::testVisibleValueAnd in Conditional Fields 4.x

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

Target field is Visible when control field has value with AND condition.

Overrides ConditionalFieldValueInterface::testVisibleValueAnd

File

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

Class

ConditionalFieldRadiosTest
Test Conditional Fields States.

Namespace

Drupal\Tests\conditional_fields\FunctionalJavascript

Code

public function testVisibleValueAnd() {
  $this
    ->baseTestSteps();
  $term_id = mt_rand(1, $this->termsCount);
  do {
    $term_id_2 = mt_rand(1, $this->termsCount);
  } while ($term_id_2 == $term_id);

  // Visit a ConditionalFields configuration page for `Article` Content type.
  $this
    ->createCondition('body', 'field_' . $this->taxonomyName, 'visible', 'value');
  $this
    ->createScreenshot($this->screenshotPath . '01-' . $this->testName . __FUNCTION__ . '.png');
  $data = [
    'condition' => 'value',
    'values_set' => ConditionalFieldsInterface::CONDITIONAL_FIELDS_DEPENDENCY_VALUES_AND,
    'values' => "{$term_id}\r\n{$term_id_2}",
    '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');
  $this
    ->createScreenshot($this->screenshotPath . '02-' . $this->testName . __FUNCTION__ . '.png');

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

  // Check that the field Body is not visible.
  $this
    ->createScreenshot($this->screenshotPath . '03-' . $this->testName . __FUNCTION__ . '.png');
  $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
    ->createScreenshot($this->screenshotPath . '04-' . $this->testName . __FUNCTION__ . '.png');
  $this
    ->waitUntilVisible('.field--name-body', 50, '02. Article Body field is not visible');

  // Change a select value set to hide the body again.
  $this
    ->changeSelect('#edit-field-' . $this->taxonomyName . '-' . $term_id);
  $this
    ->createScreenshot($this->screenshotPath . '05-' . $this->testName . __FUNCTION__ . '.png');
  $this
    ->waitUntilHidden('.field--name-body', 50, '03. Article Body field is visible');
}