public function YamlFormElementStatesTest::testElement in YAML Form 8
Tests element #states.
File
- src/
Tests/ YamlFormElementStatesTest.php, line 52
Class
- YamlFormElementStatesTest
- Tests for form element #states.
Namespace
Drupal\yamlform\TestsCode
public function testElement() {
/**************************************************************************/
// Processing.
/**************************************************************************/
// Check default value handling.
$this
->drupalPostForm('yamlform/test_element_states', [], t('Submit'));
$this
->assertRaw("states_basic:\n enabled:\n selector_01:\n checked: true\n required:\n - 'selector_01''':\n checked: true\n - selector_02:\n checked: true\n disabled:\n - selector_01:\n checked: true\n - or\n - selector_02:\n checked: true\nstates_custom_selector:\n required:\n custom_selector:\n value: 'Yes'\nstates_empty: { }\nstates_unsupported_operator:\n required:\n - custom_selector:\n value: 'Yes'\n - xor\n - custom_selector:\n value: 'Yes'\nstates_unsupported_nesting:\n required:\n - selector_01:\n value: 'Yes'\n selector_02:\n value: 'Yes'\n - or\n - selector_03:\n value: 'Yes'\n selector_04:\n value: 'Yes'");
/**************************************************************************/
// Rendering.
/**************************************************************************/
$this
->drupalGet('yamlform/test_element_states');
// Check 'States custom selector'.
$this
->assertRaw('<input data-drupal-selector="edit-states-custom-selector-states-1-selector-other" type="text" id="edit-states-custom-selector-states-1-selector-other" name="states_custom_selector[states][1][selector][other]" value="custom_selector" size="60" maxlength="128" placeholder="Enter other..." class="form-text" />');
// Check 'States unsupport operator'.
$this
->assertRaw('Conditional logic (Form API #states) is using the <em class="placeholder">XOR</em> operator. Form API #states must be manually entered.');
$this
->assertRaw('<textarea data-drupal-selector="edit-states-unsupported-operator-states" aria-describedby="edit-states-unsupported-operator-states--description" class="js-yamlform-codemirror yamlform-codemirror yaml form-textarea resize-vertical" data-yamlform-codemirror-mode="text/x-yaml" id="edit-states-unsupported-operator-states" name="states_unsupported_operator[states]" rows="5" cols="60">');
// Check 'States unsupport nested multiple selectors'.
$this
->assertRaw('Conditional logic (Form API #states) is using multiple nested conditions. Form API #states must be manually entered.');
$this
->assertRaw('<textarea data-drupal-selector="edit-states-unsupported-nesting-states" aria-describedby="edit-states-unsupported-nesting-states--description" class="js-yamlform-codemirror yamlform-codemirror yaml form-textarea resize-vertical" data-yamlform-codemirror-mode="text/x-yaml" id="edit-states-unsupported-nesting-states" name="states_unsupported_nesting[states]" rows="5" cols="60">');
/**************************************************************************/
// Processing.
/**************************************************************************/
// Check setting first state and adding new state.
$edit = [
'states_empty[states][0][state]' => 'required',
'states_empty[states][1][selector][select]' => 'selector_01',
'states_empty[states][1][selector][other]' => '',
'states_empty[states][1][trigger]' => 'value',
'states_empty[states][1][value]' => '{value_01}',
];
$this
->drupalPostAjaxForm(NULL, $edit, 'states_empty_table_add');
// Check the first state/condition is required and value = {value_01}.
$this
->assertFieldByName('states_empty[states][0][state]', 'required');
$this
->assertFieldByName('states_empty[states][1][selector][select]', 'selector_01');
$this
->assertFieldByName('states_empty[states][1][trigger]', 'value');
$this
->assertFieldByName('states_empty[states][1][value]', '{value_01}');
// Check empty second state/condition.
$this
->assertFieldByName('states_empty[states][2][state]', '');
$this
->assertFieldByName('states_empty[states][3][selector][select]', '');
$this
->assertFieldByName('states_empty[states][3][trigger]', '');
$this
->assertFieldByName('states_empty[states][3][value]', '');
$edit = [
'states_empty[states][2][state]' => 'disabled',
'states_empty[states][3][selector][select]' => 'selector_02',
'states_empty[states][3][selector][other]' => '',
'states_empty[states][3][trigger]' => 'value',
'states_empty[states][3][value]' => '{value_02}',
];
$this
->drupalPostAjaxForm(NULL, $edit, 'states_empty_table_remove_1');
// Check the first condition is removed.
$this
->assertNoFieldByName('states_empty[states][1][selector][select]', 'selector_01');
$this
->assertNoFieldByName('states_empty[states][1][trigger]', 'value');
$this
->assertNoFieldByName('states_empty[states][1][value]', '{value_01}');
// Check the second state/condition is required and value = {value_01}.
$this
->assertFieldByName('states_empty[states][1][state]', 'disabled');
$this
->assertFieldByName('states_empty[states][2][selector][select]', 'selector_02');
$this
->assertFieldByName('states_empty[states][2][trigger]', 'value');
$this
->assertFieldByName('states_empty[states][2][value]', '{value_02}');
// Remove state two.
$this
->drupalPostAjaxForm(NULL, [], 'states_empty_table_remove_1');
// Check the second state/condition is removed.
$this
->assertNoFieldByName('states_empty[states][1][state]', 'disabled');
$this
->assertNoFieldByName('states_empty[states][2][selector][select]', 'selector_02');
$this
->assertNoFieldByName('states_empty[states][2][trigger]', 'value');
$this
->assertNoFieldByName('states_empty[states][2][value]', '{value_02}');
}