forked from instructure/canvas-lms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModuleSequenceFooterSpec.coffee
More file actions
244 lines (221 loc) · 8.25 KB
/
Copy pathModuleSequenceFooterSpec.coffee
File metadata and controls
244 lines (221 loc) · 8.25 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
define [
'jquery'
'compiled/jquery/ModuleSequenceFooter'
], ($) ->
QUnit.module 'ModuleSequenceFooter: init',
setup: ->
@$testEl = $('<div>')
$('#fixtures').append @$testEl
@stub $.fn.moduleSequenceFooter.MSFClass.prototype, 'fetch', -> {done: ->}
teardown: ->
@$testEl.remove()
test 'returns jquery object of itself', ->
jobj = @$testEl.moduleSequenceFooter({assetType: 'Assignment', assetID: 42})
ok jobj instanceof $, 'returns an jquery instance of itself'
test 'throws error if option is not set', ->
throws (-> @$testEl.moduleSequenceFooter()), 'throws error when no options are passed in'
test 'generatess a url based on the course_id', ->
msf = new $.fn.moduleSequenceFooter.MSFClass({courseID: 42, assetType: 'Assignment', assetID: 42})
equal msf.url, "/api/v1/courses/42/module_item_sequence", "generates a url based on the courseID"
test 'attaches msfAnimation function', ->
@$testEl.moduleSequenceFooter({assetType: 'Assignment', assetID: 42})
notStrictEqual @$testEl.msfAnimation, undefined, 'msfAnimation function defined'
test 'accepts animation option', ->
$.fn.moduleSequenceFooter.MSFClass.prototype.fetch.restore()
@stub $.fn.moduleSequenceFooter.MSFClass.prototype, 'fetch', ->
this.success
items: [
prev: null
current:
id: 42
module_id: 73
title: 'A lonely page'
type: 'Page'
next:
id: 43
module_id: 73
title: 'Another lonely page'
type: 'Page'
]
modules: [
id: 73
name: 'A lonely module'
]
d = $.Deferred()
d.resolve()
d
@$testEl.moduleSequenceFooter({assetType: 'Assignment', assetID: 42, animation: false})
equal @$testEl.find('.module-sequence-footer.no-animation').length, 1, 'no-animation applied to module-sequence-footer'
equal @$testEl.find('.module-sequence-padding.no-animation').length, 1, 'no-animation applied to module-sequence-padding'
@$testEl.msfAnimation(true)
equal @$testEl.find('.module-sequence-footer:not(.no-animation)').length, 1, 'no-animation removed from module-sequence-footer'
equal @$testEl.find('.module-sequence-padding:not(.no-animation)').length, 1, 'no-animation removed from module-sequence-padding'
QUnit.module 'ModuleSequenceFooter: rendering',
setup: ->
@server = sinon.fakeServer.create()
@$testEl = $('<div>')
$('#fixtures').append @$testEl
teardown: ->
@server.restore()
@$testEl.remove()
nullButtonData =
{
items:
[
{
prev: null,
current:
{
id: 768,
module_id: 123,
title: "A lonely page",
type: "Page",
}
next: null
}
]
modules:
[
{
id: 123,
name: "Module A",
}
]
}
test 'there is no button when next or prev data is null', ->
@server.respondWith "GET",
"/api/v1/courses/42/module_item_sequence?asset_type=Assignment&asset_id=123&frame_external_urls=true",
[
200, { "Content-Type": "application/json" }, JSON.stringify(nullButtonData)
]
@$testEl.moduleSequenceFooter({courseID: 42, assetType: 'Assignment', assetID: 123})
@server.respond()
ok @$testEl.find('a').length == 0, 'no buttons rendered'
moduleTooltipData =
{
items:
[
{
prev:
{
id: 769,
module_id: 111,
title: "Project 1",
type: "Assignment",
}
current:
{
id: 768,
module_id: 123,
title: "A lonely page",
type: "Page",
}
next:
{
id: 111,
module_id: 666,
title: "Project 33",
type: "Assignment",
}
}
]
modules:
[
{
id: 123,
name: "Module A",
}
{
id: 666,
name: "Module B",
}
{
id: 111,
name: "Module C",
}
]
}
test 'buttons show modules tooltip when current module id != next or prev module id', ->
@server.respondWith "GET",
"/api/v1/courses/42/module_item_sequence?asset_type=Assignment&asset_id=123&frame_external_urls=true",
[
200, { "Content-Type": "application/json" }, JSON.stringify(moduleTooltipData)
]
@$testEl.moduleSequenceFooter({courseID: 42, assetType: 'Assignment', assetID: 123})
@server.respond()
ok this.$testEl.find('a').first().data('html-tooltip-title').match('Module C'), "displays previous module tooltip"
ok this.$testEl.find('a').last().data('html-tooltip-title').match('Module B'), "displays next module tooltip"
itemTooltipData =
{
items:
[
{
prev:
{
id: 769,
module_id: 123,
title: "Project 1",
type: "Assignment",
}
current:
{
id: 768,
module_id: 123,
title: "A lonely page",
type: "Page",
}
next:
{
id: 111,
module_id: 123,
title: "Project 33",
type: "Assignment",
}
}
]
modules:
[
{
id: 123,
name: "Module A",
}
]
}
test 'buttons show item tooltip when current module id == next or prev module id', ->
@server.respondWith "GET",
"/api/v1/courses/42/module_item_sequence?asset_type=Assignment&asset_id=123&frame_external_urls=true",
[
200, { "Content-Type": "application/json" }, JSON.stringify(itemTooltipData)
]
@$testEl.moduleSequenceFooter({courseID: 42, assetType: 'Assignment', assetID: 123})
@server.respond()
ok this.$testEl.find('a').first().data('html-tooltip-title').match('Project 1'), "displays previous item tooltip"
ok this.$testEl.find('a').last().data('html-tooltip-title').match('Project 33'), "displays next item tooltip"
test 'if url has a module_item_id use that as the assetID and ModuleItem as the type instead', ->
@server.respondWith "GET",
"/api/v1/courses/42/module_item_sequence?asset_type=ModuleItem&asset_id=999&frame_external_urls=true",
[
200, { "Content-Type": "application/json" }, JSON.stringify({})
]
@$testEl.moduleSequenceFooter({courseID: 42, assetType: 'Assignment', assetID: 123, location: {search:"?module_item_id=999" }})
@server.respond()
equal @server.requests[0].status, '200', 'Request was successful'
test 'show gets called when rendering', ->
@stub(@$testEl, 'show')
@server.respondWith "GET",
"/api/v1/courses/42/module_item_sequence?asset_type=Assignment&asset_id=123&frame_external_urls=true",
[
200, { "Content-Type": "application/json" }, JSON.stringify(itemTooltipData)
]
@$testEl.moduleSequenceFooter({courseID: 42, assetType: 'Assignment', assetID: 123})
@server.respond()
ok @$testEl.show.called, 'show called'
test 'resize event gets triggered', ->
$(window).resize(() -> ok( true, "resize event triggered" ))
@server.respondWith "GET",
"/api/v1/courses/42/module_item_sequence?asset_type=Assignment&asset_id=123&frame_external_urls=true",
[
200, { "Content-Type": "application/json" }, JSON.stringify(itemTooltipData)
]
@$testEl.moduleSequenceFooter({courseID: 42, assetType: 'Assignment', assetID: 123})
@server.respond()