From 03a0584a1eb46ccd21957cb7eafff95cae04b416 Mon Sep 17 00:00:00 2001 From: Angelia Dela Cruz Date: Tue, 19 Dec 2023 15:08:31 +0800 Subject: [PATCH] MDL-80452 mod_h5pactivity: Behat for H5Pactivity duplication and delete --- .../duplicate_delete_h5pactivity.feature | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 mod/h5pactivity/tests/behat/duplicate_delete_h5pactivity.feature diff --git a/mod/h5pactivity/tests/behat/duplicate_delete_h5pactivity.feature b/mod/h5pactivity/tests/behat/duplicate_delete_h5pactivity.feature new file mode 100644 index 0000000000000..de55da340f857 --- /dev/null +++ b/mod/h5pactivity/tests/behat/duplicate_delete_h5pactivity.feature @@ -0,0 +1,40 @@ +@mod @mod_h5pactivity +Feature: Duplicate and delete a h5pactivity + In order to quickly create and delete h5p activities + As a teacher + I need to duplicate or delete h5pactivity inside the same course + + Background: + Given the following "courses" exist: + | fullname | shortname | + | Course 1 | C1 | + And the following "users" exist: + | username | firstname | lastname | email | + | teacher1 | Teacher | 1 | teacher1@example.com | + And the following "course enrolments" exist: + | user | course | role | + | teacher1 | C1 | editingteacher | + + Scenario: Duplicate and delete h5p activity + Given the following "activities" exist: + | activity | course | name | packagefilepath | + | h5pactivity | C1 | H5P Activity 1 | h5p/tests/fixtures/filltheblanks.h5p | + And I am on the "H5P Activity 1" "h5pactivity activity" page logged in as teacher1 + # Initial confirmation that no error occurs when viewing h5p activity + And I should see "This content is displayed in preview mode. No attempt tracking will be stored." + And I am on "Course 1" course homepage with editing mode on + # Duplicate the h5p activity + When I duplicate "H5P Activity 1" activity + # Confirm that h5p activity was duplicated successfully + Then I should see "H5P Activity 1 (copy)" + And I am on the "H5P Activity 1 (copy)" "h5pactivity activity" page + # Confirm there are no errors when viewing duplicate h5p activity + And I should see "This content is displayed in preview mode. No attempt tracking will be stored." + And I am on the "Course 1" course page + # Delete the duplicate h5p activity + And I delete "H5P Activity 1 (copy)" activity + # Confirm duplicate was deleted successfully + And I should not see "H5P Activity 1 (copy)" + And I am on the "H5P Activity 1" "h5pactivity activity" page + # Confirm there are no errors on the original h5p activity after deleting the duplicate + And I should see "This content is displayed in preview mode. No attempt tracking will be stored."