From e6bcdc5ece3b255d920c2b2328f8ea6db7271cce Mon Sep 17 00:00:00 2001 From: Marina Glancy Date: Mon, 14 Oct 2013 10:41:49 +1100 Subject: [PATCH] MDL-42278 behat: block context can be returned to original state Automate MDLQA-1547 - The context of a block can always be returned to it's original state. --- .../behat/return_block_original_state.feature | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 blocks/tests/behat/return_block_original_state.feature diff --git a/blocks/tests/behat/return_block_original_state.feature b/blocks/tests/behat/return_block_original_state.feature new file mode 100644 index 00000000000..07baab86d15 --- /dev/null +++ b/blocks/tests/behat/return_block_original_state.feature @@ -0,0 +1,49 @@ +@core @core_block +Feature: The context of a block can always be returned to it's original state. + In order to revert actions when configuring blocks + As an admin + I need to be able to return the block to original state + + @javascript + Scenario: Add and configure a block to display on every page and revert back + Given the following "courses" exists: + | fullname | shortname | category | + | Course 1 | C1 | 0 | + And I log in as "admin" + When I follow "Course 1" + And I follow "Turn editing on" + And I add the "Tags" block + Then I should see "Tags" in the "Tags" "block" + And I click on "Participants" "link" in the "//li[p/span[contains(normalize-space(string(.)), 'Current course')]]" "xpath_element" + And I follow "Configure Tags block" + And I fill the moodle form with: + | Display on page types | Any page | + And I press "Save changes" + And I follow "Course 1" + And I add a "Assignment" to section "1" and I fill the form with: + | Assignment name | Assignment1 | + | Description | Description | + And I follow "Assignment1" + And I follow "Configure Tags block" + And I fill the moodle form with: + | Display on page types | Any assignment module page | + And I press "Save changes" + And I should see "Tags" in the "Tags" "block" + And I follow "Course 1" + And "Tags" "block" should not exists + And I click on "Participants" "link" in the "//li[p/span[contains(normalize-space(string(.)), 'Current course')]]" "xpath_element" + And "Tags" "block" should not exists + And I follow "Course 1" + And I add a "Assignment" to section "1" and I fill the form with: + | Assignment name | Assignment2 | + | Description | Description | + And I follow "Assignment2" + And I should see "Tags" in the "Tags" "block" + And I follow "Configure Tags block" + And I fill the moodle form with: + | Display on page types | Any page | + And I press "Save changes" + And I follow "Course 1" + And I should see "Tags" in the "Tags" "block" + And I click on "Participants" "link" in the "//li[p/span[contains(normalize-space(string(.)), 'Current course')]]" "xpath_element" + And I should see "Tags" in the "Tags" "block"