forked from instructure/canvas-lms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgradingPeriodsApiSpec.coffee
More file actions
124 lines (113 loc) · 3.59 KB
/
Copy pathgradingPeriodsApiSpec.coffee
File metadata and controls
124 lines (113 loc) · 3.59 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
#
# Copyright (C) 2016 - 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 [
'underscore',
'axios',
'helpers/fakeENV',
'compiled/api/gradingPeriodsApi'
], (_, axios, fakeENV, api) ->
deserializedPeriods = [
{
id: '1',
title: 'Q1',
startDate: new Date('2015-09-01T12:00:00Z'),
endDate: new Date('2015-10-31T12:00:00Z'),
closeDate: new Date('2015-11-07T12:00:00Z'),
isClosed: true,
isLast: false,
weight: 40
},{
id: '2',
title: 'Q2',
startDate: new Date('2015-11-01T12:00:00Z'),
endDate: new Date('2015-12-31T12:00:00Z'),
closeDate: new Date('2016-01-07T12:00:00Z'),
isClosed: true,
isLast: true,
weight: 60
}
]
serializedPeriods = {
grading_periods: [
{
id: '1',
title: 'Q1',
start_date: new Date('2015-09-01T12:00:00Z'),
end_date: new Date('2015-10-31T12:00:00Z'),
close_date: new Date('2015-11-07T12:00:00Z'),
weight: 40
},{
id: '2',
title: 'Q2',
start_date: new Date('2015-11-01T12:00:00Z'),
end_date: new Date('2015-12-31T12:00:00Z'),
close_date: new Date('2016-01-07T12:00:00Z'),
weight: 60
}
]
}
periodsData = {
grading_periods: [
{
id: '1',
title: 'Q1',
start_date: '2015-09-01T12:00:00Z',
end_date: '2015-10-31T12:00:00Z',
close_date: '2015-11-07T12:00:00Z',
is_closed: true,
is_last: false,
weight: 40
},{
id: '2',
title: 'Q2',
start_date: '2015-11-01T12:00:00Z',
end_date: '2015-12-31T12:00:00Z',
close_date: '2016-01-07T12:00:00Z',
is_closed: true,
is_last: true,
weight: 60
}
]
}
QUnit.module 'batchUpdate',
setup: ->
fakeENV.setup()
ENV.GRADING_PERIODS_UPDATE_URL = 'api/{{ set_id }}/batch_update'
teardown: ->
fakeENV.teardown()
test 'calls the resolved endpoint with serialized grading periods', ->
apiSpy = @stub(axios, 'patch').returns(new Promise(->))
api.batchUpdate(123, deserializedPeriods)
ok axios.patch.calledWith('api/123/batch_update', serializedPeriods)
test 'deserializes returned grading periods', ->
@stub(axios, 'patch').returns(Promise.resolve({ data: periodsData }))
api.batchUpdate(123, deserializedPeriods)
.then (periods) =>
deepEqual periods, deserializedPeriods
test 'rejects the promise upon errors', ->
@stub(axios, 'patch').returns(Promise.reject('FAIL'))
api.batchUpdate(123, deserializedPeriods)
.catch (error) =>
equal error, 'FAIL'
QUnit.module 'deserializePeriods'
test 'returns an empty array if passed undefined', ->
propEqual api.deserializePeriods(undefined), []
test 'returns an empty array if passed null', ->
propEqual api.deserializePeriods(null), []
test 'deserializes periods', ->
result = api.deserializePeriods(periodsData.grading_periods)
propEqual result, deserializedPeriods