diff --git a/core/modules/media_library/tests/src/FunctionalJavascript/MediaOverviewTest.php b/core/modules/media_library/tests/src/FunctionalJavascript/MediaOverviewTest.php index 88e6cecb18c56e7e2973daf04f2fa7d26ebc1d9a..c7bdb44d3a4d0a360dcd172cca940f5072705418 100644 --- a/core/modules/media_library/tests/src/FunctionalJavascript/MediaOverviewTest.php +++ b/core/modules/media_library/tests/src/FunctionalJavascript/MediaOverviewTest.php @@ -108,6 +108,10 @@ public function testAdministrationPage() { $assert_session->elementExists('css', '#views-exposed-form-media-library-page')->submit(); $this->waitForText('Dog'); + // Select the "Delete media" action. + $page->selectFieldOption('Action', 'Delete media'); + $this->waitForText('Dog'); + // This tests that anchor tags clicked inside the preview are suppressed. $this->getSession()->executeScript('jQuery(".js-click-to-select-trigger a")[4].click()'); $this->submitForm([], 'Apply to selected items'); diff --git a/core/modules/node/tests/src/Functional/Views/BulkFormTest.php b/core/modules/node/tests/src/Functional/Views/BulkFormTest.php index c4eada729ac7795a2c45d8104d96b25711ba0fad..bcd15ccc37390e5bf67844ac69b6ad0a74c52fb7 100644 --- a/core/modules/node/tests/src/Functional/Views/BulkFormTest.php +++ b/core/modules/node/tests/src/Functional/Views/BulkFormTest.php @@ -94,7 +94,7 @@ protected function setUp($import_test_views = TRUE, $modules = ['node_test_views ])); $this->drupalGet('test-node-bulk-form'); $elements = $this->assertSession()->selectExists('edit-action')->findAll('css', 'option'); - $this->assertCount(8, $elements, 'All node operations are found.'); + $this->assertCount(9, $elements, 'All node operations are found.'); } /** diff --git a/core/modules/views/src/Plugin/views/field/BulkForm.php b/core/modules/views/src/Plugin/views/field/BulkForm.php index 5340aac5e4552e3e547885670bb51785ef90c093..2edd80159846be966276b9162939869a9ae34ffe 100644 --- a/core/modules/views/src/Plugin/views/field/BulkForm.php +++ b/core/modules/views/src/Plugin/views/field/BulkForm.php @@ -319,6 +319,7 @@ public function viewsForm(&$form, FormStateInterface $form_state) { '#type' => 'select', '#title' => $this->options['action_title'], '#options' => $this->getBulkOptions(), + '#empty_option' => $this->t('- Select -'), ]; // Duplicate the form actions into the action container in the header. @@ -441,6 +442,16 @@ protected function emptySelectedMessage() { return $this->t('No items selected.'); } + /** + * Returns the message that is displayed when no action is selected. + * + * @return string + * Message displayed when no action is selected. + */ + protected function emptyActionMessage() { + return $this->t('No %title option selected.', ['%title' => $this->options['action_title']]); + } + /** * {@inheritdoc} */ @@ -449,6 +460,11 @@ public function viewsFormValidate(&$form, FormStateInterface $form_state) { if (empty($ids) || empty(array_filter($ids))) { $form_state->setErrorByName('', $this->emptySelectedMessage()); } + + $action = $form_state->getValue('action'); + if (empty($action)) { + $form_state->setErrorByName('', $this->emptyActionMessage()); + } } /** diff --git a/core/modules/views/tests/src/Functional/BulkFormTest.php b/core/modules/views/tests/src/Functional/BulkFormTest.php index 4e515c6aa6022cf2ce26845dbb0cd22a990e8816..0f4c53d7bee4259cb74c1b484c3c90aa445e00d5 100644 --- a/core/modules/views/tests/src/Functional/BulkFormTest.php +++ b/core/modules/views/tests/src/Functional/BulkFormTest.php @@ -116,7 +116,7 @@ public function testBulkForm() { $this->drupalGet('test_bulk_form'); $options = $this->assertSession()->selectExists('edit-action')->findAll('css', 'option'); - $this->assertCount(2, $options); + $this->assertCount(3, $options); $this->assertSession()->optionExists('edit-action', 'node_make_sticky_action'); $this->assertSession()->optionExists('edit-action', 'node_make_unsticky_action'); @@ -134,6 +134,11 @@ public function testBulkForm() { $this->drupalGet('test_bulk_form'); $this->assertSession()->elementTextEquals('xpath', '//label[@for="edit-action"]', 'Action'); + // There should be an error message if no action is selected. + $edit = ['node_bulk_form[0]' => TRUE, 'action' => '']; + $this->submitForm($edit, 'Apply to selected items'); + $this->assertSession()->pageTextContains('No Action option selected.'); + // Setup up a different bulk form title. $view = Views::getView('test_bulk_form'); $display = &$view->storage->getDisplay('default'); @@ -143,6 +148,11 @@ public function testBulkForm() { $this->drupalGet('test_bulk_form'); $this->assertSession()->elementTextEquals('xpath', '//label[@for="edit-action"]', 'Test title'); + // The error message when no action is selected should reflect the new form + // title. + $this->submitForm($edit, 'Apply to selected items'); + $this->assertSession()->pageTextContains('No Test title option selected.'); + $this->drupalGet('test_bulk_form'); // Call the node delete action. $edit = []; diff --git a/core/modules/views/tests/src/Functional/Plugin/ViewsBulkTest.php b/core/modules/views/tests/src/Functional/Plugin/ViewsBulkTest.php index c0be12e33dbec0f640892f86bcf5fe333802fa16..c37b5f409099d03679a1fdbac648a52b196d7f04 100644 --- a/core/modules/views/tests/src/Functional/Plugin/ViewsBulkTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/ViewsBulkTest.php @@ -64,6 +64,11 @@ public function testBulkSelection() { 'changed' => \Drupal::time()->getRequestTime() - 120, ]); + // Select the node deletion action. + $action_select = $this->getSession()->getPage()->findField('edit-action'); + $action_select_name = $action_select->getAttribute('name'); + $this->getSession()->getPage()->selectFieldOption($action_select_name, 'node_delete_action'); + // Now click 'Apply to selected items' and assert the first node is selected // on the confirm form. $this->submitForm(['node_bulk_form[0]' => TRUE], 'Apply to selected items'); @@ -82,6 +87,9 @@ public function testBulkSelection() { 'title' => 'The third node', ]); + // Select the node deletion action. + $this->getSession()->getPage()->selectFieldOption($action_select_name, 'node_delete_action'); + // Now click 'Apply to selected items' and assert the second node is // selected on the confirm form. $this->submitForm(['node_bulk_form[1]' => TRUE], 'Apply to selected items');