-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathfunctional.js
350 lines (303 loc) · 7.19 KB
/
functional.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
import 'jsdom-global/register'
import test from 'ava'
import { shallowMount } from '@vue/test-utils'
import Vue from 'vue'
const it = () => {}
test('Contains text', t => {
const wrapper = shallowMount({
render(h) {
return <div>test</div>
},
})
t.truthy(wrapper.is('div'))
t.is(wrapper.text(), 'test')
})
test('Binds text', t => {
const text = 'foo'
const wrapper = shallowMount({
render(h) {
return <div>{text}</div>
},
})
t.truthy(wrapper.is('div'))
t.is(wrapper.text(), 'foo')
})
test('Extracts attrs', t => {
const wrapper = shallowMount({
render(h) {
return <div id="hi" dir="ltr" />
},
})
t.is(wrapper.element.id, 'hi')
t.is(wrapper.element.dir, 'ltr')
})
test('Binds attrs', t => {
const id = 'foo'
const wrapper = shallowMount({
render(h) {
return <div id={id} />
},
})
t.is(wrapper.element.id, 'foo')
})
test('Omits attrs if possible', t => {
const wrapper = shallowMount({
render(h) {
return <div>test</div>
},
})
t.is(wrapper.vnode.data, undefined)
})
test('Omits children if possible', t => {
const wrapper = shallowMount({
render(h) {
return <div />
},
})
t.is(wrapper.vnode.children, undefined)
})
test('Handles top-level special attrs', t => {
const wrapper = shallowMount({
render(h) {
return <div class="foo" style="bar" key="key" ref="ref" refInFor slot="slot" />
},
})
t.is(wrapper.vnode.data.class, 'foo')
t.is(wrapper.vnode.data.style, 'bar')
t.is(wrapper.vnode.data.key, 'key')
t.is(wrapper.vnode.data.ref, 'ref')
t.is(wrapper.vnode.data.refInFor, true)
t.is(wrapper.vnode.data.slot, 'slot')
})
test('Handles nested properties', t => {
const noop = _ => _
const wrapper = shallowMount({
render(h) {
return (
<div
props-on-success={noop}
on-click={noop}
on-kebab-case={noop}
domProps-innerHTML="<p>hi</p>"
hook-insert={noop}
/>
)
},
})
t.is(wrapper.vnode.data.props['on-success'], noop)
t.is(wrapper.vnode.data.on.click.fns, noop)
t.is(wrapper.vnode.data.on['kebab-case'].fns, noop)
t.is(wrapper.vnode.data.domProps.innerHTML, '<p>hi</p>')
t.is(wrapper.vnode.data.hook.insert, noop)
})
test('Handles nested properties (camelCase)', t => {
const noop = _ => _
const wrapper = shallowMount({
render(h) {
return (
<div propsOnSuccess={noop} onClick={noop} onCamelCase={noop} domPropsInnerHTML="<p>hi</p>" hookInsert={noop} />
)
},
})
t.is(wrapper.vnode.data.props.onSuccess, noop)
t.is(wrapper.vnode.data.on.click.fns, noop)
t.is(wrapper.vnode.data.on.camelCase.fns, noop)
t.is(wrapper.vnode.data.domProps.innerHTML, '<p>hi</p>')
t.is(wrapper.vnode.data.hook.insert, noop)
})
test('Supports data attribute', t => {
const wrapper = shallowMount({
render(h) {
return <div data-id="1" />
},
})
t.is(wrapper.vnode.data.attrs['data-id'], '1')
})
test('Handles identifier tag name as components', t => {
const Test = { render: () => null }
const wrapper = shallowMount({
render(h) {
return <Test />
},
})
t.truthy(wrapper.vnode.tag.startsWith('vue-component'))
})
test('Works for components with children', t => {
const Test = {
render(h) {
h('div')
},
}
const wrapper = shallowMount({
render(h) {
return (
<Test>
<div>hi</div>
</Test>
)
},
})
const children = wrapper.vnode.componentOptions.children
t.is(children[0].tag, 'div')
})
test('Binds things in thunk with correct this context', t => {
const Test = {
render(h) {
return <div>{this.$slots.default}</div>
},
}
const wrapper = shallowMount({
data: () => ({ test: 'foo' }),
render(h) {
return <Test>{this.test}</Test>
},
})
t.is(wrapper.html(), '<div>foo</div>')
})
test('Spread (single object expression)', t => {
const props = {
innerHTML: 2,
}
const wrapper = shallowMount({
render(h) {
return <div {...{ props }} />
},
})
t.is(wrapper.vnode.data.props.innerHTML, 2)
})
test('Spread (mixed)', t => {
const calls = []
const data = {
attrs: {
id: 'hehe',
},
on: {
click: function() {
calls.push(3)
},
},
props: {
innerHTML: 2,
},
hook: {
insert: function() {
calls.push(1)
},
},
class: ['a', 'b'],
}
const wrapper = shallowMount({
render(h) {
return (
<div
href="huhu"
{...data}
class={{ c: true }}
on-click={() => calls.push(4)}
hook-insert={() => calls.push(2)}
/>
)
},
})
t.is(wrapper.vnode.data.attrs.id, 'hehe')
t.is(wrapper.vnode.data.attrs.href, 'huhu')
t.is(wrapper.vnode.data.props.innerHTML, 2)
t.deepEqual(wrapper.vnode.data.class, ['a', 'b', { c: true }])
t.deepEqual(calls, [1, 2])
wrapper.vnode.data.on.click()
t.deepEqual(calls, [1, 2, 3, 4])
})
test('Custom directives', t => {
const directive = {
inserted() {},
}
Vue.directive('test', directive)
Vue.directive('other', directive)
const wrapper = shallowMount({
render(h) {
return <div v-test={123} vOther={234} />
},
})
t.is(wrapper.vnode.data.directives.length, 2)
t.deepEqual(wrapper.vnode.data.directives[0], { def: directive, modifiers: {}, name: 'test', rawName: 'v-test', value: 123 })
t.deepEqual(wrapper.vnode.data.directives[1], { def: directive, modifiers: {}, name: 'other', rawName: 'vOther', value: 234 })
})
test('xlink:href', t => {
const wrapper = shallowMount({
render(h) {
return <use xlinkHref={'#name'} />
},
})
t.is(wrapper.vnode.data.attrs['xlink:href'], '#name')
})
test('Merge class', t => {
const wrapper = shallowMount({
render(h) {
return <div class="a" {...{ class: 'b' }} />
},
})
t.deepEqual(wrapper.vnode.data.class, ['a', 'b'])
})
test('JSXMemberExpression', t => {
const a = {
b: {
cmp: {
render(h) {
return <div />
},
},
},
}
const wrapper = shallowMount({
render(h) {
return <a.b.cmp />
},
})
t.is(wrapper.html(), '<div></div>')
})
test('JSXSpreadChild', t => {
const a = ['1', '2']
const wrapper = shallowMount({
render(h) {
return <div>{...a}</div>
},
})
t.is(wrapper.html(), '<div>12</div>')
})
test('domProps input[value]', t => {
const val = 'foo'
const wrapper = shallowMount({
render(h) {
return <input type="text" value={val} />
},
})
t.is(wrapper.html(), '<input type="text">')
t.is(wrapper.vnode.data.domProps.value, 'foo')
})
test('domProps option[selected]', t => {
const val = 'foo'
const wrapper = shallowMount({
render(h) {
return <option selected={val} />
},
})
t.is(wrapper.vnode.data.domProps.selected, 'foo')
})
test('domProps input[checked]', t => {
const val = 'foo'
const wrapper = shallowMount({
render(h) {
return <input checked={val} />
},
})
t.is(wrapper.vnode.data.domProps.checked, 'foo')
})
test('domProps video[muted]', t => {
const val = 'foo'
const wrapper = shallowMount({
render(h) {
return <video muted={val} />
},
})
t.is(wrapper.vnode.data.domProps.muted, 'foo')
})