View source
<?php
namespace Drupal\Tests\select_or_other\Unit;
use Drupal\Core\Form\FormState;
use Drupal\select_or_other\Element\Buttons;
use Drupal\select_or_other\Element\ElementBase;
use Drupal\select_or_other\Element\Select;
use Drupal\Tests\UnitTestCase;
use ReflectionMethod;
class ElementsTest extends UnitTestCase {
public function testAddOtherOption() {
$options = [];
$method = new ReflectionMethod('Drupal\\select_or_other\\Element\\ElementBase', 'addOtherOption');
$method
->setAccessible(TRUE);
$options = $method
->invoke(NULL, $options);
$this
->assertArrayEquals([
'select_or_other' => "Other",
], $options);
}
public function testValueCallback() {
$form_state = new FormState();
$element = [
'#multiple' => FALSE,
];
$input = [
'select' => 'Selected text',
'other' => 'Other text',
];
$expected = [
$input['select'],
];
$values = ElementBase::valueCallback($element, $input, $form_state);
$this
->assertArrayEquals($expected, $values, 'Returned single value select.');
$input['select'] = 'select_or_other';
$expected = [
$input['other'],
];
$values = ElementBase::valueCallback($element, $input, $form_state);
$this
->assertArrayEquals($expected, $values, 'Returned single value other.');
$element['#multiple'] = TRUE;
$input['select'] = [
'Selected text',
];
$expected = [
'select' => $input['select'],
'other' => [],
];
$values = ElementBase::valueCallback($element, $input, $form_state);
$this
->assertArrayEquals($expected, $values, 'Returned select array and empty other array.');
$input['select'][] = 'select_or_other';
$expected['other'] = [
$input['other'],
];
$values = ElementBase::valueCallback($element, $input, $form_state);
$this
->assertArrayEquals($expected, $values, 'Returned select array and other array.');
$input['select'] = [
'select_or_other',
];
$expected = [
'select' => [],
'other' => [
$input['other'],
],
];
$values = ElementBase::valueCallback($element, $input, $form_state);
$this
->assertArrayEquals($expected, $values, 'Returned empty select and other array.');
$input['select'][] = 'Selected';
$element['#merged_values'] = TRUE;
$expected = [
'Selected',
$input['other'],
];
$values = ElementBase::valueCallback($element, $input, $form_state);
$this
->assertArrayEquals($expected, $values, 'Returned merged array.');
$input['select'] = [
'Selected',
];
$input['other'] = '';
$expected = [
'Selected',
];
$values = ElementBase::valueCallback($element, $input, $form_state);
$this
->assertArrayEquals($expected, $values, 'Returned merged array.');
foreach ([
TRUE,
FALSE,
] as $multiple) {
$element['#multiple'] = $multiple;
$input = [
'other' => 'Other value',
];
$expected = [];
$values = ElementBase::valueCallback($element, $input, $form_state);
$this
->assertArrayEquals($expected, $values, 'Submitting only the other value results in an empty array.');
}
}
public function testProcessSelectOrOther() {
$method = new ReflectionMethod('Drupal\\select_or_other\\Element\\ElementBase', 'addOtherOption');
$method
->setAccessible(TRUE);
$form_state = new FormState();
$form = [];
$original_element = $element = [
'#name' => 'select_or_other',
'#default_value' => 'default',
'#required' => TRUE,
'#multiple' => FALSE,
'#options' => [
'first_option' => 'First option',
'second_option' => "Second option",
],
];
$base_expected_element = $expected_element = $element + [
'select' => [
'#default_value' => $element['#default_value'],
'#required' => $element['#required'],
'#multiple' => $element['#multiple'],
'#options' => $method
->invoke(NULL, $element['#options']),
'#weight' => 10,
],
'other' => [
'#type' => 'textfield',
'#weight' => 20,
],
];
$resulting_element = ElementBase::processSelectOrOther($element, $form_state, $form);
$this
->assertArrayEquals($expected_element, $resulting_element);
$this
->assertArrayEquals($resulting_element, $element);
$element = $original_element;
$expected_element = array_merge_recursive($base_expected_element, [
'select' => [
'#type' => 'checkboxes',
],
'other' => [
'#states' => [
'visible' => [
':input[name="' . $element['#name'] . '[select][select_or_other]"]' => [
'checked' => TRUE,
],
],
],
],
]);
$element['#multiple'] = $expected_element['#multiple'] = $expected_element['select']['#multiple'] = TRUE;
$resulting_element = Buttons::processSelectOrOther($element, $form_state, $form);
$this
->assertArrayEquals($expected_element, $resulting_element);
$this
->assertArrayEquals($resulting_element, $element);
$element = $original_element;
$expected_element = array_merge_recursive($base_expected_element, [
'select' => [
'#type' => 'radios',
],
'other' => [
'#states' => [
'visible' => [
':input[name="' . $element['#name'] . '[select]"]' => [
'value' => 'select_or_other',
],
],
],
],
]);
$resulting_element = Buttons::processSelectOrOther($element, $form_state, $form);
$this
->assertArrayEquals($expected_element, $resulting_element);
$this
->assertArrayEquals($resulting_element, $element);
$element = $original_element;
$expected_element = array_merge_recursive($base_expected_element, [
'select' => [
'#type' => 'select',
],
'other' => [
'#states' => [
'visible' => [
':input[name="' . $element['#name'] . '[select]"]' => [
'value' => 'select_or_other',
],
],
],
],
]);
$resulting_element = Select::processSelectOrOther($element, $form_state, $form);
$this
->assertArrayEquals($expected_element, $resulting_element);
$this
->assertArrayEquals($resulting_element, $element);
$element = $original_element;
$expected_element = array_merge_recursive($base_expected_element, [
'select' => [
'#type' => 'select',
'#multiple' => TRUE,
'#attached' => [
'library' => [
'select_or_other/multiple_select_states_hack',
],
],
],
]);
$element['#multiple'] = $expected_element['#multiple'] = $expected_element['select']['#multiple'] = TRUE;
$resulting_element = Select::processSelectOrOther($element, $form_state, $form);
$this
->assertArrayEquals($expected_element, $resulting_element);
$this
->assertArrayEquals($resulting_element, $element);
}
}