forked from vuejs/vue-test-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstubs.spec.js
461 lines (429 loc) · 13.5 KB
/
stubs.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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
import ComponentWithChild from '~resources/components/component-with-child.vue'
import ComponentWithNestedChildren from '~resources/components/component-with-nested-children.vue'
import Component from '~resources/components/component.vue'
import ComponentAsAClass from '~resources/components/component-as-a-class.vue'
import { createLocalVue, config } from '~vue/test-utils'
import { config as serverConfig } from '~vue/server-test-utils'
import Vue from 'vue'
import { describeWithMountingMethods } from '~resources/utils'
import { itDoNotRunIf } from 'conditional-specs'
describeWithMountingMethods('options.stub', mountingMethod => {
let info
let warn
let configStubsSave
let serverConfigSave
beforeEach(() => {
info = sinon.stub(console, 'info')
warn = sinon.stub(console, 'error')
configStubsSave = config.stubs
serverConfigSave = serverConfig.stubs
config.stubs = {}
serverConfig.stubs = {}
})
afterEach(() => {
info.restore()
warn.restore()
config.stubs = configStubsSave
serverConfig.stubs = serverConfigSave
})
it('accepts valid component stubs', () => {
const ComponentWithRender = { render: h => h('div') }
const ComponentWithoutRender = { template: '<div></div>' }
const ExtendedComponent = Vue.extend({ template: '<div></div>' })
mountingMethod(ComponentWithChild, {
stubs: {
ChildComponent: ComponentAsAClass,
ChildComponent2: ComponentWithRender,
ChildComponent3: ComponentWithoutRender,
ChildComponent4: ExtendedComponent
}
})
})
it('replaces component with template string ', () => {
const wrapper = mountingMethod(ComponentWithChild, {
stubs: {
ChildComponent: '<div class="stub"></div>'
}
})
if (mountingMethod.name === 'renderToString') {
expect(wrapper).to.contain('"stub"')
} else {
expect(wrapper.findAll('.stub').length).to.equal(1)
expect(wrapper.findAll(Component).length).to.equal(1)
}
})
itDoNotRunIf(
mountingMethod.name === 'renderToString',
'replaces component with a component',
() => {
const wrapper = mountingMethod(ComponentWithChild, {
stubs: {
ChildComponent: {
render: h => h('time'),
mounted () {
console.info('stubbed')
}
}
}
})
expect(wrapper.findAll(Component).length).to.equal(1)
expect(info.calledWith('stubbed')).to.equal(true)
}
)
it('does not error if component to stub contains no components', () => {
mountingMethod(Component, {
stubs: {
doesNotExist: Component
}
})
})
itDoNotRunIf(
mountingMethod.name === 'shallowMount' ||
mountingMethod.name === 'renderToString',
'does not modify component directly',
() => {
const wrapper = mountingMethod(ComponentWithNestedChildren, {
stubs: {
ChildComponent: '<div />'
}
})
expect(wrapper.findAll(Component).length).to.equal(0)
const mountedWrapper = mountingMethod(ComponentWithNestedChildren)
expect(mountedWrapper.findAll(Component).length).to.equal(1)
}
)
it('renders slot content in stubs', () => {
const TestComponent = {
template: `
<div>
<stub-with-child>
<child-component />
</stub-with-child>
</div>
`
}
const wrapper = mountingMethod(TestComponent, {
stubs: ['child-component', 'stub-with-child']
})
const HTML = mountingMethod.name === 'renderToString'
? wrapper
: wrapper.html()
expect(HTML).to.contain('<child-component-stub>')
})
it('stubs components on component if they do not already exist', () => {
const ComponentWithGlobalComponent = {
render: h => h('registered-component')
}
const wrapper = mountingMethod(ComponentWithGlobalComponent, {
stubs: {
'registered-component': Component
}
})
const HTML =
mountingMethod.name === 'renderToString' ? wrapper : wrapper.html()
expect(HTML).to.contain('</div>')
})
it('stubs components with dummy when passed as an array', () => {
const ComponentWithGlobalComponent = {
render: h => h('div', [h('registered-component')])
}
const wrapper = mountingMethod(ComponentWithGlobalComponent, {
stubs: ['registered-component']
})
const HTML =
mountingMethod.name === 'renderToString' ? wrapper : wrapper.html()
expect(HTML).to.contain('<registered-component-stub>')
})
itDoNotRunIf(
mountingMethod.name === 'shallowMount',
'stubs nested components', () => {
const GrandchildComponent = {
template: '<span />'
}
const ChildComponent = {
template: '<grandchild-component />',
components: { GrandchildComponent }
}
const TestComponent = {
template: '<child-component />',
components: { ChildComponent }
}
const wrapper = mountingMethod(TestComponent, {
stubs: ['grandchild-component']
})
const HTML = mountingMethod.name === 'renderToString'
? wrapper
: wrapper.html()
expect(HTML).not.to.contain('<span>')
})
itDoNotRunIf(
mountingMethod.name === 'shallowMount',
'stubs nested components on extended components', () => {
const GrandchildComponent = {
template: '<span />'
}
const ChildComponent = {
template: '<grandchild-component />',
components: { GrandchildComponent }
}
const TestComponent = {
template: '<div><child-component /></div>',
components: { ChildComponent }
}
const wrapper = mountingMethod(Vue.extend(TestComponent), {
stubs: ['grandchild-component']
})
const HTML = mountingMethod.name === 'renderToString'
? wrapper
: wrapper.html()
expect(HTML).not.to.contain('<span>')
})
itDoNotRunIf(
mountingMethod.name === 'renderToString',
'stubs components with dummy which has name when passed a boolean', () => {
const ComponentWithGlobalComponent = {
render: h => h('div', [h('registered-component')])
}
const wrapper = mountingMethod(ComponentWithGlobalComponent, {
stubs: {
'registered-component': true
}
})
const HTML =
mountingMethod.name === 'renderToString' ? wrapper : wrapper.html()
expect(HTML).to.contain('<registered-component-stub>')
expect(wrapper.find({ name: 'registered-component' }).html())
.to.equal('<registered-component-stub></registered-component-stub>')
})
it('stubs components with dummy when passed as an array', () => {
const ComponentWithGlobalComponent = {
render: h => h('registered-component')
}
const invalidValues = [{}, [], 3]
const error =
'[vue-test-utils]: each item in an options.stubs array must be a string'
invalidValues.forEach(invalidValue => {
const fn = () =>
mountingMethod(ComponentWithGlobalComponent, {
stubs: [invalidValue]
})
expect(fn)
.to.throw()
.with.property('message', error)
})
})
it('throws error if passed string in object when vue-template-compiler is undefined', () => {
const compilerSave =
require.cache[require.resolve('vue-template-compiler')].exports
.compileToFunctions
require.cache[
require.resolve('vue-template-compiler')
].exports.compileToFunctions = undefined
delete require.cache[require.resolve('../../../packages/test-utils')]
delete require.cache[
require.resolve('../../../packages/server-test-utils')
]
const mountingMethodFresh =
mountingMethod.name === 'renderToString'
? require('../../../packages/server-test-utils').renderToString
: require('../../../packages/test-utils')[mountingMethod.name]
const message =
'[vue-test-utils]: vueTemplateCompiler is undefined, you must pass precompiled components if vue-template-compiler is undefined'
const fn = () =>
mountingMethodFresh(Component, {
stubs: {
ChildComponent: '<div />'
}
})
try {
expect(fn)
.to.throw()
.with.property('message', message)
} catch (err) {
require.cache[
require.resolve('vue-template-compiler')
].exports.compileToFunctions = compilerSave
throw err
}
require.cache[
require.resolve('vue-template-compiler')
].exports.compileToFunctions = compilerSave
})
itDoNotRunIf(
mountingMethod.name === 'shallowMount',
'does not stub component when set to false',
() => {
const wrapper = mountingMethod(ComponentWithChild, {
stubs: {
ChildComponent: false
}
})
const HTML =
mountingMethod.name === 'renderToString' ? wrapper : wrapper.html()
expect(HTML).to.contain('<span><div></div></span>')
}
)
it('combines with stubs from config', () => {
const localVue = createLocalVue()
config.stubs['time-component'] = '<br />'
serverConfig.stubs['time-component'] = '<br />'
const SpanComponent = {
render: h => h('span')
}
const TimeComponent = {
render: h => h('time')
}
localVue.component('span-component', SpanComponent)
localVue.component('time-component', TimeComponent)
const TestComponent = {
render: h => h('div', [h('span-component'), h('time-component')])
}
const wrapper = mountingMethod(TestComponent, {
stubs: {
'span-component': '<p />'
},
localVue
})
const HTML =
mountingMethod.name === 'renderToString' ? wrapper : wrapper.html()
expect(HTML).to.contain('<br>')
expect(HTML).to.contain('<p>')
})
it('prioritize mounting options over config', () => {
const localVue = createLocalVue()
config.stubs['time-component'] = '<p />'
const TimeComponent = {
render: h => h('time')
}
localVue.component('time-component', TimeComponent)
const TestComponent = {
render: h => h('div', [h('time-component')])
}
const wrapper = mountingMethod(TestComponent, {
stubs: {
'time-component': '<span />'
},
localVue
})
const HTML =
mountingMethod.name === 'renderToString' ? wrapper : wrapper.html()
expect(HTML).to.contain('<span>')
})
itDoNotRunIf(
mountingMethod.name === 'shallowMount' ||
mountingMethod.name === 'renderToString',
'stubs on child components',
() => {
const TestComponent = {
template: '<transition><span /></transition>'
}
const wrapper = mountingMethod(
{
components: { 'test-component': TestComponent },
template: '<test-component />'
},
{
stubs: ['transition']
}
)
expect(wrapper.find('span').exists()).to.equal(false)
}
)
it('converts config to array if stubs is an array', () => {
const localVue = createLocalVue()
config.stubs['time-component'] = '<p />'
serverConfig.stubs['time-component'] = '<p />'
const TimeComponent = {
render: h => h('time')
}
localVue.component('time-component', TimeComponent)
const TestComponent = {
render: h => h('div', [h('time-component')])
}
const wrapper = mountingMethod(TestComponent, {
stubs: ['a-component'],
localVue
})
const HTML =
mountingMethod.name === 'renderToString' ? wrapper : wrapper.html()
expect(HTML).to.contain('<time-component-stub>')
})
it('handles components without a render function', () => {
const TestComponent = {
template: `
<div>
<stub-component />
</div>
`,
components: {
stubComponent: { template: '<div />' }
}
}
const StubComponent = {
template: '<div>No render function</div>'
}
const wrapper = mountingMethod(TestComponent, {
stubs: {
'stub-component': StubComponent
}
})
const HTML =
mountingMethod.name === 'renderToString' ? wrapper : wrapper.html()
expect(HTML).contains('No render function')
})
it('throws an error when passed a circular reference', () => {
const names = ['child-component', 'ChildComponent', 'childComponent']
const validValues = [
'<NAME-suffix />',
'<prefix-NAME />',
'<cmp NAME></cmp>',
'<cmp something="NAME"></cmp>',
'<NAMEl />'
]
const invalidValues = [
'<NAME />',
'<NAME />',
'<NAME></NAME>',
'<NAME aProp="something"></NAME>',
'<NAME ></NAME>'
]
const error =
'[vue-test-utils]: options.stub cannot contain a circular reference'
names.forEach(name => {
invalidValues.forEach(invalidValue => {
const fn = () =>
mountingMethod(ComponentWithChild, {
stubs: {
ChildComponent: invalidValue.replace(/NAME/g, name)
}
})
expect(fn)
.to.throw()
.with.property('message', error)
})
validValues.forEach(validValue => {
mountingMethod(ComponentWithChild, {
stubs: {
ChildComponent: validValue.replace(/NAME/g, name)
}
})
})
})
})
it('throws an error when passed an invalid value as stub', () => {
const error =
'[vue-test-utils]: options.stub values must be passed a string or component'
const invalidValues = [1, null, [], {}, NaN]
invalidValues.forEach(invalidValue => {
const fn = () =>
mountingMethod(ComponentWithChild, {
stubs: {
ChildComponent: invalidValue
}
})
expect(fn)
.to.throw()
.with.property('message', error)
})
})
})