public function ExposedFormTest::testTextInputRequired in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/Tests/Plugin/ExposedFormTest.php \Drupal\views\Tests\Plugin\ExposedFormTest::testTextInputRequired()
Test the "on demand text" for the input required exposed form type.
File
- core/
modules/ views/ src/ Tests/ Plugin/ ExposedFormTest.php, line 199 - Contains \Drupal\views\Tests\Plugin\ExposedFormTest.
Class
- ExposedFormTest
- Tests exposed forms functionality.
Namespace
Drupal\views\Tests\PluginCode
public function testTextInputRequired() {
$view = Views::getView('test_exposed_form_buttons');
$display =& $view->storage
->getDisplay('default');
$display['display_options']['exposed_form']['type'] = 'input_required';
// Set up the "on demand text".
// @see https://www.drupal.org/node/535868
$on_demand_text = 'Select any filter and click Apply to see results.';
$display['display_options']['exposed_form']['options']['text_input_required'] = $on_demand_text;
$display['display_options']['exposed_form']['options']['text_input_required_format'] = filter_default_format();
$view
->save();
// Ensure that the "on demand text" is displayed when no exposed filters are
// applied.
$this
->drupalGet('test_exposed_form_buttons');
$this
->assertText('Select any filter and click Apply to see results.');
// Ensure that the "on demand text" is not displayed when an exposed filter
// is applied.
$this
->drupalGet('test_exposed_form_buttons', array(
'query' => array(
'type' => 'article',
),
));
$this
->assertNoText($on_demand_text);
}