/grade/tests/behat/grade_calculated_weights.feature

http://github.com/moodle/moodle · Gherkin Specification · 250 lines · 218 code · 21 blank · 11 comment · 1 complexity · ce7ab3dcfb2531ea2fb7a2b65a2064ba MD5 · raw file

  1. @core @core_grades
  2. Feature: We can understand the gradebook user report
  3. In order to understand the gradebook user report
  4. As an teacher
  5. I need to see the calculated weights for each type of aggregation
  6. Background:
  7. Given the following "courses" exist:
  8. | fullname | shortname | category | groupmode |
  9. | Course 1 | C1 | 0 | 1 |
  10. And the following "users" exist:
  11. | username | firstname | lastname | email | idnumber |
  12. | teacher1 | Teacher | 1 | teacher1@example.com | t1 |
  13. | student1 | Student | 1 | student1@example.com | s1 |
  14. And the following "course enrolments" exist:
  15. | user | course | role |
  16. | teacher1 | C1 | editingteacher |
  17. | student1 | C1 | student |
  18. And the following "activities" exist:
  19. | activity | course | idnumber | name | intro |
  20. | assign | C1 | a1 | <span lang="en" class="multilang">EN</span><span lang="fr" class="multilang">FR</span> Test assignment one | Submit something! |
  21. | assign | C1 | a2 | <span lang="en" class="multilang">EN</span><span lang="fr" class="multilang">FR</span> Test assignment two | Submit something! |
  22. | assign | C1 | a3 | <span lang="en" class="multilang">EN</span><span lang="fr" class="multilang">FR</span> Test assignment three | Submit something! |
  23. | assign | C1 | a4 | <span lang="en" class="multilang">EN</span><span lang="fr" class="multilang">FR</span> Test assignment four | Submit something! |
  24. | assign | C1 | a5 | <span lang="en" class="multilang">EN</span><span lang="fr" class="multilang">FR</span> Test assignment five | Submit something! |
  25. | assign | C1 | a6 | <span lang="en" class="multilang">EN</span><span lang="fr" class="multilang">FR</span> Test assignment six | Submit something! |
  26. And the "multilang" filter is "on"
  27. And the "multilang" filter applies to "content and headings"
  28. And I log in as "admin"
  29. And I set the following administration settings values:
  30. | grade_aggregations_visible | Mean of grades,Weighted mean of grades,Simple weighted mean of grades,Mean of grades (with extra credits),Median of grades,Lowest grade,Highest grade,Mode of grades,Natural |
  31. And I log out
  32. And I log in as "teacher1"
  33. And I am on "Course 1" course homepage
  34. And I navigate to "View > Grader report" in the course gradebook
  35. And I turn editing mode on
  36. And I give the grade "60.00" to the user "Student 1" for the grade item "EN Test assignment one"
  37. And I give the grade "20.00" to the user "Student 1" for the grade item "EN Test assignment two"
  38. And I give the grade "40.00" to the user "Student 1" for the grade item "EN Test assignment three"
  39. And I give the grade "10.00" to the user "Student 1" for the grade item "EN Test assignment four"
  40. And I give the grade "70.00" to the user "Student 1" for the grade item "EN Test assignment five"
  41. And I give the grade "30.00" to the user "Student 1" for the grade item "EN Test assignment six"
  42. And I press "Save changes"
  43. And I navigate to "Setup > Course grade settings" in the course gradebook
  44. And I set the field "Show weightings" to "Show"
  45. And I set the field "Show contribution to course total" to "Show"
  46. And I press "Save changes"
  47. And I navigate to "Setup > Gradebook setup" in the course gradebook
  48. And I press "Add category"
  49. And I set the field "Category name" to "<span lang=\"en\" class=\"multilang\">EN</span><span lang=\"fr\" class=\"multilang\">FR</span> Sub category"
  50. And I press "Save changes"
  51. And I click on "Move" "link" in the "EN Test assignment six" "table_row"
  52. # This xpath finds the forth last row in the table.
  53. And I click on "Move to here" "link" in the "//tbody//tr[position()=last()-3]" "xpath_element"
  54. And I click on "Move" "link" in the "EN Test assignment five" "table_row"
  55. And I click on "Move to here" "link" in the "//tbody//tr[position()=last()-3]" "xpath_element"
  56. And I click on "Move" "link" in the "EN Test assignment four" "table_row"
  57. And I click on "Move to here" "link" in the "//tbody//tr[position()=last()-3]" "xpath_element"
  58. @javascript
  59. Scenario: Mean of grades aggregation
  60. And I set the following settings for grade item "Course 1":
  61. | Aggregation | Mean of grades |
  62. And I navigate to "View > User report" in the course gradebook
  63. And I set the field "Select all or one user" to "Student 1"
  64. # Check the values in the weights column.
  65. Then the following should exist in the "user-grade" table:
  66. | Grade item | Calculated weight | Grade | Contribution to course total |
  67. | EN Test assignment one | 25.00 % | 60.00 | 15.00 % |
  68. | EN Test assignment two | 25.00 % | 20.00 | 5.00 % |
  69. | EN Test assignment three | 25.00 % | 40.00 | 10.00 % |
  70. | EN Test assignment four | 33.33 % | 10.00 | 0.83 % |
  71. | EN Test assignment five | 33.33 % | 70.00 | 5.83 % |
  72. | EN Test assignment six | 33.33 % | 30.00 | 2.50 % |
  73. @javascript
  74. Scenario: Weighted mean of grades aggregation
  75. And I set the following settings for grade item "Course 1":
  76. | Aggregation | Weighted mean of grades |
  77. And I set the following settings for grade item "EN Test assignment one":
  78. | Item weight | 2.0 |
  79. And I set the following settings for grade item "EN Test assignment two":
  80. | Item weight | 1.0 |
  81. And I set the following settings for grade item "EN Test assignment three":
  82. | Item weight | 1.0 |
  83. And I set the following settings for grade item "EN Sub category":
  84. | Item weight | 1.0 |
  85. And I navigate to "View > User report" in the course gradebook
  86. And I set the field "Select all or one user" to "Student 1"
  87. # Check the values in the weights column.
  88. Then the following should exist in the "user-grade" table:
  89. | Grade item | Calculated weight | Grade | Contribution to course total |
  90. | EN Test assignment one | 40.00 % | 60.00 | 24.00 % |
  91. | EN Test assignment two | 20.00 % | 20.00 | 4.00 % |
  92. | EN Test assignment three | 20.00 % | 40.00 | 8.00 % |
  93. | EN Test assignment four | 33.33 % | 10.00 | 0.67 % |
  94. | EN Test assignment five | 33.33 % | 70.00 | 4.67 % |
  95. | EN Test assignment six | 33.33 % | 30.00 | 2.00 % |
  96. @javascript
  97. Scenario: Simple weighted mean of grades aggregation
  98. And I set the following settings for grade item "Course 1":
  99. | Aggregation | Simple weighted mean of grades |
  100. And I set the following settings for grade item "EN Sub category":
  101. | Aggregation | Simple weighted mean of grades |
  102. And I set the following settings for grade item "EN Test assignment three":
  103. | Extra credit | 1 |
  104. And I navigate to "View > User report" in the course gradebook
  105. And I set the field "Select all or one user" to "Student 1"
  106. # Check the values in the weights column.
  107. Then the following should exist in the "user-grade" table:
  108. | Grade item | Calculated weight | Grade | Contribution to course total |
  109. | EN Test assignment one | 33.33 % | 60.00 | 20.00 % |
  110. | EN Test assignment two | 33.33 % | 20.00 | 6.67 % |
  111. | EN Test assignment three | 33.33 %( Extra credit ) | 40.00 | 13.33 % |
  112. | EN Test assignment four | 33.33 % | 10.00 | 1.11 % |
  113. | EN Test assignment five | 33.33 % | 70.00 | 7.78 % |
  114. | EN Test assignment six | 33.33 % | 30.00 | 3.33 % |
  115. @javascript
  116. Scenario: Mean of grades (with extra credits) aggregation
  117. And I set the following settings for grade item "Course 1":
  118. | Aggregation | Mean of grades (with extra credits) |
  119. And I set the following settings for grade item "EN Test assignment three":
  120. | Extra credit weight | 1.0 |
  121. And I navigate to "View > User report" in the course gradebook
  122. And I set the field "Select all or one user" to "Student 1"
  123. # Check the values in the weights column.
  124. Then the following should exist in the "user-grade" table:
  125. | Grade item | Calculated weight | Grade | Contribution to course total |
  126. | EN Test assignment one | 33.33 % | 60.00 | 20.00 % |
  127. | EN Test assignment two | 33.33 % | 20.00 | 6.67 % |
  128. | EN Test assignment three | 33.33 %( Extra credit ) | 40.00 | 13.33 % |
  129. | EN Test assignment four | 33.33 % | 10.00 | 1.11 % |
  130. | EN Test assignment five | 33.33 % | 70.00 | 7.78 % |
  131. | EN Test assignment six | 33.33 % | 30.00 | 3.33 % |
  132. @javascript
  133. Scenario: Median of grades aggregation
  134. And I set the following settings for grade item "Course 1":
  135. | Aggregation | Median of grades |
  136. And I navigate to "View > User report" in the course gradebook
  137. And I set the field "Select all or one user" to "Student 1"
  138. # Check the values in the weights column.
  139. Then the following should exist in the "user-grade" table:
  140. | Grade item | Calculated weight | Grade | Contribution to course total |
  141. | EN Test assignment one | 0.00 % | 60.00 | 0.00 % |
  142. | EN Test assignment two | 0.00 % | 20.00 | 0.00 % |
  143. | EN Test assignment three | 50.00 % | 40.00 | 20.00 % |
  144. | EN Test assignment four | 33.33 % | 10.00 | 1.67 % |
  145. | EN Test assignment five | 33.33 % | 70.00 | 11.67 % |
  146. | EN Test assignment six | 33.33 % | 30.00 | 5.00 % |
  147. @javascript
  148. Scenario: Lowest grade aggregation
  149. And I set the following settings for grade item "Course 1":
  150. | Aggregation | Lowest grade |
  151. And I navigate to "View > User report" in the course gradebook
  152. And I set the field "Select all or one user" to "Student 1"
  153. # Check the values in the weights column.
  154. Then the following should exist in the "user-grade" table:
  155. | Grade item | Calculated weight | Grade | Contribution to course total |
  156. | EN Test assignment one | 0.00 % | 60.00 | 0.00 % |
  157. | EN Test assignment two | 100.00 % | 20.00 | 20.00 % |
  158. | EN Test assignment three | 0.00 % | 40.00 | 0.00 % |
  159. | EN Test assignment four | 33.33 % | 10.00 | 0.00 % |
  160. | EN Test assignment five | 33.33 % | 70.00 | 0.00 % |
  161. | EN Test assignment six | 33.33 % | 30.00 | 0.00 % |
  162. @javascript
  163. Scenario: Highest grade aggregation
  164. And I set the following settings for grade item "Course 1":
  165. | Aggregation | Highest grade |
  166. And I navigate to "View > User report" in the course gradebook
  167. And I set the field "Select all or one user" to "Student 1"
  168. # Check the values in the weights column.
  169. Then the following should exist in the "user-grade" table:
  170. | Grade item | Calculated weight | Grade | Contribution to course total |
  171. | EN Test assignment one | 100.00 % | 60.00 | 60.00 % |
  172. | EN Test assignment two | 0.00 % | 20.00 | 0.00 % |
  173. | EN Test assignment three | 0.00 % | 40.00 | 0.00 % |
  174. | EN Test assignment four | 33.33 % | 10.00 | 0.00 % |
  175. | EN Test assignment five | 33.33 % | 70.00 | 0.00 % |
  176. | EN Test assignment six | 33.33 % | 30.00 | 0.00 % |
  177. @javascript
  178. Scenario: Mode of grades aggregation
  179. And I set the following settings for grade item "Course 1":
  180. | Aggregation | Mode of grades |
  181. And I navigate to "View > User report" in the course gradebook
  182. And I set the field "Select all or one user" to "Student 1"
  183. # Check the values in the weights column.
  184. Then the following should exist in the "user-grade" table:
  185. | Grade item | Calculated weight | Grade | Contribution to course total |
  186. | EN Test assignment one | 100.00 % | 60.00 | 60.00 % |
  187. | EN Test assignment two | 0.00 % | 20.00 | 0.00 % |
  188. | EN Test assignment three | 0.00 % | 40.00 | 0.00 % |
  189. | EN Test assignment four | 33.33 % | 10.00 | 0.00 % |
  190. | EN Test assignment five | 33.33 % | 70.00 | 0.00 % |
  191. | EN Test assignment six | 33.33 % | 30.00 | 0.00 % |
  192. @javascript
  193. Scenario: View user report with mixed aggregation methods
  194. And I set the following settings for grade item "Course 1":
  195. | Aggregation | Natural |
  196. And I set the following settings for grade item "EN Sub category":
  197. | Aggregation | Weighted mean of grades |
  198. And I set the following settings for grade item "EN Test assignment three":
  199. | Extra credit | 1 |
  200. And I navigate to "View > User report" in the course gradebook
  201. And I set the field "Select all or one user" to "Student 1"
  202. # Check the values in the weights column.
  203. Then the following should exist in the "user-grade" table:
  204. | Grade item | Calculated weight | Grade | Contribution to course total |
  205. | EN Test assignment one | 33.33 % | 60.00 | 20.00 % |
  206. | EN Test assignment two | 33.33 % | 20.00 | 6.67 % |
  207. | EN Test assignment three | 33.33 %( Extra credit ) | 40.00 | 13.33 % |
  208. | EN Test assignment four | 33.33 % | 10.00 | 1.11 % |
  209. | EN Test assignment five | 33.33 % | 70.00 | 7.78 % |
  210. | EN Test assignment six | 33.33 % | 30.00 | 3.33 % |
  211. | EN Sub category totalWeighted mean of grades. | 33.33 % | 36.67 | - |
  212. | Course total | - | 156.67 | - |
  213. @javascript
  214. Scenario: View user report with natural aggregation
  215. And I set the following settings for grade item "EN Test assignment three":
  216. | Extra credit | 1 |
  217. And I navigate to "View > User report" in the course gradebook
  218. And I set the field "Select all or one user" to "Student 1"
  219. # Check the values in the weights column.
  220. Then the following should exist in the "user-grade" table:
  221. | Grade item | Calculated weight | Grade | Contribution to course total |
  222. | EN Test assignment one | 20.00 % | 60.00 | 12.00 % |
  223. | EN Test assignment two | 20.00 % | 20.00 | 4.00 % |
  224. | EN Test assignment three | 20.00 %( Extra credit ) | 40.00 | 8.00 % |
  225. | EN Test assignment four | 33.33 % | 10.00 | 2.00 % |
  226. | EN Test assignment five | 33.33 % | 70.00 | 14.00 % |
  227. | EN Test assignment six | 33.33 % | 30.00 | 6.00 % |
  228. | EN Sub category total | 60.00 % | 110.00 | - |
  229. | Course total | - | 230.00 | - |