-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwatcher_spec.js
351 lines (327 loc) · 9.49 KB
/
watcher_spec.js
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
var Vue = require('../../../src/vue')
var nextTick = Vue.nextTick
var Watcher = require('../../../src/watcher')
var _ = Vue.util
var config = Vue.config
describe('Watcher', function () {
var vm, spy
beforeEach(function () {
vm = new Vue({
filters: {},
data: {
a: 1,
b: {
c: 2,
d: 4
},
c: 'c',
msg: 'yo'
}
})
spy = jasmine.createSpy('watcher')
spyOn(_, 'warn')
})
it('simple path', function (done) {
var watcher = new Watcher(vm, 'b.c', spy)
expect(watcher.value).toBe(2)
vm.b.c = 3
nextTick(function () {
expect(watcher.value).toBe(3)
expect(spy).toHaveBeenCalledWith(3, 2)
vm.b = { c: 4 } // swapping the object
nextTick(function () {
expect(watcher.value).toBe(4)
expect(spy).toHaveBeenCalledWith(4, 3)
done()
})
})
})
it('bracket access path', function (done) {
var watcher = new Watcher(vm, 'b["c"]', spy)
expect(watcher.value).toBe(2)
vm.b.c = 3
nextTick(function () {
expect(watcher.value).toBe(3)
expect(spy).toHaveBeenCalledWith(3, 2)
vm.b = { c: 4 } // swapping the object
nextTick(function () {
expect(watcher.value).toBe(4)
expect(spy).toHaveBeenCalledWith(4, 3)
done()
})
})
})
it('dynamic path', function (done) {
var watcher = new Watcher(vm, 'b[c]', spy)
expect(watcher.value).toBe(2)
vm.b.c = 3
nextTick(function () {
expect(watcher.value).toBe(3)
expect(spy).toHaveBeenCalledWith(3, 2)
vm.c = 'd' // changing the dynamic segment in path
nextTick(function () {
expect(watcher.value).toBe(4)
expect(spy).toHaveBeenCalledWith(4, 3)
done()
})
})
})
it('simple expression', function (done) {
var watcher = new Watcher(vm, 'a + b.c', spy)
expect(watcher.value).toBe(3)
vm.b.c = 3
nextTick(function () {
expect(watcher.value).toBe(4)
expect(spy.calls.count()).toBe(1)
expect(spy).toHaveBeenCalledWith(4, 3)
// change two dependencies at once
vm.a = 2
vm.b.c = 4
nextTick(function () {
expect(watcher.value).toBe(6)
// should trigger only once callback,
// because it was in the same event loop.
expect(spy.calls.count()).toBe(2)
expect(spy).toHaveBeenCalledWith(6, 4)
done()
})
})
})
it('ternary expression', function (done) {
// we're actually testing for the dependency re-calculation here
var watcher = new Watcher(vm, 'a > 1 ? b.c : b.d', spy)
expect(watcher.value).toBe(4)
vm.a = 2
nextTick(function () {
expect(watcher.value).toBe(2)
expect(spy).toHaveBeenCalledWith(2, 4)
vm.b.c = 3
nextTick(function () {
expect(watcher.value).toBe(3)
expect(spy).toHaveBeenCalledWith(3, 2)
done()
})
})
})
it('meta properties', function (done) {
vm._defineMeta('$index', 1)
var watcher = new Watcher(vm, '$index + 1', spy)
expect(watcher.value).toBe(2)
vm.$index = 2
nextTick(function () {
expect(watcher.value).toBe(3)
done()
})
})
it('non-existent path, $add later', function (done) {
var watcher = new Watcher(vm, 'd.e', spy)
var watcher2 = new Watcher(vm, 'b.e', spy)
expect(watcher.value).toBeUndefined()
expect(watcher2.value).toBeUndefined()
// check $add affecting children
var child = vm.$addChild({
inherit: true
})
var watcher3 = new Watcher(child, 'd.e', spy)
var watcher4 = new Watcher(child, 'b.e', spy)
// check $add should not affect isolated children
var child2 = vm.$addChild()
var watcher5 = new Watcher(child2, 'd.e', spy)
expect(watcher5.value).toBeUndefined()
vm.$add('d', { e: 123 })
vm.b.$add('e', 234)
nextTick(function () {
expect(watcher.value).toBe(123)
expect(watcher2.value).toBe(234)
expect(watcher3.value).toBe(123)
expect(watcher4.value).toBe(234)
expect(watcher5.value).toBeUndefined()
expect(spy.calls.count()).toBe(4)
expect(spy).toHaveBeenCalledWith(123, undefined)
expect(spy).toHaveBeenCalledWith(234, undefined)
done()
})
})
it('$delete', function (done) {
var watcher = new Watcher(vm, 'b.c', spy)
expect(watcher.value).toBe(2)
vm.$delete('b')
nextTick(function () {
expect(watcher.value).toBeUndefined()
expect(spy).toHaveBeenCalledWith(undefined, 2)
done()
})
})
it('swapping $data', function (done) {
// existing path
var watcher = new Watcher(vm, 'b.c', spy)
var spy2 = jasmine.createSpy()
// non-existing path
var watcher2 = new Watcher(vm, 'e', spy2)
expect(watcher.value).toBe(2)
expect(watcher2.value).toBeUndefined()
vm.$data = { b: { c: 3}, e: 4 }
nextTick(function () {
expect(watcher.value).toBe(3)
expect(watcher2.value).toBe(4)
expect(spy).toHaveBeenCalledWith(3, 2)
expect(spy2).toHaveBeenCalledWith(4, undefined)
done()
})
})
it('path containing $data', function (done) {
var watcher = new Watcher(vm, '$data.b.c', spy)
expect(watcher.value).toBe(2)
vm.b = { c: 3 }
nextTick(function () {
expect(watcher.value).toBe(3)
expect(spy).toHaveBeenCalledWith(3, 2)
vm.$data = { b: {c: 4}}
nextTick(function () {
expect(watcher.value).toBe(4)
expect(spy).toHaveBeenCalledWith(4, 3)
done()
})
})
})
it('watching $data', function (done) {
var oldData = vm.$data
var watcher = new Watcher(vm, '$data', spy)
expect(watcher.value).toBe(oldData)
var newData = {}
vm.$data = newData
nextTick(function() {
expect(spy).toHaveBeenCalledWith(newData, oldData)
expect(watcher.value).toBe(newData)
done()
})
})
it('watching parent scope properties', function (done) {
var child = vm.$addChild({
inherit: true
})
var spy2 = jasmine.createSpy('watch')
var watcher1 = new Watcher(child, '$data', spy)
var watcher2 = new Watcher(child, 'a', spy2)
vm.a = 123
nextTick(function () {
// $data should only be called on self data change
expect(watcher1.value).toBe(child.$data)
expect(spy).not.toHaveBeenCalled()
expect(watcher2.value).toBe(123)
expect(spy2).toHaveBeenCalledWith(123, 1)
done()
})
})
it('filters', function (done) {
vm.$options.filters.test = function (val, multi) {
return val * multi
}
vm.$options.filters.test2 = function (val, str) {
return val + str
}
var watcher = new Watcher(vm, 'b.c', spy, {
filters: [
{ name: 'test', args: [{value:3, dynamic:false}]},
{ name: 'test2', args: [{value:'msg', dynamic:true}]}
]
})
expect(watcher.value).toBe('6yo')
vm.b.c = 3
nextTick(function () {
expect(watcher.value).toBe('9yo')
expect(spy).toHaveBeenCalledWith('9yo', '6yo')
done()
})
})
it('setter', function (done) {
vm.$options.filters.test = {
write: function (val, oldVal, arg) {
return val > arg ? val : oldVal
}
}
var watcher = new Watcher(vm, 'b["c"]', spy, {
filters: [
{ name: 'test', args: [{value:5, dynamic:false}] }
],
twoWay: true
})
expect(watcher.value).toBe(2)
watcher.set(4) // shoud not change the value
nextTick(function () {
expect(vm.b.c).toBe(2)
expect(watcher.value).toBe(2)
expect(spy).not.toHaveBeenCalled()
watcher.set(6)
nextTick(function () {
expect(vm.b.c).toBe(6)
expect(watcher.value).toBe(6)
expect(spy).toHaveBeenCalledWith(6, 2)
done()
})
})
})
it('set non-existent values', function (done) {
var watcher = new Watcher(vm, 'd.e.f', spy)
expect(watcher.value).toBeUndefined()
watcher.set(123)
nextTick(function () {
expect(vm.d.e.f).toBe(123)
expect(watcher.value).toBe(123)
expect(spy).toHaveBeenCalledWith(123, undefined)
done()
})
})
it('deep watch', function (done) {
var watcher = new Watcher(vm, 'b', spy, {
deep: true
})
vm.b.c = { d: 4 }
nextTick(function () {
expect(spy).toHaveBeenCalledWith(vm.b, vm.b)
var oldB = vm.b
vm.b = { c: [{a:1}] }
nextTick(function () {
expect(spy).toHaveBeenCalledWith(vm.b, oldB)
expect(spy.calls.count()).toBe(2)
vm.b.c[0].a = 2
nextTick(function () {
expect(spy).toHaveBeenCalledWith(vm.b, vm.b)
expect(spy.calls.count()).toBe(3)
done()
})
})
})
})
it('teardown', function (done) {
var watcher = new Watcher(vm, 'b.c', spy)
watcher.teardown()
vm.b.c = 3
nextTick(function () {
expect(watcher.active).toBe(false)
expect(watcher.vm).toBe(null)
expect(watcher.cb).toBe(null)
expect(spy).not.toHaveBeenCalled()
done()
})
})
it('synchronous updates', function () {
config.async = false
var watcher = new Watcher(vm, 'a', spy)
vm.a = 2
vm.a = 3
expect(spy.calls.count()).toBe(2)
expect(spy).toHaveBeenCalledWith(2, 1)
expect(spy).toHaveBeenCalledWith(3, 2)
config.async = true
})
it('warn getter errors', function () {
var watcher = new Watcher(vm, 'd.e + c', spy)
expect(hasWarned(_, 'Error when evaluating expression')).toBe(true)
})
it('warn setter errors', function () {
var watcher = new Watcher(vm, 'a + b', spy)
watcher.set(123)
expect(hasWarned(_, 'Error when evaluating setter')).toBe(true)
})
})