forked from vuejs/vue-test-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate-local-vue.spec.js
234 lines (214 loc) · 6.88 KB
/
create-local-vue.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
import Vue from 'vue'
import Vuex from 'vuex'
import VueRouter from 'vue-router'
import { createLocalVue } from 'packages/test-utils/src'
import Component from '~resources/components/component.vue'
import ComponentWithVuex from '~resources/components/component-with-vuex.vue'
import ComponentWithRouter from '~resources/components/component-with-router.vue'
import ComponentWithSyncError from '~resources/components/component-with-sync-error.vue'
import ComponentWithAsyncError from '~resources/components/component-with-async-error.vue'
import { describeWithShallowAndMount, vueVersion } from '~resources/utils'
import { itDoNotRunIf, itSkipIf } from 'conditional-specs'
describeWithShallowAndMount('createLocalVue', mountingMethod => {
it('installs Vuex without polluting global Vue', () => {
const localVue = createLocalVue()
localVue.use(Vuex)
const store = new Vuex.Store({
state: {
test: 0
},
mutations: {
increment() {}
}
})
const wrapper = mountingMethod(Component, { localVue, store })
expect(wrapper.vm.$store).toBeTruthy()
const freshWrapper = mountingMethod(Component)
expect(typeof freshWrapper.vm.$store).toEqual('undefined')
})
it('Vuex should work properly with local Vue', async () => {
const localVue = createLocalVue()
localVue.use(Vuex)
const store = new Vuex.Store({
state: {
count: 0
},
mutations: {
increment(state) {
state.count++
}
},
modules: {
foo: {
state: () => ({ bar: 1 })
}
}
})
const wrapper = mountingMethod(ComponentWithVuex, { localVue, store })
expect(wrapper.vm.$store).toBeTruthy()
expect(wrapper.text()).toEqual('0 1')
await wrapper.trigger('click')
expect(wrapper.text()).toEqual('1 1')
})
it('installs Router without polluting global Vue', () => {
const localVue = createLocalVue()
localVue.use(VueRouter)
const routes = [{ path: '/foo', component: Component }]
const router = new VueRouter({
routes
})
const wrapper = mountingMethod(Component, { localVue, router })
expect(wrapper.vm.$route).toBeTruthy()
const freshWrapper = mountingMethod(Component)
expect(typeof freshWrapper.vm.$route).toEqual('undefined')
})
itDoNotRunIf(
mountingMethod.name === 'shallowMount',
'Router should work properly with local Vue',
async () => {
const localVue = createLocalVue()
localVue.use(VueRouter)
const routes = [
{
path: '/',
component: {
render: h => h('div', 'home')
}
},
{
path: '/foo',
component: {
render: h => h('div', 'foo')
}
}
]
const router = new VueRouter({
routes
})
const wrapper = mountingMethod(ComponentWithRouter, { localVue, router })
expect(wrapper.vm.$route).toBeTruthy()
expect(wrapper.text()).toContain('home')
await wrapper.find('a').trigger('click')
expect(wrapper.text()).toContain('foo')
const freshWrapper = mountingMethod(Component)
expect(typeof freshWrapper.vm.$route).toEqual('undefined')
}
)
it('use can take additional arguments', () => {
const localVue = createLocalVue()
const pluginOptions = { foo: 'bar' }
const plugin = {
install: function(_Vue, options) {
expect(options).toEqual(pluginOptions)
}
}
localVue.use(plugin, pluginOptions)
})
it('installs plugin into local Vue regardless of previous install in Vue', () => {
let installCount = 0
class Plugin {}
Plugin.install = function(_Vue) {
if (_Vue._installedPlugins) {
expect(_Vue._installedPlugins.indexOf(Plugin)).toEqual(-1)
}
installCount++
}
Vue.use(Plugin)
const localVue = createLocalVue()
localVue.use(Plugin)
if (localVue._installedPlugins) {
expect(localVue._installedPlugins.indexOf(Plugin)).toEqual(0)
}
expect(installCount).toEqual(2)
})
itSkipIf(
vueVersion < 2.4,
'Calls `errorHandler` when an error is thrown synchronously',
() => {
const errorHandler = jest.fn()
const localVue = createLocalVue({
errorHandler
})
try {
mountingMethod(ComponentWithSyncError, { localVue })
} catch (e) {
// asserting arguments is a bit difficult due to multiple Vue version support. Please see https://vuejs.org/v2/api/#errorHandler for more details
expect(errorHandler).toHaveBeenCalledTimes(1)
}
}
)
itSkipIf(
vueVersion < 2.6,
'Exception suppresed in `errorHandler` is not logged to console.error',
async () => {
const component = Vue.component('TestComponent', {
template: '<button id="btn" @click="clickHandler">Click me</button>',
methods: {
clickHandler() {
throw new Error('Should not be logged')
}
}
})
const errorHandler = jest.fn()
const localVue = createLocalVue({
errorHandler
})
const wrapper = mountingMethod(component, { localVue })
await wrapper.vm.$nextTick()
const { error } = global.console
const spy = jest.spyOn(global.console, 'error')
await wrapper.trigger('click')
global.console.error = error
expect(spy).not.toHaveBeenCalled()
}
)
itSkipIf(
vueVersion < 2.6,
'Exception raised in `errorHandler` bubbles up',
async () => {
const component = Vue.component('TestComponent', {
template: '<button id="btn" @click="clickHandler">Click me</button>',
methods: {
clickHandler() {
throw new Error()
}
}
})
const errorHandler = (err, vm, info) => {
if (err) {
throw new Error('An error that should log')
}
}
const localVue = createLocalVue({
errorHandler
})
const wrapper = mountingMethod(component, { localVue })
await wrapper.vm.$nextTick()
const { error } = global.console
const spy = jest.spyOn(global.console, 'error')
await wrapper.trigger('click')
global.console.error = error
expect(spy).toHaveBeenCalledWith(
'[Vue warn]: Error in config.errorHandler: "Error: An error that should log"'
)
}
)
itSkipIf(
process.env.TEST_ENV === 'browser' || vueVersion < 2.6,
'Calls `errorHandler` when an error is thrown asynchronously',
async () => {
const errorHandler = jest.fn()
const localVue = createLocalVue({
errorHandler
})
try {
mountingMethod(ComponentWithAsyncError, { localVue })
await Vue.nextTick()
await setTimeout()
} finally {
// asserting arguments is a bit difficult due to multiple Vue version support. Please see https://vuejs.org/v2/api/#errorHandler for more details
expect(errorHandler).toHaveBeenCalledTimes(1)
}
}
)
})