MDL-38548 behat: New tests
authorDavid Monllao <davidm@moodle.com>
Thu, 21 Mar 2013 04:01:04 +0000 (12:01 +0800)
committerDavid Monllao <davidm@moodle.com>
Thu, 28 Mar 2013 04:06:24 +0000 (12:06 +0800)
The show/hide activity/resource icon
functions correctly. According to
MDLQA-1573, MDLQA-1574, MDLQA-1575,
MDLQA-1576 and MDLQA-1577.

course/tests/behat/activities_visibility_icons.feature [new file with mode: 0644]

diff --git a/course/tests/behat/activities_visibility_icons.feature b/course/tests/behat/activities_visibility_icons.feature
new file mode 100644 (file)
index 0000000..8c1e1d7
--- /dev/null
@@ -0,0 +1,38 @@
+@core_course @_cross_browser
+Feature: Toggle activities visibility from the course page
+  In order to delay activities availability
+  As a moodle teacher
+  I need to quickly change the visibility of an activity
+
+  @javascript
+  Scenario: Hide/Show toggle with javascript enabled
+    Given the following "users" exists:
+      | username | firstname | lastname | email |
+      | teacher1 | Teacher | 1 | teacher1@asd.com |
+      | student1 | Student | 1 | student1@asd.com |
+    And the following "courses" exists:
+      | fullname | shortname | format |
+      | Course 1 | C1 | topics |
+    And the following "course enrolments" exists:
+      | user | course | role |
+      | teacher1 | C1 | editingteacher |
+      | student1 | C1 | student |
+    And I log in as "teacher1"
+    And I follow "Course 1"
+    And I turn editing mode on
+    And I add a "forum" to section "1" and I fill the form with:
+      | Forum name | Test forum name |
+      | Description | Test forum description |
+      | Visible | Show |
+    When I click on "Hide" "link" in the "li.activity.forum" "css_element"
+    Then "Test forum name" activity should be hidden
+    And I click on "Show" "link" in the "li.activity.forum" "css_element"
+    And "Test forum name" activity should be visible
+    And I click on "Hide" "link" in the "li.activity.forum" "css_element"
+    And "Test forum name" activity should be hidden
+    And I reload the page
+    And "Test forum name" activity should be hidden
+    And I log out
+    And I log in as "student1"
+    And I follow "Course 1"
+    And "Test forum name" activity should be hidden