'
}).$mount()
const inputs = vm.$el.getElementsByTagName('input')
inputs[1].value = 'test'
triggerEvent(inputs[1], 'input')
waitForUpdate(() => {
expect(spy).toHaveBeenCalled()
expect(vm.selections).toEqual([[1, 'test', 3], [4, 5]])
}).then(done)
})
if (isIE9) {
it('IE9 selectionchange', done => {
const vm = new Vue({
data: {
test: 'foo'
},
template: ''
}).$mount()
const input = vm.$el
input.value = 'bar'
document.body.appendChild(input)
input.focus()
triggerEvent(input, 'selectionchange')
waitForUpdate(() => {
expect(vm.test).toBe('bar')
input.value = 'a'
triggerEvent(input, 'selectionchange')
expect(vm.test).toBe('a')
}).then(done)
})
}
it('compositionevents', function (done) {
const vm = new Vue({
data: {
test: 'foo'
},
template: ''
}).$mount()
const input = vm.$el
triggerEvent(input, 'compositionstart')
input.value = 'baz'
// input before composition unlock should not call set
triggerEvent(input, 'input')
expect(vm.test).toBe('foo')
// after composition unlock it should work
triggerEvent(input, 'compositionend')
triggerEvent(input, 'input')
expect(vm.test).toBe('baz')
done()
})
it('warn invalid tag', () => {
new Vue({
data: {
test: 'foo'
},
template: ''
}).$mount()
expect('
: v-model is not supported on this element type').toHaveBeenWarned()
})
// #3468
it('should have higher priority than user v-on events', () => {
const spy = jasmine.createSpy()
const vm = new Vue({
data: {
a: 'a'
},
template: '',
methods: {
onInput (e) {
spy(this.a)
}
}
}).$mount()
vm.$el.value = 'b'
triggerEvent(vm.$el, 'input')
expect(spy).toHaveBeenCalledWith('b')
})
it('warn binding to v-for alias', () => {
new Vue({
data: {
strings: ['hi']
},
template: `
`
}).$mount()
expect('You are binding v-model directly to a v-for iteration alias').toHaveBeenWarned()
})
it('warn if v-model and v-bind:value conflict', () => {
new Vue({
data: {
test: 'foo'
},
template: ''
}).$mount()
expect('v-bind:value="test" conflicts with v-model').toHaveBeenWarned()
})
it('warn if v-model and :value conflict', () => {
new Vue({
data: {
test: 'foo'
},
template: ''
}).$mount()
expect(':value="test" conflicts with v-model').toHaveBeenWarned()
})
it('should not warn on radio, checkbox, or custom component', () => {
new Vue({
data: { test: '' },
components: {
foo: {
props: ['model', 'value'],
model: { prop: 'model', event: 'change' },
template: ``
}
},
template: `
`
}).$mount()
expect('conflicts with v-model').not.toHaveBeenWarned()
})
it('should not warn on input with dynamic type binding', () => {
new Vue({
data: {
type: 'checkbox',
test: 'foo'
},
template: ''
}).$mount()
expect('conflicts with v-model').not.toHaveBeenWarned()
})
if (!isAndroid) {
it('does not trigger extra input events with single compositionend', () => {
const spy = jasmine.createSpy()
const vm = new Vue({
data: {
a: 'a'
},
template: '',
methods: {
onInput (e) {
spy(e.target.value)
}
}
}).$mount()
expect(spy.calls.count()).toBe(0)
vm.$el.value = 'b'
triggerEvent(vm.$el, 'input')
expect(spy.calls.count()).toBe(1)
triggerEvent(vm.$el, 'compositionend')
expect(spy.calls.count()).toBe(1)
})
it('triggers extra input on compositionstart + end', () => {
const spy = jasmine.createSpy()
const vm = new Vue({
data: {
a: 'a'
},
template: '',
methods: {
onInput (e) {
spy(e.target.value)
}
}
}).$mount()
expect(spy.calls.count()).toBe(0)
vm.$el.value = 'b'
triggerEvent(vm.$el, 'input')
expect(spy.calls.count()).toBe(1)
triggerEvent(vm.$el, 'compositionstart')
triggerEvent(vm.$el, 'compositionend')
expect(spy.calls.count()).toBe(2)
})
// #4392
it('should not update value with modifiers when in focus if post-conversion values are the same', done => {
const vm = new Vue({
data: {
a: 1,
foo: false
},
template: '
{{ foo }}
'
}).$mount()
document.body.appendChild(vm.$el)
vm.$refs.input.focus()
vm.$refs.input.value = '1.000'
vm.foo = true
waitForUpdate(() => {
expect(vm.$refs.input.value).toBe('1.000')
}).then(done)
})
// #6552
// This was original introduced due to the microtask between DOM events issue
// but fixed after switching to MessageChannel.
it('should not block input when another input listener with modifier is used', done => {
const vm = new Vue({
data: {
a: 'a',
foo: false
},
template: `
{{ a }}
foo
`,
methods: {
onInput (e) {
this.foo = true
}
}
}).$mount()
document.body.appendChild(vm.$el)
vm.$refs.input.focus()
vm.$refs.input.value = 'b'
triggerEvent(vm.$refs.input, 'input')
// not using wait for update here because there will be two update cycles
// one caused by onInput in the first listener
setTimeout(() => {
expect(vm.a).toBe('b')
expect(vm.$refs.input.value).toBe('b')
done()
}, 16)
})
it('should create and make reactive non-existent properties', done => {
const vm = new Vue({
data: {
foo: {}
},
template: ''
}).$mount()
expect(vm.$el.value).toBe('')
vm.$el.value = 'a'
triggerEvent(vm.$el, 'input')
expect(vm.foo.bar).toBe('a')
vm.foo.bar = 'b'
waitForUpdate(() => {
expect(vm.$el.value).toBe('b')
vm.foo = {}
}).then(() => {
expect(vm.$el.value).toBe('')
}).then(done)
})
}
// #7138
if (isIE && !isIE9) {
it('should not fire input on initial render of textarea with placeholder in IE10/11', done => {
const el = document.createElement('div')
document.body.appendChild(el)
const vm = new Vue({
el,
data: { foo: null },
template: ``
})
setTimeout(() => {
expect(vm.foo).toBe(null)
done()
}, 17)
})
}
})