entity_browser-8.x-2.x-dev/tests/src/FunctionalJavascript/EntityBrowserTest.php
tests/src/FunctionalJavascript/EntityBrowserTest.php
<?php namespace Drupal\Tests\entity_browser\FunctionalJavascript; /** * Tests the entity_browser. * * @group entity_browser */ class EntityBrowserTest extends EntityBrowserWebDriverTestBase { /** * Tests single widget selector. */ public function testSingleWidgetSelector() { // Sets the single widget selector. /** @var \Drupal\entity_browser\EntityBrowserInterface $browser */ $browser = $this->container->get('entity_type.manager') ->getStorage('entity_browser') ->load('test_entity_browser_file'); $this->assertEquals($browser->getWidgetSelector()->getPluginId(), 'single', 'Widget selector is set to single.'); // Create a file. $image = $this->createFile('llama'); $this->drupalGet('node/add/article'); $this->assertSession()->linkExists('Select entities'); $this->getSession()->getPage()->clickLink('Select entities'); $this->getSession()->switchToIFrame('entity_browser_iframe_test_entity_browser_file'); $this->getSession()->getPage()->checkField('entity_browser_select[file:' . $image->id() . ']'); $this->getSession()->getPage()->pressButton('Select entities'); // Switch back to the main page. $this->getSession()->switchToIFrame(); $this->waitForAjaxToFinish(); // Test the Edit functionality. $this->assertSession()->pageTextContains('llama.jpg'); $this->assertSession()->buttonExists('Edit'); // @TODO Test the edit button. // Test the Delete functionality. $this->assertSession()->buttonExists('Remove'); $this->getSession()->getPage()->pressButton('Remove'); $this->waitForAjaxToFinish(); $this->assertSession()->pageTextNotContains('llama.jpg'); $this->assertSession()->linkExists('Select entities'); } /** * Tests the field widget with a single-cardinality field. */ public function testSingleCardinalityField() { $this->container->get('entity_type.manager') ->getStorage('field_storage_config') ->load('node.field_reference') ->setCardinality(1) ->save(); // Create a file. $image = $this->createFile('llama'); $this->drupalGet('node/add/article'); $this->assertSession()->linkExists('Select entities'); $this->assertSession()->pageTextContains('You can select one file.'); $this->getSession()->getPage()->clickLink('Select entities'); $this->getSession()->switchToIFrame('entity_browser_iframe_test_entity_browser_file'); $this->getSession()->getPage()->checkField('entity_browser_select[file:' . $image->id() . ']'); $this->getSession()->getPage()->pressButton('Select entities'); // Switch back to the main page. $this->getSession()->switchToIFrame(); $this->waitForAjaxToFinish(); // A selection has been made, so the message is no longer necessary. $this->assertSession()->pageTextNotContains('You can select one file.'); } /** * Tests the field widget with a multi-cardinality field. */ public function testMultiCardinalityField() { $assert_session = $this->assertSession(); $session = $this->getSession(); $page = $session->getPage(); $this->container->get('entity_type.manager') ->getStorage('field_storage_config') ->load('node.field_reference') ->setCardinality(3) ->save(); // Create a few files to choose. $images = []; array_push($images, $this->createFile('llama')); array_push($images, $this->createFile('sloth')); array_push($images, $this->createFile('puppy')); $this->drupalGet('node/add/article'); $assert_session->linkExists('Select entities'); $assert_session->pageTextContains('You can select up to 3 files (3 left).'); $page->clickLink('Select entities'); $session->switchToIFrame('entity_browser_iframe_test_entity_browser_file'); $page->checkField('entity_browser_select[file:' . $images[0]->id() . ']'); $page->checkField('entity_browser_select[file:' . $images[1]->id() . ']'); $page->pressButton('Select entities'); // Switch back to the main page. $session->switchToIFrame(); $this->waitForAjaxToFinish(); // Selections have been made, so the message should be different. $assert_session->pageTextContains('You can select up to 3 files (1 left).'); } /** * Tests tabs widget selector. */ public function testTabsWidgetSelector() { // Sets the tabs widget selector. /** @var \Drupal\entity_browser\EntityBrowserInterface $browser */ $browser = $this->container->get('entity_type.manager') ->getStorage('entity_browser') ->load('test_entity_browser_file') ->setWidgetSelector('tabs'); $browser->save(); $this->assertEquals($browser->getWidgetSelector()->getPluginId(), 'tabs', 'Widget selector is set to tabs.'); // Create a file. $image = $this->createFile('llama'); // Create a second file. $image2 = $this->createFile('llama2'); $this->drupalGet('node/add/article'); $this->assertSession()->linkExists('Select entities'); $this->getSession()->getPage()->clickLink('Select entities'); $this->getSession()->switchToIFrame('entity_browser_iframe_test_entity_browser_file'); $this->assertSession()->linkExists('dummy'); $this->assertSession()->linkExists('view'); $this->assertSession()->linkExists('upload'); $this->assertEquals('is-active active', $this->getSession()->getPage()->findLink('view')->getAttribute('class')); $this->getSession()->getPage()->checkField('entity_browser_select[file:' . $image->id() . ']'); $this->getSession()->getPage()->pressButton('Select entities'); $this->getSession()->switchToIFrame(); $this->waitForAjaxToFinish(); $this->assertSession()->pageTextContains('llama.jpg'); $this->getSession()->getPage()->clickLink('Select entities'); $this->getSession()->switchToIFrame('entity_browser_iframe_test_entity_browser_file'); $this->getSession()->getPage()->clickLink('upload'); // This is producing an error. Still investigating // InvalidStateError: DOM Exception 11: An attempt was made to use an object // that is not, or is no longer, usable. // $uri = $this->container // ->get('file_system') // ->realpath($image2->getFileUri()); // $edit = [ // 'files[upload][]' => $uri, // ]; // $this->submitForm($edit, 'Select files');. \Drupal::state()->set('eb_test_dummy_widget_access', FALSE); $this->drupalGet('entity-browser/iframe/test_entity_browser_file'); $this->assertSession()->linkNotExists('dummy'); $this->assertSession()->linkExists('view'); $this->assertSession()->linkExists('upload'); // Commenting out header checks for now: // Behat\Mink\Exception\UnsupportedDriverActionException: Response headers are not available // from Drupal\FunctionalJavascriptTests\DrupalSelenium2Driver // $this->assertHeader('X-Drupal-Cache-Contexts', 'eb_dummy'); // Move dummy widget to the first place and make sure it does not appear. $browser = $this->container->get('entity_type.manager') ->getStorage('entity_browser') ->load('test_entity_browser_file'); $browser->getWidget('cbc59500-04ab-4395-b063-c561f0e3bf80')->setWeight(-15); $browser->save(); $this->drupalGet('entity-browser/iframe/test_entity_browser_file'); $this->assertSession()->linkNotExists('dummy'); $this->assertSession()->linkExists('view'); $this->assertSession()->linkExists('upload'); $this->assertSession()->pageTextNotContains('This is dummy widget.'); } /** * Tests dropdown widget selector. */ public function testDropdownWidgetSelector() { // Sets the dropdown widget selector. /** @var \Drupal\entity_browser\EntityBrowserInterface $browser */ $browser = $this->container->get('entity_type.manager') ->getStorage('entity_browser') ->load('test_entity_browser_file') ->setWidgetSelector('drop_down'); $browser->save(); $this->assertEquals($browser->getWidgetSelector()->getPluginId(), 'drop_down', 'Widget selector is set to dropdown.'); // Create a file. $image = $this->createFile('llama'); $this->drupalGet('node/add/article'); $this->assertSession()->linkExists('Select entities'); $this->getSession()->getPage()->clickLink('Select entities'); $this->getSession()->switchToIFrame('entity_browser_iframe_test_entity_browser_file'); $this->assertSession()->selectExists('widget'); // Dummy. $this->assertSession()->optionExists('widget', 'cbc59500-04ab-4395-b063-c561f0e3bf80'); // Upload. $this->assertSession()->optionExists('widget', '2dc1ab07-2f8f-42c9-aab7-7eef7f8b7d87'); // View. $this->assertSession()->optionExists('widget', '774798f1-5ec5-4b63-84bd-124cd51ec07d'); // Selects the view widget. $this->getSession()->getPage()->selectFieldOption('widget', '774798f1-5ec5-4b63-84bd-124cd51ec07d'); $this->getSession()->getPage()->checkField('entity_browser_select[file:' . $image->id() . ']'); $this->getSession()->getPage()->pressButton('Select entities'); $this->getSession()->switchToIFrame(); $this->waitForAjaxToFinish(); $this->assertSession()->pageTextContains('llama.jpg'); $this->getSession()->getPage()->clickLink('Select entities'); $this->getSession()->switchToIFrame('entity_browser_iframe_test_entity_browser_file'); // Causes a fatal. // Selects the upload widget. // $this->getSession() // ->getPage() // ->selectFieldOption('widget', '2dc1ab07-2f8f-42c9-aab7-7eef7f8b7d87');. \Drupal::state()->set('eb_test_dummy_widget_access', FALSE); $this->drupalGet('entity-browser/iframe/test_entity_browser_file'); // Dummy. $this->assertSession()->optionNotExists('widget', 'cbc59500-04ab-4395-b063-c561f0e3bf80'); // Upload. $this->assertSession()->optionExists('widget', '2dc1ab07-2f8f-42c9-aab7-7eef7f8b7d87'); // View. $this->assertSession()->optionExists('widget', '774798f1-5ec5-4b63-84bd-124cd51ec07d'); // Move dummy widget to the first place and make sure it does not appear. $browser = $this->container->get('entity_type.manager') ->getStorage('entity_browser') ->load('test_entity_browser_file'); $browser->getWidget('cbc59500-04ab-4395-b063-c561f0e3bf80')->setWeight(-15); $browser->save(); $this->drupalGet('entity-browser/iframe/test_entity_browser_file'); // Dummy. $this->assertSession()->optionNotExists('widget', 'cbc59500-04ab-4395-b063-c561f0e3bf80'); // Upload. $this->assertSession()->optionExists('widget', '2dc1ab07-2f8f-42c9-aab7-7eef7f8b7d87'); // View. $this->assertSession()->optionExists('widget', '774798f1-5ec5-4b63-84bd-124cd51ec07d'); $this->assertSession()->pageTextNotContains('This is dummy widget.'); } /** * Tests views selection display. */ public function testViewsSelectionDisplayWidget() { // Sets the dropdown widget selector. /** @var \Drupal\entity_browser\EntityBrowserInterface $browser */ $browser = $this->container->get('entity_type.manager') ->getStorage('entity_browser') ->load('test_entity_browser_file') ->setSelectionDisplay('view'); $browser->save(); $this->assertEquals($browser->getSelectionDisplay()->getPluginId(), 'view', 'Selection display is set to view.'); } /** * Tests NoDisplay selection display plugin. */ public function testNoDisplaySelectionDisplay() { /** @var \Drupal\Core\Entity\Display\EntityFormDisplayInterface $form_display */ $form_display = $this->container->get('entity_type.manager') ->getStorage('entity_form_display') ->load('node.article.default'); $form_display->setComponent('field_reference', [ 'type' => 'entity_browser_entity_reference', 'settings' => [ 'entity_browser' => 'multiple_submit_example', 'field_widget_display' => 'label', 'open' => TRUE, ], ])->save(); $account = $this->drupalCreateUser([ 'access multiple_submit_example entity browser pages', 'create article content', 'access content', ]); $this->drupalLogin($account); $this->drupalGet('node/add/article'); // Open the entity browser widget form. $this->getSession()->getPage()->clickLink('Select entities'); $this->getSession()->switchToIFrame('entity_browser_iframe_multiple_submit_example'); // Click the second submit button to make sure the widget does not close. $this->getSession()->getPage()->pressButton('Second submit button'); // Check that the entity browser widget is still open. $this->getSession()->getPage()->hasButton('Second submit button'); // Click the primary submit button to close the widget. $this->getSession()->getPage()->pressButton('Select entities'); // Check that the entity browser widget is closed. $this->assertSession()->buttonNotExists('Second submit button'); } /** * Tests the EntityBrowserWidgetContext default argument plugin. */ public function testEntityBrowserWidgetContext() { $this->createNode(['type' => 'shark', 'title' => 'Luke']); $this->createNode(['type' => 'jet', 'title' => 'Leia']); $this->createNode(['type' => 'article', 'title' => 'Darth']); /** @var \Drupal\Core\Entity\Display\EntityFormDisplayInterface $form_display */ $form_display = $this->container->get('entity_type.manager') ->getStorage('entity_form_display') ->load('node.article.default'); $form_display->setComponent('field_reference', [ 'type' => 'entity_browser_entity_reference', 'settings' => [ 'entity_browser' => 'widget_context_default_value', 'field_widget_display' => 'label', 'open' => TRUE, ], ])->save(); /** @var \Drupal\Core\Field\FieldConfigInterface $field_config */ $field_config = $this->container->get('entity_type.manager') ->getStorage('field_config') ->load('node.article.field_reference'); $handler_settings = $field_config->getSetting('handler_settings'); $handler_settings['target_bundles'] = [ 'shark' => 'shark', 'jet' => 'jet', ]; $field_config->setSetting('handler_settings', $handler_settings); $field_config->save(); // Set auto open to false on the entity browser. $entity_browser = $this->container->get('entity_type.manager') ->getStorage('entity_browser') ->load('widget_context_default_value'); $display_configuration = $entity_browser->get('display_configuration'); $display_configuration['auto_open'] = FALSE; $entity_browser->set('display_configuration', $display_configuration); $entity_browser->save(); $account = $this->drupalCreateUser([ 'access widget_context_default_value entity browser pages', 'create article content', 'access content', ]); $this->drupalLogin($account); $this->drupalGet('node/add/article'); // Open the entity browser widget form. $this->getSession()->getPage()->clickLink('Select entities'); $this->getSession()->switchToIFrame('entity_browser_iframe_widget_context_default_value'); // Check that only nodes of an allowed type are listed. $this->assertSession()->pageTextContains('Luke'); $this->assertSession()->pageTextContains('Leia'); $this->assertSession()->pageTextNotContains('Darth'); /** @var \Drupal\Core\Field\FieldConfigInterface $field_config */ $field_config = $this->container->get('entity_type.manager') ->getStorage('field_config') ->load('node.article.field_reference'); $handler_settings = $field_config->getSetting('handler_settings'); $handler_settings['target_bundles'] = [ 'article' => 'article', ]; $field_config->setSetting('handler_settings', $handler_settings); $field_config->save(); $this->drupalGet('node/add/article'); // Open the entity browser widget form. $this->getSession()->getPage()->clickLink('Select entities'); $this->getSession()->switchToIFrame('entity_browser_iframe_widget_context_default_value'); // Check that only nodes of an allowed type are listed. $this->assertSession()->pageTextNotContains('Luke'); $this->assertSession()->pageTextNotContains('Leia'); $this->assertSession()->pageTextContains('Darth'); } /** * Tests the ContextualBundle filter plugin. */ public function testContextualBundle() { $this->createNode(['type' => 'shark', 'title' => 'Luke']); $this->createNode(['type' => 'jet', 'title' => 'Leia']); $this->createNode(['type' => 'article', 'title' => 'Darth']); /** @var \Drupal\Core\Entity\Display\EntityFormDisplayInterface $form_display */ $form_display = $this->container->get('entity_type.manager') ->getStorage('entity_form_display') ->load('node.article.default'); $form_display->setComponent('field_reference', [ 'type' => 'entity_browser_entity_reference', 'settings' => [ 'entity_browser' => 'bundle_filter', 'field_widget_display' => 'label', 'open' => TRUE, ], ])->save(); /** @var \Drupal\Core\Field\FieldConfigInterface $field_config */ $field_config = $this->container->get('entity_type.manager') ->getStorage('field_config') ->load('node.article.field_reference'); $handler_settings = $field_config->getSetting('handler_settings'); $handler_settings['target_bundles'] = [ 'shark' => 'shark', 'jet' => 'jet', ]; $field_config->setSetting('handler_settings', $handler_settings); $field_config->save(); // Set auto open to false on the entity browser. $entity_browser = $this->container->get('entity_type.manager') ->getStorage('entity_browser') ->load('bundle_filter'); $display_configuration = $entity_browser->get('display_configuration'); $display_configuration['auto_open'] = FALSE; $entity_browser->set('display_configuration', $display_configuration); $entity_browser->save(); $account = $this->drupalCreateUser([ 'access bundle_filter entity browser pages', 'create article content', 'access content', ]); $this->drupalLogin($account); $this->drupalGet('node/add/article'); // Open the entity browser widget form. $this->getSession()->getPage()->clickLink('Select entities'); $this->getSession()->switchToIFrame('entity_browser_iframe_bundle_filter'); // Check that only nodes of an allowed type are listed. $this->assertSession()->pageTextContains('Luke'); $this->assertSession()->pageTextContains('Leia'); $this->assertSession()->pageTextNotContains('Darth'); /** @var \Drupal\Core\Field\FieldConfigInterface $field_config */ $field_config = $this->container->get('entity_type.manager') ->getStorage('field_config') ->load('node.article.field_reference'); $handler_settings = $field_config->getSetting('handler_settings'); $handler_settings['target_bundles'] = [ 'article' => 'article', ]; $field_config->setSetting('handler_settings', $handler_settings); $field_config->save(); $this->drupalGet('node/add/article'); // Open the entity browser widget form. $this->getSession()->getPage()->clickLink('Select entities'); $this->getSession()->switchToIFrame('entity_browser_iframe_bundle_filter'); // Check that only nodes of an allowed type are listed. $this->assertSession()->pageTextNotContains('Luke'); $this->assertSession()->pageTextNotContains('Leia'); $this->assertSession()->pageTextContains('Darth'); } /** * Tests the ContextualBundle filter plugin with exposed option. */ public function testContextualBundleExposed() { $this->config('entity_browser.browser.bundle_filter') ->set('widgets.b882a89d-9ce4-4dfe-9802-62df93af232a.settings.view', 'bundle_filter_exposed') ->save(); $this->createNode(['type' => 'shark', 'title' => 'Luke']); $this->createNode(['type' => 'jet', 'title' => 'Leia']); $this->createNode(['type' => 'article', 'title' => 'Darth']); /** @var \Drupal\Core\Entity\Display\EntityFormDisplayInterface $form_display */ $form_display = $this->container->get('entity_type.manager') ->getStorage('entity_form_display') ->load('node.article.default'); $form_display->setComponent('field_reference', [ 'type' => 'entity_browser_entity_reference', 'settings' => [ 'entity_browser' => 'bundle_filter', 'field_widget_display' => 'label', 'open' => TRUE, ], ])->save(); /** @var \Drupal\Core\Field\FieldConfigInterface $field_config */ $field_config = $this->container->get('entity_type.manager') ->getStorage('field_config') ->load('node.article.field_reference'); $handler_settings = $field_config->getSetting('handler_settings'); $handler_settings['target_bundles'] = [ 'shark' => 'shark', 'jet' => 'jet', ]; $field_config->setSetting('handler_settings', $handler_settings); $field_config->save(); // Set auto open to false on the entity browser. $entity_browser = $this->container->get('entity_type.manager') ->getStorage('entity_browser') ->load('bundle_filter'); $display_configuration = $entity_browser->get('display_configuration'); $display_configuration['auto_open'] = FALSE; $entity_browser->set('display_configuration', $display_configuration); $entity_browser->save(); $account = $this->drupalCreateUser([ 'access bundle_filter entity browser pages', 'create article content', 'access content', ]); $this->drupalLogin($account); $this->drupalGet('node/add/article'); // Open the entity browser widget form. $this->getSession()->getPage()->clickLink('Select entities'); $this->getSession()->switchToIFrame('entity_browser_iframe_bundle_filter'); // Check that only nodes of an allowed type are listed. $this->assertSession()->pageTextContains('Luke'); $this->assertSession()->pageTextContains('Leia'); $this->assertSession()->pageTextNotContains('Darth'); // Test exposed form type filter. $this->assertSession()->selectExists('Type')->selectOption('jet'); $this->assertSession()->buttonExists('Apply')->press(); $this->assertSession()->assertWaitOnAjaxRequest(); // Check that only nodes of the type selected in the exposed filter display. $this->assertSession()->pageTextNotContains('Luke'); $this->assertSession()->pageTextContains('Leia'); $this->assertSession()->pageTextNotContains('Darth'); $this->assertSession()->selectExists('Type')->selectOption('shark'); $this->assertSession()->buttonExists('Apply')->press(); $this->assertSession()->assertWaitOnAjaxRequest(); // Check that only nodes of the type selected in the exposed filter display. $this->assertSession()->pageTextContains('Luke'); $this->assertSession()->pageTextNotContains('Leia'); $this->assertSession()->pageTextNotContains('Darth'); $this->assertSession()->selectExists('Type')->selectOption('All'); $this->assertSession()->buttonExists('Apply')->press(); $this->assertSession()->assertWaitOnAjaxRequest(); // Check that only nodes of the type selected in the exposed filter display. $this->assertSession()->pageTextContains('Luke'); $this->assertSession()->pageTextContains('Leia'); $this->assertSession()->pageTextNotContains('Darth'); /** @var \Drupal\Core\Field\FieldConfigInterface $field_config */ $field_config = $this->container->get('entity_type.manager') ->getStorage('field_config') ->load('node.article.field_reference'); $handler_settings = $field_config->getSetting('handler_settings'); $handler_settings['target_bundles'] = [ 'article' => 'article', ]; $field_config->setSetting('handler_settings', $handler_settings); $field_config->save(); $this->drupalGet('node/add/article'); // Open the entity browser widget form. $this->getSession()->getPage()->clickLink('Select entities'); $this->getSession()->switchToIFrame('entity_browser_iframe_bundle_filter'); // Check that only nodes of an allowed type are listed. $this->assertSession()->pageTextNotContains('Luke'); $this->assertSession()->pageTextNotContains('Leia'); $this->assertSession()->pageTextContains('Darth'); // If there is just one target_bundle, the contextual filter // should not be visible. $this->assertSession()->fieldNotExists('Type'); } }