public function MediaGalleryModifyTest::testAddRemove in Thunder 8.5
Same name and namespace in other branches
- 8.2 tests/src/FunctionalJavascript/MediaGalleryModifyTest.php \Drupal\Tests\thunder\FunctionalJavascript\MediaGalleryModifyTest::testAddRemove()
- 8.3 tests/src/FunctionalJavascript/MediaGalleryModifyTest.php \Drupal\Tests\thunder\FunctionalJavascript\MediaGalleryModifyTest::testAddRemove()
- 8.4 tests/src/FunctionalJavascript/MediaGalleryModifyTest.php \Drupal\Tests\thunder\FunctionalJavascript\MediaGalleryModifyTest::testAddRemove()
- 6.2.x tests/src/FunctionalJavascript/MediaGalleryModifyTest.php \Drupal\Tests\thunder\FunctionalJavascript\MediaGalleryModifyTest::testAddRemove()
- 6.0.x tests/src/FunctionalJavascript/MediaGalleryModifyTest.php \Drupal\Tests\thunder\FunctionalJavascript\MediaGalleryModifyTest::testAddRemove()
- 6.1.x tests/src/FunctionalJavascript/MediaGalleryModifyTest.php \Drupal\Tests\thunder\FunctionalJavascript\MediaGalleryModifyTest::testAddRemove()
Test add/remove Images in Gallery.
Demo Article (node Id: 7) is used for testing. Cases tested:
- remove inside inline entity form
- add inside entity browser
- reorder inside entity browser
- remove inside entity browser.
File
- tests/
src/ FunctionalJavascript/ MediaGalleryModifyTest.php, line 85
Class
- MediaGalleryModifyTest
- Tests the Gallery media modification.
Namespace
Drupal\Tests\thunder\FunctionalJavascriptCode
public function testAddRemove() {
// Test remove inside inline entity form.
$this
->drupalGet("node/7/edit");
$page = $this
->getSession()
->getPage();
$this
->editParagraph($page, 'field_paragraphs', 0);
// Remove 2nd Image.
$this
->clickAjaxButtonCssSelector('[data-drupal-selector="edit-field-paragraphs-0-subform-field-media-0-inline-entity-form-field-media-images-current-items-1-remove-button"]');
$this
->clickSave();
$this
->clickButtonCssSelector($page, '#slick-media-gallery-media-images-default-13-1 button.slick-next');
// Check that, there are 4 images in gallery.
$numberOfImages = $this
->getSession()
->evaluateScript('jQuery(\'#slick-media-gallery-media-images-default-13-1 div.slick-slide:not(.slick-cloned)\').length;');
$this
->assertEquals(4, $numberOfImages, 'There should be 4 images in Gallery.');
// Check that, 2nd image is file: 26315068204_24ffa6cfc4_o.jpg.
$fileNamePosition = $this
->getSession()
->evaluateScript('jQuery(\'#slick-media-gallery-media-images-default-13-1 div.slick-slide:not(.slick-cloned):nth(1) img\').attr(\'src\').indexOf("26315068204_24ffa6cfc4_o.jpg")');
$this
->assertNotEquals(-1, $fileNamePosition, 'For 2nd image in gallery, used file should be "26315068204_24ffa6cfc4_o.jpg".');
// Test add + reorder inside entity browser.
$this
->drupalGet("node/7/edit");
$this
->editParagraph($page, 'field_paragraphs', 0);
// Click Select entities -> to open Entity Browser.
$this
->openEntityBrowser($page, 'edit-field-paragraphs-0-subform-field-media-0-inline-entity-form-field-media-images-entity-browser-entity-browser-open-modal', 'multiple_image_browser');
$this
->uploadFile($page, '/project/tests/fixtures/reference.jpg');
// Move new image -> that's 5th image in list, to 3rd position.
$list_selector = '#edit-selected';
$item_selector = "{$list_selector} .item-container";
$this
->sortableAfter("{$item_selector}:nth-child(5)", "{$item_selector}:nth-child(2)", $list_selector);
$this
->submitEntityBrowser($page);
$this
->clickSave();
// Check that, there are 5 images in gallery.
$numberOfImages = $this
->getSession()
->evaluateScript('jQuery(\'#slick-media-gallery-media-images-default-13-1 div.slick-slide:not(.slick-cloned)\').length;');
$this
->assertEquals(5, $numberOfImages, 'There should be 5 images in Gallery.');
$this
->clickButtonCssSelector($page, '#slick-media-gallery-media-images-default-13-1 button.slick-next');
$this
->clickButtonCssSelector($page, '#slick-media-gallery-media-images-default-13-1 button.slick-next');
// Check that, 3rd image is file: reference.jpg.
$fileNamePosition = $this
->getSession()
->evaluateScript('jQuery(\'#slick-media-gallery-media-images-default-13-1 div.slick-slide:not(.slick-cloned):nth(2) img\').attr(\'src\').indexOf("reference.jpg")');
$this
->assertNotEquals(-1, $fileNamePosition, 'For 3rd image in gallery, used file should be "reference.jpg".');
// Test remove inside entity browser.
$this
->drupalGet("node/7/edit");
$this
->editParagraph($page, 'field_paragraphs', 0);
// Click Select entities -> to open Entity Browser.
$this
->openEntityBrowser($page, 'edit-field-paragraphs-0-subform-field-media-0-inline-entity-form-field-media-images-entity-browser-entity-browser-open-modal', 'multiple_image_browser');
$this
->clickButtonDrupalSelector($page, 'edit-selected-items-23-2-remove-button');
$this
->submitEntityBrowser($page);
$this
->clickSave();
// Check that, there are 4 images in gallery.
$numberOfImages = $this
->getSession()
->evaluateScript('jQuery(\'#slick-media-gallery-media-images-default-13-1 div.slick-slide:not(.slick-cloned)\').length;');
$this
->assertEquals(4, $numberOfImages, 'There should be 4 images in Gallery.');
$this
->clickButtonCssSelector($page, '#slick-media-gallery-media-images-default-13-1 button.slick-next');
$this
->clickButtonCssSelector($page, '#slick-media-gallery-media-images-default-13-1 button.slick-next');
// Check that, 3rd image is not file: reference.jpg.
$fileNamePosition = $this
->getSession()
->evaluateScript('jQuery(\'#slick-media-gallery-media-images-default-13-1 div.slick-slide:not(.slick-cloned):nth(2) img\').attr(\'src\').indexOf("reference.jpg")');
$this
->assertEquals(-1, $fileNamePosition, 'For 2nd image in gallery, used file should not be "reference.jpg".');
}