forked from vuejs/vue-test-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetChecked.spec.js
184 lines (154 loc) · 5.12 KB
/
setChecked.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
import ComponentWithInput from '~resources/components/component-with-input.vue'
import { describeWithShallowAndMount } from '~resources/utils'
import Vue from 'vue'
describeWithShallowAndMount('setChecked', mountingMethod => {
it('sets element checked true with no option passed', () => {
const wrapper = mountingMethod(ComponentWithInput)
const input = wrapper.find('input[type="checkbox"]')
input.setChecked()
expect(input.element.checked).to.equal(true)
})
it('sets element checked equal to param passed', () => {
const wrapper = mountingMethod(ComponentWithInput)
const input = wrapper.find('input[type="checkbox"]')
input.setChecked(true)
expect(input.element.checked).to.equal(true)
input.setChecked(false)
expect(input.element.checked).to.equal(false)
})
it('updates dom with checkbox v-model', async () => {
const wrapper = mountingMethod(ComponentWithInput)
const input = wrapper.find('input[type="checkbox"]')
input.setChecked()
await Vue.nextTick()
expect(wrapper.text()).to.contain('checkbox checked')
input.setChecked(false)
await Vue.nextTick()
expect(wrapper.text()).to.not.contain('checkbox checked')
})
it('changes state the right amount of times with checkbox v-model', async () => {
const wrapper = mountingMethod(ComponentWithInput)
const input = wrapper.find('input[type="checkbox"]')
input.setChecked()
await Vue.nextTick()
input.setChecked(false)
await Vue.nextTick()
input.setChecked(false)
await Vue.nextTick()
input.setChecked(true)
await Vue.nextTick()
input.setChecked(false)
await Vue.nextTick()
input.setChecked(false)
await Vue.nextTick()
expect(wrapper.find('.counter').text()).to.equal('4')
})
it('triggers a change event when called on a checkbox', () => {
const listener = sinon.spy()
mountingMethod({
// For compatibility with earlier versions of Vue that use the `click`
// event for updating `v-model`.
template: `
<input
type="checkbox"
@change="listener"
@click="listener"
>
`,
methods: { listener }
}).setChecked()
expect(listener).to.have.been.called
})
it('does not trigger a change event if the checkbox is already checked', () => {
const listener = sinon.spy()
mountingMethod({
template: `
<input
type="checkbox"
checked
@change="listener"
@click="listener"
>
`,
methods: { listener }
}).setChecked()
expect(listener).not.to.have.been.called
})
it('updates dom with radio v-model', async () => {
const wrapper = mountingMethod(ComponentWithInput)
wrapper.find('#radioBar').setChecked()
await Vue.nextTick()
expect(wrapper.text()).to.contain('radioBarResult')
wrapper.find('#radioFoo').setChecked()
await Vue.nextTick()
expect(wrapper.text()).to.contain('radioFooResult')
})
it('changes state the right amount of times with radio v-model', async () => {
const wrapper = mountingMethod(ComponentWithInput)
const radioBar = wrapper.find('#radioBar')
const radioFoo = wrapper.find('#radioFoo')
radioBar.setChecked()
await Vue.nextTick()
radioBar.setChecked()
await Vue.nextTick()
radioFoo.setChecked()
await Vue.nextTick()
radioBar.setChecked()
await Vue.nextTick()
radioBar.setChecked()
await Vue.nextTick()
radioFoo.setChecked()
await Vue.nextTick()
radioFoo.setChecked()
await Vue.nextTick()
expect(wrapper.find('.counter').text()).to.equal('4')
})
it('triggers a change event when called on a radio button', () => {
const listener = sinon.spy()
mountingMethod({
template: `
<input
type="radio"
@change="listener"
@click="listener"
>
`,
methods: { listener }
}).setChecked()
expect(listener).to.have.been.called
})
it('does not trigger a change event if the radio button is already checked', () => {
const listener = sinon.spy()
mountingMethod({
template: `
<input
type="radio"
checked
@change="listener"
@click="listener"
>
`,
methods: { listener }
}).setChecked()
expect(listener).not.to.have.been.called
})
it('throws error if checked param is not boolean', () => {
const message = 'wrapper.setChecked() must be passed a boolean'
const wrapper = mountingMethod(ComponentWithInput)
const input = wrapper.find('input[type="checkbox"]')
const fn = () => input.setChecked('asd')
expect(fn)
.to.throw()
.with.property('message', '[vue-test-utils]: ' + message)
})
it('throws error if checked param is false on radio element', () => {
const message =
'wrapper.setChecked() cannot be called with parameter false on a <input type="radio" /> element.'
const wrapper = mountingMethod(ComponentWithInput)
const input = wrapper.find('#radioFoo')
const fn = () => input.setChecked(false)
expect(fn)
.to.throw()
.with.property('message', '[vue-test-utils]: ' + message)
})
})