-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirective_spec.js
165 lines (153 loc) · 3.95 KB
/
directive_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
var Vue = require('../../../src/vue')
var Directive = require('../../../src/directive')
var nextTick = Vue.nextTick
describe('Directive', function () {
var el = {} // simply a mock to be able to run in Node
var vm, def
beforeEach(function () {
def = {
bind: jasmine.createSpy('bind'),
update: jasmine.createSpy('update'),
unbind: jasmine.createSpy('unbind')
}
vm = new Vue({
data:{
a:1,
b: { c: { d: 2 }}
},
filters: {
test: function (v) {
return v * 2
}
},
directives: {
test: def
}
})
})
it('normal', function (done) {
var d = new Directive('test', el, vm, {
expression: 'a',
arg: 'someArg',
filters: [{name:'test'}]
}, def)
// properties
expect(d.el).toBe(el)
expect(d.name).toBe('test')
expect(d.vm).toBe(vm)
expect(d.arg).toBe('someArg')
expect(d.expression).toBe('a')
// init calls
expect(def.bind).toHaveBeenCalled()
expect(def.update).toHaveBeenCalledWith(2)
expect(d._bound).toBe(true)
// update
vm.a = 2
nextTick(function () {
expect(def.update).toHaveBeenCalledWith(4, 2)
// teardown
d._teardown()
expect(def.unbind).toHaveBeenCalled()
expect(d._bound).toBe(false)
expect(d._watcher).toBe(null)
done()
})
})
it('static literal', function () {
def.isLiteral = true
var d = new Directive('test', el, vm, {
expression: 'a'
}, def)
expect(d._watcher).toBeUndefined()
expect(d.expression).toBe('a')
expect(d.bind).toHaveBeenCalled()
expect(d.update).not.toHaveBeenCalled()
})
it('static literal, interpolate with no update', function () {
def.isLiteral = true
delete def.update
var d = new Directive('test', el, vm, {
expression: '{{a}}'
}, def)
expect(d._watcher).toBeUndefined()
expect(d.expression).toBe(1)
expect(d.bind).toHaveBeenCalled()
})
it('dynamic literal', function (done) {
vm.a = '' // #468 dynamic literals with falsy initial
// should still create the watcher.
def.isLiteral = true
var d = new Directive('test', el, vm, {
expression: '{{a}}'
}, def)
expect(d._watcher).toBeDefined()
expect(d.expression).toBe('')
expect(def.bind).toHaveBeenCalled()
expect(def.update).toHaveBeenCalledWith('')
vm.a = 'aa'
nextTick(function () {
expect(def.update).toHaveBeenCalledWith('aa', '')
done()
})
})
it('inline statement', function () {
def.acceptStatement = true
var spy = jasmine.createSpy()
vm.$options.filters.test = function (fn) {
spy()
return function () {
// call it twice
fn()
fn()
}
}
var d = new Directive('test', el, vm, {
expression: 'a++',
filters: [{name:'test'}]
}, def)
expect(d._watcher).toBeUndefined()
expect(d.bind).toHaveBeenCalled()
var wrappedFn = d.update.calls.argsFor(0)[0]
expect(typeof wrappedFn).toBe('function')
// test invoke the wrapped fn
wrappedFn()
expect(vm.a).toBe(3)
})
it('two-way', function (done) {
def.twoWay = true
vm.$options.filters.test = {
write: function (v) {
return v * 3
}
}
var d = new Directive('test', el, vm, {
expression: 'a',
filters: [{name:'test'}]
}, def)
d.set(2)
expect(vm.a).toBe(6)
nextTick(function () {
// should have no update calls
expect(def.update.calls.count()).toBe(1)
done()
})
})
it('deep', function (done) {
def.deep = true
var d = new Directive('test', el, vm, {
expression: 'b'
}, def)
vm.b.c.d = 3
nextTick(function () {
expect(def.update.calls.count()).toBe(2)
done()
})
})
it('function def', function () {
var d = new Directive('test', el, vm, {
expression: 'a'
}, def.update)
expect(d.update).toBe(def.update)
expect(def.update).toHaveBeenCalled()
})
})