forked from vuejs/vue-test-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetChecked.spec.js
98 lines (75 loc) · 3.41 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
import ComponentWithInput from '~resources/components/component-with-input.vue'
import { describeWithShallowAndMount } from '~resources/utils'
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('calls trigger with change event', () => {
const wrapper = mountingMethod(ComponentWithInput)
const input = wrapper.find('input[type="checkbox"]')
sinon.spy(input, 'trigger')
input.setChecked()
expect(input.trigger.called).to.equal(true)
expect(input.trigger.args[0][0]).to.equal('change')
})
it('updates dom with checkbox v-model', () => {
const wrapper = mountingMethod(ComponentWithInput)
const input = wrapper.find('input[type="checkbox"]')
input.setChecked()
expect(wrapper.text()).to.contain('checkbox checked')
input.setChecked(false)
expect(wrapper.text()).to.not.contain('checkbox checked')
})
it('updates dom with radio v-model', () => {
const wrapper = mountingMethod(ComponentWithInput)
wrapper.find('#radioBar').setChecked()
expect(wrapper.text()).to.contain('radioBarResult')
wrapper.find('#radioFoo').setChecked()
expect(wrapper.text()).to.contain('radioFooResult')
})
it('throws error if checked param is not boolean', () => {
const message = 'wrapper.setChecked() must be passed a boolean'
shouldThrowErrorOnElement('input[type="checkbox"]', message, 'asd')
})
it('throws error if checked param is false on radio element', () => {
const message = 'wrapper.setChecked() cannot be called with parameter false on radio'
shouldThrowErrorOnElement('#radioFoo', message, false)
})
it('throws error if wrapper does not contain element', () => {
const wrapper = mountingMethod({ render: (h) => h('div') })
const div = wrapper.find('div')
div.element = null
const fn = () => div.setChecked()
const message = '[vue-test-utils]: cannot call wrapper.setChecked() on a wrapper without an element'
expect(fn).to.throw().with.property('message', message)
})
it('throws error if element is select', () => {
const message = 'wrapper.setChecked() cannot be called on select'
shouldThrowErrorOnElement('select', message)
})
it('throws error if element is text like', () => {
const message = 'wrapper.setChecked() cannot be called on "text" inputs. Use wrapper.setValue() instead'
shouldThrowErrorOnElement('input[type="text"]', message)
})
it('throws error if element is not valid', () => {
const message = 'wrapper.setChecked() cannot be called on this element'
shouldThrowErrorOnElement('#label-el', message)
})
function shouldThrowErrorOnElement (selector, message, value) {
const wrapper = mountingMethod(ComponentWithInput)
const input = wrapper.find(selector)
const fn = () => input.setChecked(value)
expect(fn).to.throw().with.property('message', '[vue-test-utils]: ' + message)
}
})