/admin/tool/recyclebin/tests/behat/basic_functionality.feature

http://github.com/moodle/moodle · Gherkin Specification · 162 lines · 154 code · 8 blank · 0 comment · 9 complexity · ba44deb21f3890813467086154eaa63f MD5 · raw file

  1. @tool @tool_recyclebin
  2. Feature: Basic recycle bin functionality
  3. As a teacher
  4. I want be able to recover deleted content and manage the recycle bin content
  5. So that I can fix an accidental deletion and clean the recycle bin
  6. Background: Course with teacher exists.
  7. Given the following "users" exist:
  8. | username | firstname | lastname | email |
  9. | teacher1 | Teacher | 1 | teacher@asd.com |
  10. | student1 | Student | 1 | student@asd.com |
  11. | student2 | Student | 2 | student2@asd.com |
  12. And the following "courses" exist:
  13. | fullname | shortname |
  14. | Course 1 | C1 |
  15. | Course 2 | C2 |
  16. And the following "course enrolments" exist:
  17. | user | course | role |
  18. | teacher1 | C1 | editingteacher |
  19. | student1 | C1 | student |
  20. | student2 | C1 | student |
  21. | teacher1 | C2 | editingteacher |
  22. | student1 | C2 | student |
  23. | student2 | C2 | student |
  24. And the following "groups" exist:
  25. | name | course | idnumber |
  26. | Group A | C2 | G1 |
  27. | Group B | C2 | G2 |
  28. | Group C | C2 | G3 |
  29. And the following "group members" exist:
  30. | user | group |
  31. | teacher1 | G1 |
  32. | teacher1 | G2 |
  33. | student1 | G1 |
  34. | student2 | G1 |
  35. | student2 | G2 |
  36. And the following config values are set as admin:
  37. | coursebinenable | 1 | tool_recyclebin |
  38. | categorybinenable | 1 | tool_recyclebin |
  39. | coursebinexpiry | 604800 | tool_recyclebin |
  40. | categorybinexpiry | 1209600 | tool_recyclebin |
  41. | autohide | 0 | tool_recyclebin |
  42. Scenario: Restore a deleted assignment
  43. Given I log in as "teacher1"
  44. And I am on "Course 1" course homepage with editing mode on
  45. And I add a "Assignment" to section "1" and I fill the form with:
  46. | Assignment name | Test assign |
  47. | Description | Test |
  48. And I delete "Test assign" activity
  49. When I navigate to "Recycle bin" in current page administration
  50. Then I should see "Test assign"
  51. And I should see "Contents will be permanently deleted after 7 days"
  52. And I click on "Restore" "link" in the "region-main" "region"
  53. And I should see "'Test assign' has been restored"
  54. And I wait to be redirected
  55. And I am on "Course 1" course homepage
  56. And I should see "Test assign" in the "Topic 1" "section"
  57. Scenario: Restore a deleted course
  58. Given I log in as "admin"
  59. And I go to the courses management page
  60. And I click on "delete" action for "Course 2" in management course listing
  61. And I press "Delete"
  62. And I should see "Deleting C2"
  63. And I should see "C2 has been completely deleted"
  64. And I press "Continue"
  65. And I am on course index
  66. And I should see "Course 1"
  67. And I should not see "Course 2"
  68. When I navigate to "Recycle bin" in current page administration
  69. Then I should see "Course 2"
  70. And I should see "Contents will be permanently deleted after 14 days"
  71. And I click on "Restore" "link" in the "region-main" "region"
  72. And I should see "'Course 2' has been restored"
  73. And I wait to be redirected
  74. And I go to the courses management page
  75. And I should see "Course 2" in the "#course-listing" "css_element"
  76. And I am on "Course 2" course homepage
  77. And I navigate to "Users > Groups" in current page administration
  78. And I follow "Overview"
  79. And "Student 1" "text" should exist in the "Group A" "table_row"
  80. And "Student 2" "text" should exist in the "Group A" "table_row"
  81. And "Student 2" "text" should exist in the "Group B" "table_row"
  82. @javascript
  83. Scenario: Deleting a single item from the recycle bin
  84. Given I log in as "teacher1"
  85. And I am on "Course 1" course homepage with editing mode on
  86. And I add a "Assignment" to section "1" and I fill the form with:
  87. | Assignment name | Test assign |
  88. | Description | Test |
  89. And I delete "Test assign" activity
  90. And I run all adhoc tasks
  91. And I navigate to "Recycle bin" in current page administration
  92. When I click on "Delete" "link"
  93. Then I should see "Are you sure you want to delete the selected item from the recycle bin?"
  94. And I click on "Cancel" "button" in the "Confirmation" "dialogue"
  95. And I should see "Test assign"
  96. And I click on "Delete" "link"
  97. And I press "Yes"
  98. And I should see "'Test assign' has been deleted"
  99. And I should see "There are no items in the recycle bin."
  100. @javascript
  101. Scenario: Deleting all the items from the recycle bin
  102. Given I log in as "teacher1"
  103. And I am on "Course 1" course homepage with editing mode on
  104. And I add a "Assignment" to section "1" and I fill the form with:
  105. | Assignment name | Test assign 1 |
  106. | Description | Test 1 |
  107. And I add a "Assignment" to section "1" and I fill the form with:
  108. | Assignment name | Test assign 2 |
  109. | Description | Test 2 |
  110. And I delete "Test assign 1" activity
  111. And I delete "Test assign 2" activity
  112. And I run all adhoc tasks
  113. And I navigate to "Recycle bin" in current page administration
  114. And I should see "Test assign 1"
  115. And I should see "Test assign 2"
  116. When I click on "Delete all" "link"
  117. Then I should see "Are you sure you want to delete all items from the recycle bin?"
  118. And I click on "Cancel" "button" in the "Confirmation" "dialogue"
  119. And I should see "Test assign 1"
  120. And I should see "Test assign 2"
  121. And I click on "Delete all" "link"
  122. And I press "Yes"
  123. And I should see "Recycle bin has been emptied"
  124. And I should see "There are no items in the recycle bin."
  125. @javascript
  126. Scenario: Show recycle bin on category action menu
  127. Given I log in as "admin"
  128. And I navigate to "Courses > Manage courses and categories" in site administration
  129. And I click on "Actions menu" "link"
  130. And I click on "Recycle bin" "link"
  131. Then I should see "There are no items in the recycle bin."
  132. @javascript
  133. Scenario: Not show recycle bin empty on category action menu whit autohide enable
  134. Given I log in as "admin"
  135. And the following config values are set as admin:
  136. | categorybinenable | 0 | tool_recyclebin |
  137. And I navigate to "Courses > Manage courses and categories" in site administration
  138. And I click on "Actions menu" "link"
  139. Then I should not see "Recycle bin"
  140. @javascript
  141. Scenario: Show recycle bin not empty on category action menu whit autohide enable
  142. Given I log in as "admin"
  143. And the following config values are set as admin:
  144. | autohide | 1 | tool_recyclebin |
  145. And I navigate to "Courses > Manage courses and categories" in site administration
  146. And I click on "Actions menu" "link"
  147. Then I should not see "Recycle bin"
  148. And I click on "delete" action for "Course 2" in management course listing
  149. And I press "Delete"
  150. And I should see "Deleting C2"
  151. And I should see "C2 has been completely deleted"
  152. And I press "Continue"
  153. When I click on "Actions menu" "link"
  154. Then I should see "Recycle bin"