|
|
|
import Vue from 'vue'
|
|
|
|
import { isIE9, isAndroid } from 'core/util/env'
|
|
|
|
|
|
|
|
describe('Directive v-model text', () => {
|
|
|
|
it('should update value both ways', done => {
|
|
|
|
const vm = new Vue({
|
|
|
|
data: {
|
|
|
|
test: 'b'
|
|
|
|
},
|
|
|
|
template: '<input v-model="test">'
|
|
|
|
}).$mount()
|
|
|
|
expect(vm.$el.value).toBe('b')
|
|
|
|
vm.test = 'a'
|
|
|
|
waitForUpdate(() => {
|
|
|
|
expect(vm.$el.value).toBe('a')
|
|
|
|
vm.$el.value = 'c'
|
|
|
|
triggerEvent(vm.$el, 'input')
|
|
|
|
expect(vm.test).toBe('c')
|
|
|
|
}).then(done)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('.lazy modifier', () => {
|
|
|
|
const vm = new Vue({
|
|
|
|
data: {
|
|
|
|
test: 'b'
|
|
|
|
},
|
|
|
|
template: '<input v-model.lazy="test">'
|
|
|
|
}).$mount()
|
|
|
|
expect(vm.$el.value).toBe('b')
|
|
|
|
expect(vm.test).toBe('b')
|
|
|
|
vm.$el.value = 'c'
|
|
|
|
triggerEvent(vm.$el, 'input')
|
|
|
|
expect(vm.test).toBe('b')
|
|
|
|
triggerEvent(vm.$el, 'change')
|
|
|
|
expect(vm.test).toBe('c')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('.number modifier', () => {
|
|
|
|
const vm = new Vue({
|
|
|
|
data: {
|
|
|
|
test: 1
|
|
|
|
},
|
|
|
|
template: '<input v-model.number="test">'
|
|
|
|
}).$mount()
|
|
|
|
expect(vm.test).toBe(1)
|
|
|
|
vm.$el.value = '2'
|
|
|
|
triggerEvent(vm.$el, 'input')
|
|
|
|
// should let strings pass through
|
|
|
|
vm.$el.value = 'f'
|
|
|
|
triggerEvent(vm.$el, 'input')
|
|
|
|
expect(vm.test).toBe('f')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('.trim modifier', () => {
|
|
|
|
const vm = new Vue({
|
|
|
|
data: {
|
|
|
|
test: 'hi'
|
|
|
|
},
|
|
|
|
template: '<input v-model.trim="test">'
|
|
|
|
}).$mount()
|
|
|
|
expect(vm.test).toBe('hi')
|
|
|
|
vm.$el.value = ' what '
|
|
|
|
triggerEvent(vm.$el, 'input')
|
|
|
|
expect(vm.test).toBe('what')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('.number focus and typing', (done) => {
|
|
|
|
const vm = new Vue({
|
|
|
|
data: {
|
|
|
|
test: 0,
|
|
|
|
update: 0
|
|
|
|
},
|
|
|
|
template:
|
|
|
|
'<div>' +
|
|
|
|
'<input ref="input" v-model="test" type="number">{{ update }}' +
|
|
|
|
'<input ref="blur"/>' +
|
|
|
|
'</div>'
|
|
|
|
}).$mount()
|
|
|
|
document.body.appendChild(vm.$el)
|
|
|
|
vm.$refs.input.focus()
|
|
|
|
expect(vm.test).toBe(0)
|
|
|
|
vm.$refs.input.value = '1.0'
|
|
|
|
triggerEvent(vm.$refs.input, 'input')
|
|
|
|
expect(vm.test).toBe(1)
|
|
|
|
vm.update++
|
|
|
|
waitForUpdate(() => {
|
|
|
|
expect(vm.$refs.input.value).toBe('1.0')
|
|
|
|
vm.$refs.blur.focus()
|
|
|
|
vm.update++
|
|
|
|
}).then(() => {
|
|
|
|
expect(vm.$refs.input.value).toBe('1')
|
|
|
|
}).then(done)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('.trim focus and typing', (done) => {
|
|
|
|
const vm = new Vue({
|
|
|
|
data: {
|
|
|
|
test: 'abc',
|
|
|
|
update: 0
|
|
|
|
},
|
|
|
|
template:
|
|
|
|
'<div>' +
|
|
|
|
'<input ref="input" v-model.trim="test" type="text">{{ update }}' +
|
|
|
|
'<input ref="blur"/>' +
|
|
|
|
'</div>'
|
|
|
|
}).$mount()
|
|
|
|
document.body.appendChild(vm.$el)
|
|
|
|
vm.$refs.input.focus()
|
|
|
|
vm.$refs.input.value = ' abc '
|
|
|
|
triggerEvent(vm.$refs.input, 'input')
|
|
|
|
expect(vm.test).toBe('abc')
|
|
|
|
vm.update++
|
|
|
|
waitForUpdate(() => {
|
|
|
|
expect(vm.$refs.input.value).toBe(' abc ')
|
|
|
|
vm.$refs.blur.focus()
|
|
|
|
vm.update++
|
|
|
|
}).then(() => {
|
|
|
|
expect(vm.$refs.input.value).toBe('abc')
|
|
|
|
}).then(done)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('multiple inputs', (done) => {
|
|
|
|
const spy = jasmine.createSpy()
|
|
|
|
const vm = new Vue({
|
|
|
|
data: {
|
|
|
|
selections: [[1, 2, 3], [4, 5]],
|
|
|
|
inputList: [
|
|
|
|
{
|
|
|
|
name: 'questionA',
|
|
|
|
data: ['a', 'b', 'c']
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'questionB',
|
|
|
|
data: ['1', '2']
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
selections: spy
|
|
|
|
},
|
|
|
|
template:
|
|
|
|
'<div>' +
|
|
|
|
'<div v-for="(inputGroup, idx) in inputList">' +
|
|
|
|
'<div>' +
|
|
|
|
'<span v-for="(item, index) in inputGroup.data">' +
|
|
|
|
'<input v-bind:name="item" type="text" v-model.number="selections[idx][index]" v-bind:id="idx+\'-\'+index"/>' +
|
|
|
|
'<label>{{item}}</label>' +
|
|
|
|
'</span>' +
|
|
|
|
'</div>' +
|
|
|
|
'</div>' +
|
|
|
|
'<span ref="rs">{{selections}}</span>' +
|
|
|
|
'</div>'
|
|
|
|
}).$mount()
|
|
|
|
var 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: '<input v-model="test">'
|
|
|
|
}).$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)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isAndroid) {
|
|
|
|
it('compositionevents', function (done) {
|
|
|
|
const vm = new Vue({
|
|
|
|
data: {
|
|
|
|
test: 'foo'
|
|
|
|
},
|
|
|
|
template: '<input v-model="test">'
|
|
|
|
}).$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 inline value attribute', () => {
|
|
|
|
const vm = new Vue({
|
|
|
|
data: {
|
|
|
|
test: 'foo'
|
|
|
|
},
|
|
|
|
template: '<input v-model="test" value="bar">'
|
|
|
|
}).$mount()
|
|
|
|
expect(vm.test).toBe('foo')
|
|
|
|
expect(vm.$el.value).toBe('foo')
|
|
|
|
expect('inline value attributes will be ignored').toHaveBeenWarned()
|
|
|
|
})
|
|
|
|
|
|
|
|
it('warn textarea inline content', function () {
|
|
|
|
const vm = new Vue({
|
|
|
|
data: {
|
|
|
|
test: 'foo'
|
|
|
|
},
|
|
|
|
template: '<textarea v-model="test">bar</textarea>'
|
|
|
|
}).$mount()
|
|
|
|
expect(vm.test).toBe('foo')
|
|
|
|
expect(vm.$el.value).toBe('foo')
|
|
|
|
expect('inline content inside <textarea> will be ignored').toHaveBeenWarned()
|
|
|
|
})
|
|
|
|
|
|
|
|
it('warn invalid tag', () => {
|
|
|
|
new Vue({
|
|
|
|
data: {
|
|
|
|
test: 'foo'
|
|
|
|
},
|
|
|
|
template: '<div v-model="test"></div>'
|
|
|
|
}).$mount()
|
|
|
|
expect('v-model is not supported on element type: <div>').toHaveBeenWarned()
|
|
|
|
})
|
|
|
|
|
|
|
|
// #3468
|
|
|
|
it('should have higher priority than user v-on events', () => {
|
|
|
|
const spy = jasmine.createSpy()
|
|
|
|
const vm = new Vue({
|
|
|
|
data: {
|
|
|
|
a: 'a'
|
|
|
|
},
|
|
|
|
template: '<input v-model="a" @input="onInput">',
|
|
|
|
methods: {
|
|
|
|
onInput (e) {
|
|
|
|
spy(e.target.value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}).$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: `
|
|
|
|
<div>
|
|
|
|
<div v-for="str in strings">
|
|
|
|
<input v-model="str">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`
|
|
|
|
}).$mount()
|
|
|
|
expect('You are binding v-model directly to a v-for iteration alias').toHaveBeenWarned()
|
|
|
|
})
|
|
|
|
})
|