From 02049cb7253b83dd3d394550cc56edb5e9416103 Mon Sep 17 00:00:00 2001 From: Rajab Natshah <rajabn@gmail.com> Date: Tue, 27 Oct 2020 14:32:02 +0300 Subject: [PATCH] Issue #3179132: Change Automated Functional Acceptance Testing to be Drupal 9 compatible one the Varbase 9.0.x branch --- behat.varbase.yml | 3 +- ...ble-content-types-to-all-languages.feature | 36 +++-- ...-important-admin-development-pages.feature | 16 +-- ...cess-admin-audit-trail-permissions.feature | 55 ++++++++ ...nding-page-paragraphs_permissions.feature} | 22 +-- ...dd-any-paragraph-type-to-the-page.feature} | 72 ++++------ ...agraphs_text-and-image-paragraphs.feature} | 54 +++----- ...ng-page-layout-builder-permissions.feature | 8 ++ ...ns-and-choose-layouts-for-sections.feature | 7 +- .../04-09-homepage-permissions.feature | 128 ++++++++++++++++++ ...tyqueue-testing-content-and-config.feature | 17 +-- ...yqueue-reverse-order-in-admin-view.feature | 2 +- ...tityqueue-tasks-for-content-types.feature} | 2 + ...ueue-using-entityqueue-form-widget.feature | 41 +++--- ...05-04-cloning-content-and-entities.feature | 20 ++- ...embed-existing-media-image-library.feature | 100 +++++++------- 16 files changed, 367 insertions(+), 216 deletions(-) create mode 100644 tests/features/varbase/step2-apply-tests/03-admin-management/03-07-access-admin-audit-trail-permissions.feature rename tests/features/varbase/step2-apply-tests/04-content-structure/{04-02-landing-page-permissions.feature => 04-02-landing-page-paragraphs_permissions.feature} (78%) rename tests/features/varbase/step2-apply-tests/04-content-structure/{04-03-landing-page_add-any-paragraph-type-to-the-page.feature => 04-03-landing-page-paragraphs_add-any-paragraph-type-to-the-page.feature} (74%) rename tests/features/varbase/step2-apply-tests/04-content-structure/{04-04-landing-page_text-and-image-paragraphs.feature => 04-04-landing-page-paragraphs_text-and-image-paragraphs.feature} (58%) create mode 100644 tests/features/varbase/step2-apply-tests/04-content-structure/04-09-homepage-permissions.feature rename tests/features/varbase/step2-apply-tests/05-content-management/{05-02-entityqueue-tab-for-content-types.feature => 05-02-entityqueue-tasks-for-content-types.feature} (95%) diff --git a/behat.varbase.yml b/behat.varbase.yml index f9b537ad..d19b6f79 100644 --- a/behat.varbase.yml +++ b/behat.varbase.yml @@ -48,7 +48,8 @@ default: html: output_path: "%paths.base%/tests/reports/" extensions: - Behat\MinkExtension: + Drupal\MinkExtension: + ajax_timeout: 20 files_path: "%paths.base%/tests/assets/" goutte: ~ selenium2: diff --git a/tests/features/varbase/step2-apply-tests/01-website-base-requirements/01-05-translatable-content-types-to-all-languages.feature b/tests/features/varbase/step2-apply-tests/01-website-base-requirements/01-05-translatable-content-types-to-all-languages.feature index e56ca38f..cb90a47c 100644 --- a/tests/features/varbase/step2-apply-tests/01-website-base-requirements/01-05-translatable-content-types-to-all-languages.feature +++ b/tests/features/varbase/step2-apply-tests/01-website-base-requirements/01-05-translatable-content-types-to-all-languages.feature @@ -4,12 +4,12 @@ I want to be able to check if all content types are translatable So that I will be able to create a content then I will have the option to translate the content to other languages in the site # Run the following Gherkin Features to add Arabic language. -# bin/behat features/varbase/step1-init-tests/2-add-arabic.feature +# ../../../bin/behat tests/features/varbase/step1-init-tests/2-add-arabic.feature # Run the following Gherkin Features After you finish work # So that you can delete Arabic language. # -# bin/behat features/varbase/step3-cleanup-tests/2-delete-arabic.feature +# ../../../bin/behat tests/features/varbase/step3-cleanup-tests/2-delete-arabic.feature @javascript @local @development @staging @production Scenario: Check if site admin can translate an existing English Basic Page @@ -24,21 +24,29 @@ So that I will be able to create a content then I will have the option to transl And I press the "Save" button And I wait Then I should see "Test English Basic page" - And I should see "Edit" And I should see "Test English Basic page body" - And I should see "Translate" - When I click "Translate" + When I click "Tasks" + And I wait for ajax to finish + Then I should see "Translate" + When I click "Translate" in the "a" element with the "class" attribute set to "moderation-sidebar-link button" + And I wait for ajax to finish + Then I should see "Translate" + And I should see "View all translations" + When I click "Create translation" And I wait - Then I should see "Translations of Test English Basic page" - And I should see "Not translated" in the "Arabic" row - When I click "Add" in the "Arabic" row - And I wait - Then I should see "Create Arabic translation of Test English Basic page" - When I fill in "تجربة صÙØØ© بسيطة عربية العنوان" for "Title" - And I fill in the rich text editor field "Body" with "تجربة صÙØØ© بسيطة عربية المØتوى" - And I press the "op" button + And I fill in "تجربة صÙØØ© بسيطة عربية العنوان" for "edit-title-0-value" + And I fill in the rich text editor field "edit-body-0-value" with "تجربة صÙØØ© بسيطة عربية المØتوى" + And I press the "edit-submit" button And I wait Then I should see "تجربة صÙØØ© بسيطة عربية العنوان" - When I click "Translate" + When I click "Tasks" + And I wait for ajax to finish + Then I should see "Translate" + When I click "Translate" in the "a" element with the "class" attribute set to "moderation-sidebar-link button" + And I wait for ajax to finish + Then I should see "Translate" + And I should see "View all translations" + And I wait + When I click "View all translations" And I wait Then I should see "Test English Basic page" diff --git a/tests/features/varbase/step2-apply-tests/03-admin-management/03-00-pre-check-important-admin-development-pages.feature b/tests/features/varbase/step2-apply-tests/03-admin-management/03-00-pre-check-important-admin-development-pages.feature index b6c83242..9a5e4da2 100644 --- a/tests/features/varbase/step2-apply-tests/03-admin-management/03-00-pre-check-important-admin-development-pages.feature +++ b/tests/features/varbase/step2-apply-tests/03-admin-management/03-00-pre-check-important-admin-development-pages.feature @@ -12,6 +12,13 @@ So that I can use them after the install or update. And I wait Then I should see "Content" + @check @local @development @staging @production + Scenario: Check the Homepage content with Layout Builder + When I go to "/admin/content" + And I wait + Then I should see "Homepage" + And I should see "Landing page (Layout Builder)" in the "Homepage" row + @check @local @development @staging @production Scenario: Check Files admin page When I go to "/admin/content/files" @@ -61,15 +68,6 @@ So that I can use them after the install or update. When I go to "/admin/structure/page_manager" And I wait Then I should see "Pages" - And I should see "Homepage" - And I should see "Total Control dashboard" - - @check @local @development @staging @production - Scenario: Check the Page Manager main page. - When I go to "/admin/structure/page_manager" - And I wait - Then I should see "Pages" - And I should see "Homepage" And I should see "Total Control dashboard" @check @local @development @staging @production diff --git a/tests/features/varbase/step2-apply-tests/03-admin-management/03-07-access-admin-audit-trail-permissions.feature b/tests/features/varbase/step2-apply-tests/03-admin-management/03-07-access-admin-audit-trail-permissions.feature new file mode 100644 index 00000000..3550d24d --- /dev/null +++ b/tests/features/varbase/step2-apply-tests/03-admin-management/03-07-access-admin-audit-trail-permissions.feature @@ -0,0 +1,55 @@ +Feature: User Management - Standard User Management - Users with permission to access the Admin audit trails +As a logged in site admin or editor with permission to access the Admin audit trails +I will be able to trails of actions on the site by the same user and or users +So that only users with permission can see trails of audit changes on the website + + @javascript @check @local @development @staging @production + Scenario: Check that user Number 1 can access the Admin audit trails + Given I am a logged in user with the "webmaster" user + When I go to "/admin/reports/audit-trail" + And I wait + Then I should see "Admin audit trails" + + @javascript @check @local @development @staging @production + Scenario: Check that an anonymous users can not access the Admin audit trails + Given I am an anonymous user + When I go to "/admin/reports/audit-trail" + And I wait + Then I should not see "Admin audit trails" + And I should see "Access denied" + + @javascript @check @local @development @staging @production + Scenario: Check that an authenticated user can not access the Admin audit trails + Given I am a logged in user with the "test_authenticated" user + When I go to "/admin/reports/audit-trail" + And I wait + Then I should not see "Admin audit trails" + And I should see "Access denied" + + @javascript @check @local @development @staging @production + Scenario: Check that Editor users can access the Admin audit trails + Given I am a logged in user with the "test_editor" user + When I go to "/admin/reports/audit-trail" + And I wait + Then I should see "Admin audit trails" + + @javascript @check @local @development @staging @production + Scenario: Check that Content Admin users can access the Admin audit trails + Given I am a logged in user with the "test_content_admin" user + When I go to "/admin/reports/audit-trail" + And I wait + Then I should see "Admin audit trails" + + @javascript @check @local @development @staging @production + Scenario: Check that SEO Admin users can access the Admin audit trails + Given I am a logged in user with the "test_seo_admin" user + When I go to "/admin/reports/audit-trail" + And I wait + Then I should see "Admin audit trails" + + @javascript @check @local @development @staging @production + Scenario: Check that Site Admin users can access the Admin audit trails + Given I am a logged in user with the "test_site_admin" user + When I go to "/admin/reports/audit-trail" + And I wait + Then I should see "Admin audit trails" diff --git a/tests/features/varbase/step2-apply-tests/04-content-structure/04-02-landing-page-permissions.feature b/tests/features/varbase/step2-apply-tests/04-content-structure/04-02-landing-page-paragraphs_permissions.feature similarity index 78% rename from tests/features/varbase/step2-apply-tests/04-content-structure/04-02-landing-page-permissions.feature rename to tests/features/varbase/step2-apply-tests/04-content-structure/04-02-landing-page-paragraphs_permissions.feature index 54aaccd6..3a563b2e 100644 --- a/tests/features/varbase/step2-apply-tests/04-content-structure/04-02-landing-page-permissions.feature +++ b/tests/features/varbase/step2-apply-tests/04-content-structure/04-02-landing-page-paragraphs_permissions.feature @@ -1,24 +1,24 @@ -Feature: Content Structure - Landing Pages -As a logged in user with a permission to manage Landing pages. +Feature: Content Structure - Landing page (Paragraphs) +As a logged in user with a permission to manage Landing page (Paragraphs). I want to be able to add a "Landing page" which has got predefined set of paragrphs -So that the "Landing page" will show up in the structured menu under its parent page +So that the "Landing page (Paragraphs)" will show up in the structured menu under its parent page @javascript @local @development @staging @production - Scenario: Check if we do have the Landing page content type + Scenario: Check if we do have the Landing page (Paragraphs) content type Given I am a logged in user with the "webmaster" user When I go to "/admin/structure/types" And I wait - Then I should see "Landing page" + Then I should see "Landing page (Paragraphs)" @javascript @local @development @staging @production - Scenario: Check that the Landing page content type has paragraphs field + Scenario: Check that the Landing page (Paragraphs) content type has paragraphs field Given I am a logged in user with the "webmaster" user When I go to "/admin/structure/types/manage/landing_page/fields" And I wait Then I should see "field_lp_paragraphs" @javascript @local @development @staging @production - Scenario: Check that an Anonymous users can not create a Landing page + Scenario: Check that an Anonymous users can not create a Landing page (Paragraphs) Given I am an anonymous user When I go to "/node/add/landing_page" And I wait @@ -26,7 +26,7 @@ So that the "Landing page" will show up in the structured menu under its parent And I should see "You are not authorized to access this page." @javascript @local @development @staging @production - Scenario: Check that an authenticated user can not create a Landing page + Scenario: Check that an authenticated user can not create a Landing page (Paragraphs) Given I am a logged in user with the "test_authenticated" user When I go to "/node/add/landing_page" And I wait @@ -34,7 +34,7 @@ So that the "Landing page" will show up in the structured menu under its parent And I should see "You are not authorized to access this page." @javascript @local @development @staging @production - Scenario: Check that Editor users can create a Landing page + Scenario: Check that Editor users can create a Landing page (Paragraphs) Given I am a logged in user with the "test_editor" user When I go to "/node/add/landing_page" And I wait @@ -42,7 +42,7 @@ So that the "Landing page" will show up in the structured menu under its parent And I should not see "You are not authorized to access this page." @javascript @local @development @staging @production - Scenario: Check that Content Admin users can create a Landing page + Scenario: Check that Content Admin users can create a Landing page (Paragraphs) Given I am a logged in user with the "test_content_admin" user When I go to "/node/add/landing_page" And I wait @@ -50,7 +50,7 @@ So that the "Landing page" will show up in the structured menu under its parent And I should not see "You are not authorized to access this page." @javascript @local @development @staging @production - Scenario: Check that Site Admin users can create a Landing page + Scenario: Check that Site Admin users can create a Landing page (Paragraphs) Given I am a logged in user with the "test_site_admin" user When I go to "/node/add/landing_page" And I wait diff --git a/tests/features/varbase/step2-apply-tests/04-content-structure/04-03-landing-page_add-any-paragraph-type-to-the-page.feature b/tests/features/varbase/step2-apply-tests/04-content-structure/04-03-landing-page-paragraphs_add-any-paragraph-type-to-the-page.feature similarity index 74% rename from tests/features/varbase/step2-apply-tests/04-content-structure/04-03-landing-page_add-any-paragraph-type-to-the-page.feature rename to tests/features/varbase/step2-apply-tests/04-content-structure/04-03-landing-page-paragraphs_add-any-paragraph-type-to-the-page.feature index 0a2cbca2..12cbf23b 100644 --- a/tests/features/varbase/step2-apply-tests/04-content-structure/04-03-landing-page_add-any-paragraph-type-to-the-page.feature +++ b/tests/features/varbase/step2-apply-tests/04-content-structure/04-03-landing-page-paragraphs_add-any-paragraph-type-to-the-page.feature @@ -1,7 +1,7 @@ -Feature: Landing Pages - Add any paragraph types to the page +Feature: Landing page (Paragraphs) - Add any paragraph types to the page As a logged in user with a permission to mange Landing pages I want to be able to add any paragraph type to the page -So that the "Landing page" will show up having paragrpahs of different types +So that the Landing page (Paragraphs)" will show up having paragrpahs of different types @local @development @staging @production Scenario: Upload the "Embed Flag Earth" file @@ -33,7 +33,7 @@ So that the "Landing page" will show up having paragrpahs of different types Then I should see "The configuration options have been saved." @javascript @local @development @staging @production - Scenario: Check if a user with a permission to manage Landing page content type can add paragraphs of type Drupal Block + Scenario: Check if a user with a permission to manage Landing page (Paragraphs) content type can add paragraphs of type Drupal Block Given I am a logged in user with the "test_site_admin" user When I go to "node/add/landing_page" And I wait @@ -41,7 +41,7 @@ So that the "Landing page" will show up having paragrpahs of different types And I fill in "Test Landing page description Drupal Block" for "Page description" And I wait for AJAX to finish And I wait for 1 second - And I press "Add Component" + And I press "+ Add" And I wait for AJAX to finish And I wait for 1 second And I select the "bp_block" paragraph component @@ -52,10 +52,10 @@ So that the "Landing page" will show up having paragrpahs of different types And I select "published" from "edit-moderation-state-0-state" And I press the "Save" button And I wait - Then I should see "Landing page Test Landing page Drupal Block has been created" + Then I should see "Landing page (Paragraphs) Test Landing page Drupal Block has been created" @javascript @local @development @staging @production - Scenario: Check if a user with a permission to manage Landing page content type can add paragraphs of type Columns Equal + Scenario: Check if a user with a permission to manage Landing page (Paragraphs) content type can add paragraphs of type Columns Equal Given I am a logged in user with the "test_site_admin" user When I go to "node/add/landing_page" And I wait @@ -63,7 +63,7 @@ So that the "Landing page" will show up having paragrpahs of different types And I fill in "Test Landing page description Columns (Equal)" for "Page description" And I wait for AJAX to finish And I wait for 1 second - And I press "Add Component" + And I press "+ Add" And I wait for AJAX to finish And I wait for 1 second And I select the "bp_columns" paragraph component @@ -71,10 +71,10 @@ So that the "Landing page" will show up having paragrpahs of different types And I select "published" from "edit-moderation-state-0-state" And I press the "Save" button And I wait - Then I should see "Landing page Test Landing page Columns (Equal) has been created" + Then I should see "Landing page (Paragraphs) Test Landing page Columns (Equal) has been created" @javascript @local @development @staging @production - Scenario: Check if a user with a permission to manage Landing page content type can add paragraphs of type Columns Two Uneven + Scenario: Check if a user with a permission to manage Landing page (Paragraphs) content type can add paragraphs of type Columns Two Uneven Given I am a logged in user with the "test_site_admin" user When I go to "node/add/landing_page" And I wait @@ -82,7 +82,7 @@ So that the "Landing page" will show up having paragrpahs of different types And I fill in "Test Landing page description Columns (Two Uneven)" for "Page description" And I wait for AJAX to finish And I wait for 1 second - And I press "Add Component" + And I press "+ Add" And I wait for AJAX to finish And I wait for 1 second And I select the "bp_columns_two_uneven" paragraph component @@ -90,10 +90,10 @@ So that the "Landing page" will show up having paragrpahs of different types And I select "published" from "edit-moderation-state-0-state" And I press the "Save" button And I wait - Then I should see "Landing page Test Landing page Columns (Two Uneven) has been created" + Then I should see "Landing page (Paragraphs) Test Landing page Columns (Two Uneven) has been created" @javascript @local @development @staging @production - Scenario: Check if a user with a permission to manage Landing page content type can add paragraphs of type Modal + Scenario: Check if a user with a permission to manage Landing page (Paragraphs) content type can add paragraphs of type Modal Given I am a logged in user with the "test_site_admin" user When I go to "node/add/landing_page" And I wait @@ -101,7 +101,7 @@ So that the "Landing page" will show up having paragrpahs of different types And I fill in "Test Landing page description Modal" for "Page description" And I wait for AJAX to finish And I wait for 1 second - And I press "Add Component" + And I press "+ Add" And I wait for AJAX to finish And I wait for 1 second And I select the "bp_modal" paragraph component @@ -109,22 +109,24 @@ So that the "Landing page" will show up having paragrpahs of different types Then I should see "Components" When I fill in "Modal button" for "Modal button text" And I fill in "Modal title" for "Modal title" - And I press "Add Component" + And I press "+ Add" And I wait for AJAX to finish And I select the "bp_simple" paragraph component And I wait + And I wait for AJAX to finish + And I wait for 1 second Then I should see "Modal body" When I fill in the rich text editor field "Text" with "Modal Body test" And I select "published" from "edit-moderation-state-0-state" And I press the "Save" button - Then I should see "Landing page Test Landing page Modal has been created" + Then I should see "Landing page (Paragraphs) Test Landing page Modal has been created" When I press "Modal button" And I wait for AJAX to finish And I wait 2 seconds Then I should see "Modal title" @javascript @local @development @staging @production - Scenario: Check if a user with a permission to manage Landing page content type can add paragraphs of type Rich Text + Scenario: Check if a user with a permission to manage Landing page (Paragraphs) content type can add paragraphs of type Rich Text Given I am a logged in user with the "test_site_admin" user When I go to "node/add/landing_page" And I wait @@ -132,7 +134,7 @@ So that the "Landing page" will show up having paragrpahs of different types And I fill in "Test Landing page description Rich Text" for "Page description" And I wait for AJAX to finish And I wait for 1 second - And I press "Add Component" + And I press "+ Add" And I wait for AJAX to finish And I wait for 1 second And I select the "bp_simple" paragraph component @@ -142,39 +144,11 @@ So that the "Landing page" will show up having paragrpahs of different types And I select "published" from "edit-moderation-state-0-state" And I press the "Save" button And I wait - Then I should see "Landing page Test Landing page Rich Text has been created" + Then I should see "Landing page (Paragraphs) Test Landing page Rich Text has been created" And I should see "Rich Text test" @javascript @local @development @staging @production - Scenario: Check if a user with a permission to manage Landing page content type can add paragraphs of type Tabs - Given I am a logged in user with the "test_site_admin" user - When I go to "node/add/landing_page" - And I wait - And I fill in "Test Landing page Tabs" for "Title" - And I fill in "Test Landing page description Tabs" for "Page description" - And I wait for AJAX to finish - And I wait for 1 second - And I press "Add Component" - And I wait for AJAX to finish - And I wait for 1 second - And I select the "bp_tabs" paragraph component - And I wait for AJAX to finish - Then I should see "Components" - When I fill in "Tab 1" for "Tab name" - And I press "Add Component" - And I wait for AJAX to finish - And I select the "bp_simple" paragraph component - And I wait - Then I should see "Tab body" - And I fill in the rich text editor field "Text" with "Tab 1 - Body test" - And I select "published" from "edit-moderation-state-0-state" - And I press the "Save" button - And I wait - Then I should see "Landing page Test Landing page Tabs has been created" - And I should see "Tab 1" - - @javascript @local @development @staging @production - Scenario: Check if a user with a permission to manage Landing page content type can add paragraphs of type WebForm + Scenario: Check if a user with a permission to manage Landing page (Paragraphs) content type can add paragraphs of type WebForm Given I am a logged in user with the "test_site_admin" user When I go to "node/add/landing_page" And I wait @@ -182,7 +156,7 @@ So that the "Landing page" will show up having paragrpahs of different types And I fill in "Test Landing page description WebForm" for "Page description" And I wait for AJAX to finish And I wait for 1 second - And I press "Add Component" + And I press "+ Add" And I wait for AJAX to finish And I wait for 1 second And I select the "bp_webform" paragraph component @@ -193,4 +167,4 @@ So that the "Landing page" will show up having paragrpahs of different types And I select "published" from "edit-moderation-state-0-state" And I press the "Save" button And I wait - Then I should see "Landing page Test Landing page WebForm has been created" + Then I should see "Landing page (Paragraphs) Test Landing page WebForm has been created" diff --git a/tests/features/varbase/step2-apply-tests/04-content-structure/04-04-landing-page_text-and-image-paragraphs.feature b/tests/features/varbase/step2-apply-tests/04-content-structure/04-04-landing-page-paragraphs_text-and-image-paragraphs.feature similarity index 58% rename from tests/features/varbase/step2-apply-tests/04-content-structure/04-04-landing-page_text-and-image-paragraphs.feature rename to tests/features/varbase/step2-apply-tests/04-content-structure/04-04-landing-page-paragraphs_text-and-image-paragraphs.feature index f786ad52..e621443e 100644 --- a/tests/features/varbase/step2-apply-tests/04-content-structure/04-04-landing-page_text-and-image-paragraphs.feature +++ b/tests/features/varbase/step2-apply-tests/04-content-structure/04-04-landing-page-paragraphs_text-and-image-paragraphs.feature @@ -1,7 +1,7 @@ -Feature: Content Structure - Landing Pages - Varbase text and image paragraphs -As a logged in user with a permission to mange Landing pages +Feature: Content Structure - Landing page (Paragraphs) - Varbase text and image paragraphs +As a logged in user with a permission to mange Landing page (Paragraphs) I want to be able to add number of Text and image paragraph compoments -So that the "Landing page" will have text and images in right and left view. +So that the "Landing page (Paragraphs)" will have text and images in right and left view. @local @development @staging @production Scenario: Upload the Embed Flag Earth file @@ -23,54 +23,34 @@ So that the "Landing page" will have text and images in right and left view. #----------------------------------------------------------------------------- @javascript @local @development @staging @production - Scenario: Check if a user with a permission to manage Landing page content type create a new Landing page + Scenario: Check if a user with a permission to manage Landing page (Paragraphs) content type create a new Landing page Given I am a logged in user with the "test_site_admin" user When I go to "node/add/landing_page" And I wait And I fill in "Test landing page title for text and image paragraphs" for "Title" And I fill in "Test landing page body description." for "Page description" - - # Add Rich text centered - And I wait for AJAX to finish - And I wait for 1 second - And I press "Add Component" - And I wait for AJAX to finish - And I wait for 1 second - And I select the "bp_simple" paragraph component - And I wait for AJAX to finish - And I fill in the rich text editor field "Text" with "Lorem ipsum dolor sit amet1, consectetur adipiscing elit. Curabitur tortor diam, interdum in quam in, vehicula varius sem. Sed eu augue diam. Proin elementum bibendum tristique. Nam at ante sem. Mauris suscipit felis eget orci porttitor, feugiat viverra elit commodo. Proin quis erat laoreet, tempor nisl nec, varius quam. Maecenas malesuada est sollicitudin euismod posuere." - And I select all text in "Text" field - And I click on "justifycenter" command button in the rich text editor field "Text" - And I wait - Then I should see "Rich Text" - - # Add Text and Image -> image to the right - - When I press "Add Component" + When I press "+ Add" And I wait for AJAX to finish And I wait for 1 second And I select the "text_and_image" paragraph component And I wait for AJAX to finish - And I wait 5s + And I scrolldown Then I should see "Text and image" - When I press "field_lp_paragraphs_1_subform_field_image_entity_browser_entity_browser" + And I should see "No media items are selected." + When I press "field_image-media-library-open-button-field_lp_paragraphs-0-subform" + And I wait for AJAX to finish + And I should see "Name" + When I fill in "Flag Earth" for "Name" + And I press the "Apply filters" button And I wait for AJAX to finish - And I wait 5s - Then the "entity_browser_iframe_image_browser" media browser should be open - When I switch to iframe "entity_browser_iframe_image_browser" - And I wait 5s - Then I should see "Media name" - When I fill in "Flag Earth" for "Media name" - And I press the "Search" button - And wait max of 5s Then I should see image with the "Flag Earth all earth in space" title text - When I double click on the image with the "Flag Earth all earth in space" title text + When I check the box "media_library_select_form[0]" And I wait for AJAX to finish - And wait max of 5s - And I switch to parent + And I press "dialog-submit" And I wait for AJAX to finish - And wait max of 5s + And I scrollup + Then I should see "The maximum number of media items have been selected." When I click "Text" And I fill in the rich text editor field "Text" with "In eros ipsum, mattis vitae vulputate eu, blandit non risus. Maecenas ultricies volutpat massa id hendrerit. Phasellus magna quam, lacinia sed justo pulvinar, tristique finibus felis. Quisque in sagittis tellus. Curabitur in est at quam maximus elementum. Pellentesque interdum tincidunt nisl, ac efficitur elit aliquam id. Integer egestas neque ut risus tincidunt semper." And I select all text in "Text" field @@ -80,4 +60,4 @@ So that the "Landing page" will have text and images in right and left view. And I press the "Save" button And I wait Then I should see "In eros ipsum, mattis vitae vulputate eu, blandit" - And I should see image with the "Flag Earth all earth in space" title text + And I should see image with the "Flag Earth all earth in space" title text diff --git a/tests/features/varbase/step2-apply-tests/04-content-structure/04-07-landing-page-layout-builder-permissions.feature b/tests/features/varbase/step2-apply-tests/04-content-structure/04-07-landing-page-layout-builder-permissions.feature index 15fbd982..18d8e74a 100644 --- a/tests/features/varbase/step2-apply-tests/04-content-structure/04-07-landing-page-layout-builder-permissions.feature +++ b/tests/features/varbase/step2-apply-tests/04-content-structure/04-07-landing-page-layout-builder-permissions.feature @@ -50,6 +50,14 @@ So that the "Landing page (Layout Builder)" will show up in the structured menu Then I should not see "Access denied" And I should not see "You are not authorized to access this page." + @javascript @local @development @staging @production + Scenario: Check that SEO Admin users can create a Landing page (Layout Builder) + Given I am a logged in user with the "test_seo_admin" user + When I go to "/node/add/landing_page_lb" + And I wait + Then I should not see "Access denied" + And I should not see "You are not authorized to access this page." + @javascript @local @development @staging @production Scenario: Check that Site Admin users can create a Landing page (Layout Builder) Given I am a logged in user with the "test_site_admin" user diff --git a/tests/features/varbase/step2-apply-tests/04-content-structure/04-08-landing-page-layout-builder_check-to-add-sections-and-choose-layouts-for-sections.feature b/tests/features/varbase/step2-apply-tests/04-content-structure/04-08-landing-page-layout-builder_check-to-add-sections-and-choose-layouts-for-sections.feature index 43aa7637..9c38b0c0 100644 --- a/tests/features/varbase/step2-apply-tests/04-content-structure/04-08-landing-page-layout-builder_check-to-add-sections-and-choose-layouts-for-sections.feature +++ b/tests/features/varbase/step2-apply-tests/04-content-structure/04-08-landing-page-layout-builder_check-to-add-sections-and-choose-layouts-for-sections.feature @@ -15,14 +15,11 @@ So that the "Landing (Layout Builder) page" will show up having the listed secti And I press the "Save" button And I wait Then I should see "Landing page (Layout Builder) Full Width - No Background Color - Text only has been created" - And I should see "Layout" - When I click "Layout" - And I wait - Then I should see "Edit layout for Full Width - No Background Color - Text only" + And I should see "This layout builder tool allows you to configure the layout of the main content area." When I click "Add section" And I wait for AJAX to finish Then I should see "Choose a layout for this section" And I should see "One column" And I should see "Two column" And I should see "Three column" - And I should see "Four column" \ No newline at end of file + And I should see "Four column" diff --git a/tests/features/varbase/step2-apply-tests/04-content-structure/04-09-homepage-permissions.feature b/tests/features/varbase/step2-apply-tests/04-content-structure/04-09-homepage-permissions.feature new file mode 100644 index 00000000..1c3995a2 --- /dev/null +++ b/tests/features/varbase/step2-apply-tests/04-content-structure/04-09-homepage-permissions.feature @@ -0,0 +1,128 @@ +Feature: Content Structure - Homepage Permissions with Landing Pages with Layout Builder +As a logged in user with a permission to manage Landing (Layout Builder) pages. +I want to be able to edit the page layouts sections and blocks +So that the homepage can be changed with permission in an easy way and be sure it will not deleted. + + @javascript @local @development @staging @production + Scenario: Check that user Number 1 can see and have all options to edit the Homepage which built by the Landing page (Layout Builder) + Given I am a logged in user with the "webmaster" user + When I go to the homepage + And I wait + Then I should see "Welcome to Varbase" + And I should see "Media Hero Slider" + When I click "Tasks" + And I wait for AJAX to finish + And I should see "Edit content" + And I should see "Delete" + And I should see "Manage display" + And I should see "Layout" + And I should see "Revisions" + And I should see "Devel" + And I should see "Clone" + And I should see "Translate" + + @javascript @local @development @staging @production + Scenario: Check that an anonymous users can only see the Homepage which built by the Landing page (Layout Builder) + Given I am an anonymous user + When I go to the homepage + And I wait + Then I should see "Welcome to Varbase" + And I should see "Media Hero Slider" + And I should not see "Tasks" + And I should not see "Edit content" + And I should not see "Delete" + And I should not see "Manage display" + And I should not see "Layout" in the "a" element with the "class" attribute set to "moderation-sidebar-link button" + And I should not see "Revisions" + And I should not see "Devel" + And I should not see "Clone" + And I should not see "Translate" + + @javascript @local @development @staging @production + Scenario: Check that an authenticated user can not edit the Homepage which built by the Landing page (Layout Builder) + Given I am a logged in user with the "test_authenticated" user + When I go to the homepage + And I wait + Then I should see "Welcome to Varbase" + And I should see "Media Hero Slider" + And I should not see "Tasks" + And I should not see "Edit content" + And I should not see "Delete" + And I should not see "Manage display" + And I should not see "Layout" in the "a" element with the "class" attribute set to "moderation-sidebar-link button" + And I should not see "Revisions" + And I should not see "Devel" + And I should not see "Clone" + And I should not see "Translate" + + @javascript @local @development @staging @production + Scenario: Check that Editor users can edit the Homepage which built by the Landing page (Layout Builder) + Given I am a logged in user with the "test_editor" user + When I go to the homepage + And I wait + Then I should see "Welcome to Varbase" + And I should see "Media Hero Slider" + When I click "Tasks" + And I wait for AJAX to finish + And I should see "Edit content" + And I should not see "Delete" + And I should not see "Manage display" + And I should see "Layout" + And I should see "Revisions" + And I should not see "Devel" + And I should see "Clone" + And I should see "Translate" + + @javascript @local @development @staging @production + Scenario: Check that Content Admin users can edit the Homepage which built by the Landing page (Layout Builder) + Given I am a logged in user with the "test_content_admin" user + When I go to the homepage + And I wait + Then I should see "Welcome to Varbase" + And I should see "Media Hero Slider" + When I click "Tasks" + And I wait for AJAX to finish + And I should see "Edit content" + And I should not see "Delete" + And I should not see "Manage display" + And I should see "Layout" + And I should see "Revisions" + And I should not see "Devel" + And I should see "Clone" + And I should see "Translate" + + @javascript @local @development @staging @production + Scenario: Check that SEO Admin users can edit the Homepage which built by the Landing page (Layout Builder) + Given I am a logged in user with the "test_seo_admin" user + When I go to the homepage + And I wait + Then I should see "Welcome to Varbase" + And I should see "Media Hero Slider" + When I click "Tasks" + And I wait for AJAX to finish + And I should see "Edit content" + And I should not see "Delete" + And I should not see "Manage display" + And I should not see "Layout" in the "a" element with the "class" attribute set to "moderation-sidebar-link button" + And I should see "Revisions" + And I should not see "Devel" + And I should not see "Clone" + And I should see "Translate" + + @javascript @local @development @staging @production + Scenario: Check that Site Admin users can edit the Homepage which built by the Landing page (Layout Builder) + Given I am a logged in user with the "test_site_admin" user + When I go to the homepage + And I wait + Then I should see "Welcome to Varbase" + And I should see "Media Hero Slider" + When I click "Tasks" + And I wait for AJAX to finish + And I should see "Edit content" + And I should see "Delete" + And I should not see "Manage display" + And I should see "Layout" + And I should see "Revisions" + And I should not see "Devel" + And I should see "Clone" + And I should see "Translate" diff --git a/tests/features/varbase/step2-apply-tests/05-content-management/05-00-add-default-entityqueue-testing-content-and-config.feature b/tests/features/varbase/step2-apply-tests/05-content-management/05-00-add-default-entityqueue-testing-content-and-config.feature index 11a332fd..68d5ba2c 100644 --- a/tests/features/varbase/step2-apply-tests/05-content-management/05-00-add-default-entityqueue-testing-content-and-config.feature +++ b/tests/features/varbase/step2-apply-tests/05-content-management/05-00-add-default-entityqueue-testing-content-and-config.feature @@ -2,7 +2,7 @@ Feature: Content Management - Add default [entityqueue] module testing content a @javascript @init @tools @local @development @staging Scenario: Create Test Content type - Given I am a logged in user with the "test_super_admin" user + Given I am a logged in user with the "webmaster" user When I go to "/admin/structure/types/add" And I wait Then I should see "Add content type" @@ -14,8 +14,8 @@ Scenario: Create Test Content type Then I should see "The content type Test Content has been added." @javascript @init @tools @local @development @staging -Scenario: Add Entity Queue Test Queue and use Test Content type - Given I am a logged in user with the "test_super_admin" user +Scenario: Add Entity Queue Test Queue to be used with Test Content type + Given I am a logged in user with the "webmaster" user When I go to "/admin/structure/entityqueue" And I wait Then I should see "Add entity queue" @@ -23,19 +23,14 @@ Scenario: Add Entity Queue Test Queue and use Test Content type And I wait Then I should see "Configure entity queue" When I fill in "Test Queue" for "Name" - And I wait for AJAX to finish - And I wait for 2 seconds - And I press "Entity settings" - And I wait - Then I should see "Content type" - When I check the box "Test Content" + And I wait for 5 seconds And I press "Save" And I wait Then I should see "The entity queue Test Queue has been added." @javascript @init @tools @local @development @staging Scenario: Add Test content N1, N2, N3 type of test content - Given I am a logged in user with the "test_super_admin" user + Given I am a logged in user with the "webmaster" user When I go to "/node/add/test_content" And I wait Then I should see "Create Test Content" @@ -68,7 +63,7 @@ Scenario: Add Test content N1, N2, N3 type of test content @javascript @init @tools @local @development @staging Scenario: Add Test content N1, N2, N3 nodes to the Test Queue entityqueue - Given I am a logged in user with the "test_super_admin" user + Given I am a logged in user with the "webmaster" user When I go to "/admin/structure/entityqueue" And I wait Then I should see "Test Queue" diff --git a/tests/features/varbase/step2-apply-tests/05-content-management/05-01-entityqueue-reverse-order-in-admin-view.feature b/tests/features/varbase/step2-apply-tests/05-content-management/05-01-entityqueue-reverse-order-in-admin-view.feature index 1858156c..6138bbd9 100644 --- a/tests/features/varbase/step2-apply-tests/05-content-management/05-01-entityqueue-reverse-order-in-admin-view.feature +++ b/tests/features/varbase/step2-apply-tests/05-content-management/05-01-entityqueue-reverse-order-in-admin-view.feature @@ -32,7 +32,7 @@ Scenario: Check that Reverse order in admin view is working And I wait Then I should see "Edit subqueue Test Queue" When I press "Reverse" - And I wait + And I wait for AJAX to finish And I press "Save" And I wait Then I should see "The entity subqueue Test Queue has been updated." diff --git a/tests/features/varbase/step2-apply-tests/05-content-management/05-02-entityqueue-tab-for-content-types.feature b/tests/features/varbase/step2-apply-tests/05-content-management/05-02-entityqueue-tasks-for-content-types.feature similarity index 95% rename from tests/features/varbase/step2-apply-tests/05-content-management/05-02-entityqueue-tab-for-content-types.feature rename to tests/features/varbase/step2-apply-tests/05-content-management/05-02-entityqueue-tasks-for-content-types.feature index b7657217..02022db9 100644 --- a/tests/features/varbase/step2-apply-tests/05-content-management/05-02-entityqueue-tab-for-content-types.feature +++ b/tests/features/varbase/step2-apply-tests/05-content-management/05-02-entityqueue-tasks-for-content-types.feature @@ -14,6 +14,8 @@ Scenario: Check if queuable content have the Entityqueue tab at the full content And I press "Save" And I wait Then I should see "Test Content Test tab content number 1 has been created." + When I click "Tasks" + And I wait for AJAX to finish And I should see "Entityqueue" When I click "Entityqueue" And I wait diff --git a/tests/features/varbase/step2-apply-tests/05-content-management/05-03-add-hero-slider-to-entityqueue-using-entityqueue-form-widget.feature b/tests/features/varbase/step2-apply-tests/05-content-management/05-03-add-hero-slider-to-entityqueue-using-entityqueue-form-widget.feature index d702415e..9ab30e37 100644 --- a/tests/features/varbase/step2-apply-tests/05-content-management/05-03-add-hero-slider-to-entityqueue-using-entityqueue-form-widget.feature +++ b/tests/features/varbase/step2-apply-tests/05-content-management/05-03-add-hero-slider-to-entityqueue-using-entityqueue-form-widget.feature @@ -2,7 +2,7 @@ Feature: Content Management - Add hero slider to entity queue using entity queue As a logged in user with a permission to mange entity queues I want to be able to add and remove entities to any allowed entity queue. -@local @development @staging @production + @local @development @staging @production Scenario: Upload the Flag Earth file Given I am a logged in user with the "test_site_admin" user When I go to "media/add/image" @@ -29,22 +29,17 @@ I want to be able to add and remove entities to any allowed entity queue. Then I should see "Create Hero slider" When I fill in "Test hero slider #1" for "Slide title" And I fill in "Test hero slider slide text #1" for "Slide text" - And I press "Select media" + And I press "field_media_single-media-library-open-button" And I wait for AJAX to finish - And I wait 5s - Then the "entity_browser_iframe_media_browser" media browser should be open - When I switch to iframe "entity_browser_iframe_media_browser" - And I wait 5s - Then I should see "Media name" - When I fill in "Flag Earth" for "Media name" - And I press the "Search" button - And wait max of 5s + Then I should see "Name" + When I fill in "Flag Earth" for "Name" + And I press the "Apply filters" button Then I should see image with the "Flag Earth all earth in space" title text - When I double click on the image with the "Flag Earth all earth in space" title text - And I wait for AJAX to finish - And wait max of 5s - And I switch to main frame And I wait for AJAX to finish + When I check the box "media_library_select_form[0]" + And I wait for AJAX to finish + And I press "dialog-submit" + And I wait for AJAX to finish And wait max of 5s And I expand the field "edit-entityqueue-form-widget" And I wait for AJAX to finish @@ -63,20 +58,16 @@ I want to be able to add and remove entities to any allowed entity queue. Then I should see "Create Hero slider" When I fill in "Test hero slider #2" for "Slide title" And I fill in "Test hero slider slide text #2" for "Slide text" - And I press "Select media" + And I press "field_media_single-media-library-open-button" And I wait for AJAX to finish - And I wait 5s - Then the "entity_browser_iframe_media_browser" media browser should be open - When I switch to iframe "entity_browser_iframe_media_browser" - And I wait 5s - Then I should see "Media name" - When I fill in "Flag Earth" for "Media name" - And I press the "Search" button - And wait max of 5s + Then I should see "Name" + When I fill in "Flag Earth" for "Name" + And I press the "Apply filters" button Then I should see image with the "Flag Earth all earth in space" title text - When I double click on the image with the "Flag Earth all earth in space" title text And I wait for AJAX to finish - And I switch to main frame + When I check the box "media_library_select_form[0]" + And I wait for AJAX to finish + And I press "dialog-submit" And I wait for AJAX to finish And wait max of 5s And I expand the field "edit-entityqueue-form-widget" diff --git a/tests/features/varbase/step2-apply-tests/05-content-management/05-04-cloning-content-and-entities.feature b/tests/features/varbase/step2-apply-tests/05-content-management/05-04-cloning-content-and-entities.feature index fa00964f..17618f5c 100644 --- a/tests/features/varbase/step2-apply-tests/05-content-management/05-04-cloning-content-and-entities.feature +++ b/tests/features/varbase/step2-apply-tests/05-content-management/05-04-cloning-content-and-entities.feature @@ -3,7 +3,7 @@ As a logged in user with a permission to mange entities I want to be able to clone an entity. @javascript @local @development - Scenario: Check if a user with a permission can clone a landing page + Scenario: Check if a user with a permission can clone a Landing page (Paragraphs) Given I am a logged in user with the "test_site_admin" user When I go to "node/add/landing_page" And I wait @@ -11,7 +11,7 @@ I want to be able to clone an entity. And I fill in "Test landing page description text" for "Page description" And I wait for AJAX to finish And I wait for 1 second - And I press "Add Component" + And I press "+ Add" And I wait for AJAX to finish And I select the "bp_modal" paragraph component And I wait for AJAX to finish @@ -20,7 +20,7 @@ I want to be able to clone an entity. And I fill in "Modal title" for "Modal title" And I wait for AJAX to finish And I wait - And I press "Add Component" + And I press "+ Add" And I wait for AJAX to finish And I wait And I select the "bp_simple" paragraph component @@ -32,6 +32,20 @@ I want to be able to clone an entity. And I press the "Save" button And I wait Then I should see "Modal button" + When I go to "admin/content" + And I wait + Then I should see "Content" + When I fill in "Test Clone landing page" for "Title" + And I press the "Filter" button + And I wait + Then I should see "Test Clone landing page" + When I fill in "Test Clone landing page" for "Title" + And I press the "Filter" button + And I wait + Then I should see "Test Clone landing page" + When I click "Edit" in the "Test Clone landing page" row + And I wait + Then I should see "Clone" When I click "Clone" And I wait Then I should see "Clone Content" diff --git a/tests/features/varbase/step2-apply-tests/05-content-management/05-05-embed-existing-media-image-library.feature b/tests/features/varbase/step2-apply-tests/05-content-management/05-05-embed-existing-media-image-library.feature index 7bf2861d..3d811f7a 100644 --- a/tests/features/varbase/step2-apply-tests/05-content-management/05-05-embed-existing-media-image-library.feature +++ b/tests/features/varbase/step2-apply-tests/05-content-management/05-05-embed-existing-media-image-library.feature @@ -37,53 +37,53 @@ So that it will show up under that rich text field without having to upload the Then I should see "Embed Flag Earth" #----------------------------------------------------------------------------- - @javascript @local @development @staging @production - Scenario: Check if we are able to embed existing files library in the rich text editor - When I go to "admin/content" - And I wait - Then I should see "Content" - When I fill in "Test Basic page to embed existing files" for "Title" - And I press the "Filter" button - And I wait - Then I should see "Test Basic page to embed existing files" - When I click "Edit" in the "Test Basic page to embed existing files" row - And I wait - And I wait for 5 seconds - Then I should see "Edit Basic page Test Basic page to embed existing files" - When I move focus to "Body" rich text editor field - And I click the editor media browser command button - And I wait - And I wait for AJAX to finish - And I wait - And I wait for 5 seconds - Then the editor media browser should be open - When I switch to iframe "entity_browser_iframe_editor_media_browser" - And I fill in "Embed Flag Earth" for "edit-name" - And I press the "Search" button - And I wait for AJAX to finish - Then I should see image with the "Embed Flag Earth all earth in space" title text - When I double click on the image with the "Embed Flag Earth all earth in space" title text - And wait max of 5s - And I wait for AJAX to finish - And wait max of 5s - And I switch to main frame - And I wait for AJAX to finish - And wait max of 5s - And I fill in "Embed Flag Earth custom Caption text" for "Caption" - And I fill in "Embed Flag Earth custom Alt text" for "Alternate text" - When I click "Embed" in the "button" element with the "class" attribute set to "js-form-submit form-submit" - And I wait for AJAX to finish - And I select "published" from "edit-moderation-state-0-state" - And I press the "Save" button - And I wait - Then I should see "Basic page Test Basic page to embed existing files has been updated." - When I go to "admin/content" - And I wait - Then I should see "Content" - When I fill in "Test Basic page to embed existing files" for "Title" - And I press the "Filter" button - And I wait - Then I should see "Test Basic page to embed existing files" - When I click "Test Basic page to embed existing files" - And I wait - Then I should see image with the "Embed Flag Earth all earth in space" title text +# @javascript @local @development @staging @production +# Scenario: Check if we are able to embed existing files library in the rich text editor +# When I go to "admin/content" +# And I wait +# Then I should see "Content" +# When I fill in "Test Basic page to embed existing files" for "Title" +# And I press the "Filter" button +# And I wait +# Then I should see "Test Basic page to embed existing files" +# When I click "Edit" in the "Test Basic page to embed existing files" row +# And I wait +# And I wait for 5 seconds +# Then I should see "Edit Basic page Test Basic page to embed existing files" +# When I move focus to "Body" rich text editor field +# And I click the editor media browser command button +# And I wait +# And I wait for AJAX to finish +# And I wait +# And I wait for 5 seconds +# Then the editor media browser should be open +# When I switch to iframe "entity_browser_iframe_editor_media_browser" +# And I fill in "Embed Flag Earth" for "edit-name" +# And I press the "Search" button +# And I wait for AJAX to finish +# Then I should see image with the "Embed Flag Earth all earth in space" title text +# When I double click on the image with the "Embed Flag Earth all earth in space" title text +# And wait max of 5s +# And I wait for AJAX to finish +# And wait max of 5s +# And I switch to main frame +# And I wait for AJAX to finish +# And wait max of 5s +# And I fill in "Embed Flag Earth custom Caption text" for "Caption" +# And I fill in "Embed Flag Earth custom Alt text" for "Alternate text" +# When I click "Embed" in the "button" element with the "class" attribute set to "js-form-submit form-submit" +# And I wait for AJAX to finish +# And I select "published" from "edit-moderation-state-0-state" +# And I press the "Save" button +# And I wait +# Then I should see "Basic page Test Basic page to embed existing files has been updated." +# When I go to "admin/content" +# And I wait +# Then I should see "Content" +# When I fill in "Test Basic page to embed existing files" for "Title" +# And I press the "Filter" button +# And I wait +# Then I should see "Test Basic page to embed existing files" +# When I click "Test Basic page to embed existing files" +# And I wait +# Then I should see image with the "Embed Flag Earth all earth in space" title text -- GitLab