public function ConditionalFieldTextWithSummaryTest::testVisibleValueNot in Conditional Fields 8
Same name and namespace in other branches
- 4.x tests/src/FunctionalJavascript/ConditionalFieldTextWithSummaryTest.php \Drupal\Tests\conditional_fields\FunctionalJavascript\ConditionalFieldTextWithSummaryTest::testVisibleValueNot()
The target field is Visible when the control field has value with NOT condition.
Overrides ConditionalFieldValueInterface::testVisibleValueNot
File
- tests/
src/ FunctionalJavascript/ ConditionalFieldTextWithSummaryTest.php, line 310
Class
- ConditionalFieldTextWithSummaryTest
- Test Conditional Fields Text Handler.
Namespace
Drupal\Tests\conditional_fields\FunctionalJavascriptCode
public function testVisibleValueNot() {
$this
->baseTestSteps();
// Visit a ConditionalFields configuration page for Content bundles.
$this
->createCondition('body', 'field_' . $this->fieldName, 'visible', 'value');
$this
->createScreenshot($this->screenshotPath . '01-' . $this->testName . __FUNCTION__ . '.png');
// Set up conditions.
$text = [
'drupal text_with_summary text first',
'drupal text_with_summary text second',
];
$data = [
'condition' => 'value',
'values_set' => ConditionalFieldsInterface::CONDITIONAL_FIELDS_DEPENDENCY_VALUES_NOT,
'values' => implode("\r\n", $text),
'grouping' => 'AND',
'state' => 'visible',
'effect' => 'show',
];
$this
->submitForm($data, 'Save settings');
$this
->createScreenshot($this->screenshotPath . '02-' . $this->testName . __FUNCTION__ . '.png');
// Check if that configuration is saved.
$this
->drupalGet('admin/structure/types/manage/article/conditionals');
$this
->createScreenshot($this->screenshotPath . '03-' . $this->testName . __FUNCTION__ . '.png');
$this
->assertSession()
->pageTextContains('body ' . 'field_' . $this->fieldName . ' visible value');
// Visit Article Add form to check that conditions are applied.
$this
->drupalGet('node/add/article');
// Check that the field Body is visible.
$this
->createScreenshot($this->screenshotPath . '04-' . $this->testName . __FUNCTION__ . '.png');
$this
->waitUntilVisible('.field--name-body', 50, 'Article Body field is not visible');
// Change field that should not show the body.
$this
->changeField($this->fieldSelector, $text[0]);
$this
->createScreenshot($this->screenshotPath . '05-' . $this->testName . __FUNCTION__ . '.png');
$this
->waitUntilHidden('.field--name-body', 50, 'Article Body field is visible');
// Change field that should not show the body again.
$this
->changeField($this->fieldSelector, $text[1]);
$this
->createScreenshot($this->screenshotPath . '06-' . $this->testName . __FUNCTION__ . '.png');
$this
->waitUntilHidden('.field--name-body', 50, 'Article Body field is visible');
// Change field value to show the body.
$this
->changeField($this->fieldSelector, '');
$this
->createScreenshot($this->screenshotPath . '07-' . $this->testName . __FUNCTION__ . '.png');
$this
->waitUntilVisible('.field--name-body', 50, 'Article Body field is not visible');
}