forked from instructure/canvas-lms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGradingStandardSpec.coffee
More file actions
434 lines (361 loc) · 16.6 KB
/
Copy pathGradingStandardSpec.coffee
File metadata and controls
434 lines (361 loc) · 16.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
#
# Copyright (C) 2015 - present Instructure, Inc.
#
# This file is part of Canvas.
#
# Canvas is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by the Free
# Software Foundation, version 3 of the License.
#
# Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
# details.
#
# You should have received a copy of the GNU Affero General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
define [
'react'
'react-dom'
'react-addons-test-utils'
'jquery'
'jsx/grading/gradingStandard'
], (React, ReactDOM, {Simulate}, $, GradingStandard) ->
QUnit.module 'GradingStandard not being edited',
setup: ->
@props =
key: 1
standard:
id: 1
title: "Test Grading Standard"
data: [["A", 0.92], ["A-", 0.90], ["F", 0.00]]
permissions:
manage: true
editing: false
justAdded: false
othersEditing: false
round: (number)-> return Math.round(number * 100)/100
onSetEditingStatus: ->
onDeleteGradingStandard: ->
onSaveGradingStandard: ->
@mountPoint = $('<div>').appendTo('#fixtures')[0]
GradingStandardElement = React.createElement(GradingStandard, @props)
@gradingStandard = ReactDOM.render(GradingStandardElement, @mountPoint)
teardown: ->
ReactDOM.unmountComponentAtNode(@mountPoint)
$("#fixtures").empty()
test 'returns false for assessedAssignment', ->
deepEqual @gradingStandard.assessedAssignment(), false
test 'renders the correct title', ->
#'Grading standard title' is wrapped in a screenreader-only span that this
#test suite does not ignore. 'Grading standadr title' is not actually displayed
deepEqual @gradingStandard.refs.title.textContent, "Grading standard titleTest Grading Standard"
test 'renders the correct id name', ->
deepEqual @gradingStandard.renderIdNames(), "grading_standard_1"
test 'renders the edit button', ->
ok @gradingStandard.refs.editButton
test 'calls onSetEditingStatus when edit button is clicked', ->
setEditingStatus = @spy(@props, 'onSetEditingStatus')
GradingStandardElement = React.createElement(GradingStandard, @props)
@gradingStandard = ReactDOM.render(GradingStandardElement, @mountPoint)
Simulate.click(@gradingStandard.refs.editButton)
ok setEditingStatus.calledOnce
setEditingStatus.restore()
test 'renders the delete button', ->
ok @gradingStandard.refs.deleteButton
test 'calls onDeleteGradingStandard when delete button is clicked', ->
deleteGradingStandard = @spy(@props, 'onDeleteGradingStandard')
GradingStandardElement = React.createElement(GradingStandard, @props)
@gradingStandard = ReactDOM.render(GradingStandardElement, @mountPoint)
Simulate.click(@gradingStandard.refs.deleteButton)
ok deleteGradingStandard.calledOnce
deleteGradingStandard.restore()
test 'does not show a message about not being able to manage', ->
deepEqual @gradingStandard.refs.cannotManageMessage, undefined
test 'does not show the save button', ->
deepEqual @gradingStandard.refs.saveButton, undefined
test 'does not show the cancel button', ->
deepEqual @gradingStandard.refs.cancelButton, undefined
QUnit.module "GradingStandard without 'manage' permissions",
setup: ->
props =
key: 1
standard:
id: 1
title: "Test Grading Standard"
data: [["A", 0.92], ["A-", 0.90], ["F", 0.00]]
context_type: "Account"
permissions:
manage: false
editing: false
justAdded: false
othersEditing: false
round: (number)-> return Math.round(number * 100)/100
onSetEditingStatus: ->
onDeleteGradingStandard: ->
onSaveGradingStandard: ->
GradingStandardElement = React.createElement(GradingStandard, props)
@gradingStandard = ReactDOM.render(GradingStandardElement, $('<div>').appendTo('#fixtures')[0])
teardown: ->
ReactDOM.unmountComponentAtNode(ReactDOM.findDOMNode(@gradingStandard).parentNode)
$("#fixtures").empty()
test 'displays a cannot manage message', ->
ok @gradingStandard.refs.cannotManageMessage
test 'disables edit and delete buttons', ->
ok @gradingStandard.refs.disabledButtons
QUnit.module "GradingStandard being edited",
setup: ->
@props =
key: 1
standard:
id: 1
title: "Test Grading Standard"
data: [["A", 0.92], ["A-", 0.90], ["F", 0.00]]
permissions:
manage: true
editing: true
justAdded: false
othersEditing: false
round: (number)-> return Math.round(number * 100)/100
onSetEditingStatus: ->
onDeleteGradingStandard: ->
onSaveGradingStandard: sinon.spy()
@mountPoint = $('<div>').appendTo('#fixtures')[0]
GradingStandardElement = React.createElement(GradingStandard, @props)
@gradingStandard = ReactDOM.render(GradingStandardElement, @mountPoint)
teardown: ->
ReactDOM.unmountComponentAtNode(@mountPoint)
test 'does not render the edit button', ->
deepEqual @gradingStandard.refs.editButton, undefined
test 'does not render the delete button', ->
deepEqual @gradingStandard.refs.deleteButton, undefined
test 'renders the save button', ->
ok @gradingStandard.refs.saveButton
test 'rowNamesAreValid() returns true with non-empty, unique row names', ->
deepEqual @gradingStandard.rowNamesAreValid(), true
test 'rowDataIsValid() returns true with non-empty, unique, non-overlapping row values', ->
deepEqual @gradingStandard.rowDataIsValid(), true
test 'calls onSaveGradingStandard save button is clicked', ->
Simulate.click(@gradingStandard.refs.saveButton)
ok @gradingStandard.props.onSaveGradingStandard.calledOnce
test 'sets the state to saving when the save button is clicked', ->
deepEqual @gradingStandard.state.saving, false
Simulate.click(@gradingStandard.refs.saveButton)
deepEqual @gradingStandard.state.saving, true
test 'shows the cancel button', ->
ok @gradingStandard.refs.cancelButton
test 'calls onSetEditingStatus when the cancel button is clicked', ->
setEditingStatus = @spy(@props, 'onSetEditingStatus')
GradingStandardElement = React.createElement(GradingStandard, @props)
@gradingStandard = ReactDOM.render(GradingStandardElement, @mountPoint)
Simulate.click(@gradingStandard.refs.cancelButton)
ok setEditingStatus.calledOnce
setEditingStatus.restore()
test 'deletes the correct row on the editingStandard when deleteDataRow is called', ->
@gradingStandard.deleteDataRow(1)
deepEqual @gradingStandard.state.editingStandard.data, [["A", 0.92], ["F", 0.00]]
test 'does not delete the row if it is the last data row remaining', ->
@gradingStandard.deleteDataRow(1)
deepEqual @gradingStandard.state.editingStandard.data, [["A", 0.92], ["F", 0.00]]
@gradingStandard.deleteDataRow(0)
deepEqual @gradingStandard.state.editingStandard.data, [["F", 0.00]]
@gradingStandard.deleteDataRow(0)
deepEqual @gradingStandard.state.editingStandard.data, [["F", 0.00]]
test 'inserts the correct row on the editingStandard when insertGradingStandardRow is called', ->
@gradingStandard.insertGradingStandardRow(1)
deepEqual @gradingStandard.state.editingStandard.data, [["A", 0.92], ["A-", 0.90], ["", ""], ["F", 0.00]]
test 'changes the title on the editingStandard when title input changes', ->
Simulate.change(@gradingStandard.refs.title, {target: {value: 'Brand new title'}})
deepEqual @gradingStandard.state.editingStandard.title, "Brand new title"
test 'changes the min score on the editingStandard when changeRowMinScore is called', ->
@gradingStandard.changeRowMinScore(2, '23')
deepEqual @gradingStandard.state.editingStandard.data[2], ["F", '23']
test 'changes the row name on the editingStandard when changeRowName is called', ->
@gradingStandard.changeRowName(2, "Q")
deepEqual @gradingStandard.state.editingStandard.data[2], ["Q", 0.00]
QUnit.module "GradingStandard being edited with blank names",
setup: ->
props =
key: 1
standard:
id: 1
title: "Test Grading Standard"
data: [["A", 0.92], ["", 0.90], ["F", 0.00]]
permissions:
manage: true
editing: true
justAdded: false
othersEditing: false
round: (number)-> return Math.round(number * 100)/100
onSetEditingStatus: ->
onDeleteGradingStandard: ->
onSaveGradingStandard: ->
GradingStandardElement = React.createElement(GradingStandard, props)
@gradingStandard = ReactDOM.render(GradingStandardElement, $('<div>').appendTo('#fixtures')[0])
teardown: ->
ReactDOM.unmountComponentAtNode(ReactDOM.findDOMNode(@gradingStandard).parentNode)
$("#fixtures").empty()
test 'rowNamesAreValid() returns false with empty row names', ->
deepEqual @gradingStandard.rowNamesAreValid(), false
test 'alerts the user that the input is invalid when they try to save', ->
Simulate.click(@gradingStandard.refs.saveButton)
ok @gradingStandard.refs.invalidStandardAlert
test 'shows a messsage describing why the input is invalid', ->
Simulate.click(@gradingStandard.refs.saveButton)
deepEqual @gradingStandard.refs.invalidStandardAlert.textContent,
"Cannot have duplicate or empty row names. Fix the names and try clicking 'Save' again."
QUnit.module "GradingStandard being edited with duplicate names",
setup: ->
props =
key: 1
standard:
id: 1
title: "Test Grading Standard"
data: [["A", 0.92], ["A", 0.90], ["F", 0.00]]
permissions:
manage: true
editing: true
justAdded: false
othersEditing: false
round: (number)-> return Math.round(number * 100)/100
onSetEditingStatus: ->
onDeleteGradingStandard: ->
onSaveGradingStandard: ->
GradingStandardElement = React.createElement(GradingStandard, props)
@gradingStandard = ReactDOM.render(GradingStandardElement, $('<div>').appendTo('#fixtures')[0])
teardown: ->
ReactDOM.unmountComponentAtNode(ReactDOM.findDOMNode(@gradingStandard).parentNode)
$("#fixtures").empty()
test 'rowNamesAreValid() returns false with duplicate row names', ->
deepEqual @gradingStandard.rowNamesAreValid(), false
test 'alerts the user that the input is invalid when they try to save', ->
Simulate.click(@gradingStandard.refs.saveButton)
ok @gradingStandard.refs.invalidStandardAlert
test 'shows a messsage describing why the input is invalid', ->
Simulate.click(@gradingStandard.refs.saveButton)
deepEqual @gradingStandard.refs.invalidStandardAlert.textContent,
"Cannot have duplicate or empty row names. Fix the names and try clicking 'Save' again."
QUnit.module "GradingStandard being edited with empty values",
setup: ->
props =
key: 1
standard:
id: 1
title: "Test Grading Standard"
data: [["A", 0.92], ["B", 0.90], ["F", ""]]
permissions:
manage: true
editing: true
justAdded: false
othersEditing: false
round: (number)-> return Math.round(number * 100)/100
onSetEditingStatus: ->
onDeleteGradingStandard: ->
onSaveGradingStandard: ->
GradingStandardElement = React.createElement(GradingStandard, props)
@gradingStandard = ReactDOM.render(GradingStandardElement, $('<div>').appendTo('#fixtures')[0])
teardown: ->
ReactDOM.unmountComponentAtNode(ReactDOM.findDOMNode(@gradingStandard).parentNode)
$("#fixtures").empty()
test 'rowDataIsValid() returns false with empty values', ->
deepEqual @gradingStandard.rowDataIsValid(), false
test 'alerts the user that the input is invalid when they try to save', ->
Simulate.click(@gradingStandard.refs.saveButton)
ok @gradingStandard.refs.invalidStandardAlert
test 'shows a messsage describing why the input is invalid', ->
Simulate.click(@gradingStandard.refs.saveButton)
deepEqual @gradingStandard.refs.invalidStandardAlert.textContent,
"Cannot have overlapping or empty ranges. Fix the ranges and try clicking 'Save' again."
QUnit.module "GradingStandard being edited with duplicate values",
setup: ->
props =
key: 1
standard:
id: 1
title: "Test Grading Standard"
data: [["A", 0.92], ["B", 0.92], ["F", 0.00]]
permissions:
manage: true
editing: true
justAdded: false
othersEditing: false
round: (number)-> return Math.round(number * 100)/100
onSetEditingStatus: ->
onDeleteGradingStandard: ->
onSaveGradingStandard: ->
GradingStandardElement = React.createElement(GradingStandard, props)
@gradingStandard = ReactDOM.render(GradingStandardElement, $('<div>').appendTo('#fixtures')[0])
teardown: ->
ReactDOM.unmountComponentAtNode(ReactDOM.findDOMNode(@gradingStandard).parentNode)
$("#fixtures").empty()
test 'rowDataIsValid() returns false with duplicate values', ->
deepEqual @gradingStandard.rowDataIsValid(), false
test 'alerts the user that the input is invalid when they try to save', ->
Simulate.click(@gradingStandard.refs.saveButton)
ok @gradingStandard.refs.invalidStandardAlert
test 'shows a messsage describing why the input is invalid', ->
Simulate.click(@gradingStandard.refs.saveButton)
deepEqual @gradingStandard.refs.invalidStandardAlert.textContent,
"Cannot have overlapping or empty ranges. Fix the ranges and try clicking 'Save' again."
QUnit.module "GradingStandard being edited with values that round to the same number",
setup: ->
props =
key: 1
standard:
id: 1
title: "Test Grading Standard"
data: [["A", 0.92], ["B", 0.91996], ["F", 0.00]]
permissions:
manage: true
editing: true
justAdded: false
othersEditing: false
round: (number)-> return Math.round(number * 100)/100
onSetEditingStatus: ->
onDeleteGradingStandard: ->
onSaveGradingStandard: ->
GradingStandardElement = React.createElement(GradingStandard, props)
@gradingStandard = ReactDOM.render(GradingStandardElement, $('<div>').appendTo('#fixtures')[0])
teardown: ->
ReactDOM.unmountComponentAtNode(ReactDOM.findDOMNode(@gradingStandard).parentNode)
$("#fixtures").empty()
test 'rowDataIsValid() returns false with if values round to the same number (91.996 rounds to 92)', ->
deepEqual @gradingStandard.rowDataIsValid(), false
test 'alerts the user that the input is invalid when they try to save', ->
Simulate.click(@gradingStandard.refs.saveButton)
ok @gradingStandard.refs.invalidStandardAlert
test 'shows a messsage describing why the input is invalid', ->
Simulate.click(@gradingStandard.refs.saveButton)
deepEqual @gradingStandard.refs.invalidStandardAlert.textContent,
"Cannot have overlapping or empty ranges. Fix the ranges and try clicking 'Save' again."
QUnit.module "GradingStandard being edited with overlapping values",
setup: ->
props =
key: 1
standard:
id: 1
title: "Test Grading Standard"
data: [["A", 0.92], ["B", 0.93], ["F", 0.00]]
permissions:
manage: true
editing: true
justAdded: false
othersEditing: false
round: (number)-> return Math.round(number * 100)/100
onSetEditingStatus: ->
onDeleteGradingStandard: ->
onSaveGradingStandard: ->
GradingStandardElement = React.createElement(GradingStandard, props)
@gradingStandard = ReactDOM.render(GradingStandardElement, $('<div>').appendTo('#fixtures')[0])
teardown: ->
ReactDOM.unmountComponentAtNode(ReactDOM.findDOMNode(@gradingStandard).parentNode)
$("#fixtures").empty()
test 'rowDataIsValid() returns false if scheme values overlap', ->
deepEqual @gradingStandard.rowDataIsValid(), false
test 'alerts the user that the input is invalid when they try to save', ->
Simulate.click(@gradingStandard.refs.saveButton)
ok @gradingStandard.refs.invalidStandardAlert
test 'shows a messsage describing why the input is invalid', ->
Simulate.click(@gradingStandard.refs.saveButton)
deepEqual @gradingStandard.refs.invalidStandardAlert.textContent,
"Cannot have overlapping or empty ranges. Fix the ranges and try clicking 'Save' again."