/lib/form/tests/behat/modgrade_validation.feature

http://github.com/moodle/moodle · Gherkin Specification · 209 lines · 201 code · 6 blank · 2 comment · 20 complexity · 6e55612de4257f0a9c71e32aae6395fc MD5 · raw file

  1. @core_form
  2. Feature: Using the activity grade form element
  3. In order to ensure validation is provided to the teacher
  4. As a teacher
  5. I need to know why I can not add/edit values in the form element
  6. Background:
  7. Given the following "users" exist:
  8. | username | firstname | lastname | email |
  9. | student1 | Student | 1 | student1@example.com |
  10. | teacher1 | Teacher | 1 | teacher1@example.com |
  11. And the following "courses" exist:
  12. | fullname | shortname | category | groupmode |
  13. | Course 1 | C1 | 0 | 1 |
  14. And the following "course enrolments" exist:
  15. | user | course | role |
  16. | teacher1 | C1 | editingteacher |
  17. | student1 | C1 | student |
  18. Scenario: Being able to change the grade type, scale and maximum grade when there are no grades
  19. Given I log in as "admin"
  20. And I navigate to "Grades > Scales" in site administration
  21. And I press "Add a new scale"
  22. And I set the following fields to these values:
  23. | Name | ABCDEF |
  24. | Scale | F,E,D,C,B,A |
  25. And I press "Save changes"
  26. And I press "Add a new scale"
  27. And I set the following fields to these values:
  28. | Name | Letter scale |
  29. | Scale | Disappointing, Good, Very good, Excellent |
  30. And I press "Save changes"
  31. And I log out
  32. And I log in as "teacher1"
  33. And I am on "Course 1" course homepage with editing mode on
  34. And I add a "Forum" to section "1" and I fill the form with:
  35. | Forum name | Test forum name |
  36. | Forum type | Standard forum for general use |
  37. | Description | Test forum description |
  38. | Aggregate type | Average of ratings |
  39. | scale[modgrade_type] | Point |
  40. | scale[modgrade_point] | 100 |
  41. | Group mode | No groups |
  42. And I follow "Test forum name"
  43. And I navigate to "Edit settings" in current page administration
  44. When I expand all fieldsets
  45. Then I should not see "Some grades have already been awarded, so the grade type"
  46. And I set the field "scale[modgrade_type]" to "Scale"
  47. And I set the field "scale[modgrade_scale]" to "ABCDEF"
  48. And I press "Save and display"
  49. And I should not see "You cannot change the type, as grades already exist for this item"
  50. And I navigate to "Edit settings" in current page administration
  51. And I expand all fieldsets
  52. And I should not see "Some grades have already been awarded, so the grade type"
  53. And I set the field "scale[modgrade_scale]" to "Letter scale"
  54. And I press "Save and display"
  55. And I should not see "You cannot change the scale, as grades already exist for this item"
  56. And I navigate to "Edit settings" in current page administration
  57. And I expand all fieldsets
  58. And I should not see "Some grades have already been awarded, so the grade type"
  59. And I set the field "scale[modgrade_type]" to "Point"
  60. And I set the field "Maximum grade" to "50"
  61. And I press "Save and display"
  62. And I should not see "You must choose whether to rescale existing grades or not"
  63. @javascript
  64. Scenario: Attempting to change the scale when grades already exist in rating activity
  65. Given I log in as "admin"
  66. And I navigate to "Grades > Scales" in site administration
  67. And I press "Add a new scale"
  68. And I set the following fields to these values:
  69. | Name | ABCDEF |
  70. | Scale | F,E,D,C,B,A |
  71. And I press "Save changes"
  72. And I press "Add a new scale"
  73. And I set the following fields to these values:
  74. | Name | Letter scale |
  75. | Scale | Disappointing, Good, Very good, Excellent |
  76. And I press "Save changes"
  77. And I log out
  78. And I log in as "teacher1"
  79. And I am on "Course 1" course homepage with editing mode on
  80. And I add a "Forum" to section "1" and I fill the form with:
  81. | Forum name | Test forum name |
  82. | Forum type | Standard forum for general use |
  83. | Description | Test forum description |
  84. | Aggregate type | Average of ratings |
  85. | scale[modgrade_type] | Scale |
  86. | scale[modgrade_scale] | ABCDEF |
  87. | Group mode | No groups |
  88. And I log out
  89. And I log in as "student1"
  90. And I am on "Course 1" course homepage
  91. And I follow "Test forum name"
  92. And I click on "Add a new discussion topic" "link"
  93. And I set the following fields to these values:
  94. | Subject | Discussion subject |
  95. | Message | Discussion message |
  96. And I press "Post to forum"
  97. And I log out
  98. And I log in as "teacher1"
  99. And I am on "Course 1" course homepage
  100. And I follow "Test forum name"
  101. And I follow "Discussion subject"
  102. And I set the field "rating" to "D"
  103. And I follow "Test forum name"
  104. And I navigate to "Edit settings" in current page administration
  105. When I expand all fieldsets
  106. Then I should see "Some grades have already been awarded, so the grade type and scale cannot be changed"
  107. # Try saving the form and visiting it back to verify that everything is working ok.
  108. And I press "Save and display"
  109. And I should not see "When selecting a ratings aggregate type you must also select"
  110. And I navigate to "Edit settings" in current page administration
  111. And I expand all fieldsets
  112. And the field "Aggregate type" matches value "Average of ratings"
  113. And the field "scale[modgrade_type]" matches value "Scale"
  114. And the field "scale[modgrade_scale]" matches value "ABCDEF"
  115. @javascript
  116. Scenario: Attempting to change the scale when grades already exist in non-rating activity
  117. Given I log in as "admin"
  118. And I navigate to "Grades > Scales" in site administration
  119. And I press "Add a new scale"
  120. And I set the following fields to these values:
  121. | Name | ABCDEF |
  122. | Scale | F,E,D,C,B,A |
  123. And I press "Save changes"
  124. And I press "Add a new scale"
  125. And I set the following fields to these values:
  126. | Name | Letter scale |
  127. | Scale | Disappointing, Good, Very good, Excellent |
  128. And I press "Save changes"
  129. And I log out
  130. And I log in as "teacher1"
  131. And I am on "Course 1" course homepage with editing mode on
  132. And I add a "Assignment" to section "1" and I fill the form with:
  133. | Assignment name | Test assignment name |
  134. | Description | Test assignment description |
  135. | grade[modgrade_type] | Scale |
  136. | grade[modgrade_scale] | ABCDEF |
  137. And I am on "Course 1" course homepage
  138. And I follow "Test assignment name"
  139. And I navigate to "View all submissions" in current page administration
  140. And I click on "Grade" "link" in the "Student 1" "table_row"
  141. And I set the field "Grade" to "C"
  142. And I press "Save changes"
  143. And I press "Ok"
  144. And I follow "Edit settings"
  145. When I expand all fieldsets
  146. Then I should see "Some grades have already been awarded, so the grade type and scale cannot be changed"
  147. # Try saving the form and visiting it back to verify everything is working ok.
  148. And I press "Save and display"
  149. And I navigate to "Edit settings" in current page administration
  150. And I expand all fieldsets
  151. And the field "grade[modgrade_type]" matches value "Scale"
  152. And the field "grade[modgrade_scale]" matches value "ABCDEF"
  153. Scenario: Attempting to change the maximum grade when ratings exist
  154. Given I log in as "teacher1"
  155. And I am on "Course 1" course homepage with editing mode on
  156. And I add a "Forum" to section "1" and I fill the form with:
  157. | Forum name | Test forum name |
  158. | Forum type | Standard forum for general use |
  159. | Description | Test forum description |
  160. | Aggregate type | Average of ratings |
  161. | scale[modgrade_type] | Point |
  162. | scale[modgrade_point] | 100 |
  163. | Group mode | No groups |
  164. And I log out
  165. And I log in as "student1"
  166. And I am on "Course 1" course homepage
  167. And I follow "Test forum name"
  168. And I click on "Add a new discussion topic" "link"
  169. And I set the following fields to these values:
  170. | Subject | Discussion subject |
  171. | Message | Discussion message |
  172. And I press "Post to forum"
  173. And I log out
  174. And I log in as "teacher1"
  175. And I am on "Course 1" course homepage
  176. And I follow "Test forum name"
  177. And I follow "Discussion subject"
  178. And I set the field "rating" to "100"
  179. And I press "Rate"
  180. And I follow "Test forum name"
  181. And I navigate to "Edit settings" in current page administration
  182. When I expand all fieldsets
  183. Then I should see "You cannot change the type, as grades already exist for this item."
  184. And I set the field "Ratings > Maximum grade" to "50"
  185. And I press "Save and display"
  186. And I should see "You cannot change the maximum grade when grades already exist for an activity with ratings"
  187. @javascript
  188. Scenario: Attempting to change the maximum grade when no rescaling option has been chosen
  189. Given I log in as "teacher1"
  190. And I am on "Course 1" course homepage with editing mode on
  191. And I add a "Assignment" to section "1" and I fill the form with:
  192. | Assignment name | Test assignment name |
  193. | Description | Test assignment description |
  194. And I am on "Course 1" course homepage
  195. And I follow "Test assignment name"
  196. And I navigate to "View all submissions" in current page administration
  197. And I click on "Grade" "link" in the "Student 1" "table_row"
  198. And I set the field "Grade out of 100" to "50"
  199. And I press "Save changes"
  200. And I press "Ok"
  201. And I follow "Edit settings"
  202. When I expand all fieldsets
  203. Then I should see "Some grades have already been awarded, so the grade type cannot be changed. If you wish to change the maximum grade, you must first choose whether or not to rescale existing grades."