import Vue from 'vue'
describe('Directive v-model checkbox', () => {
it('should work', done => {
const vm = new Vue({
data: {
test: true
},
template: ''
}).$mount()
document.body.appendChild(vm.$el)
expect(vm.$el.checked).toBe(true)
vm.test = false
waitForUpdate(function () {
expect(vm.$el.checked).toBe(false)
expect(vm.test).toBe(false)
vm.$el.click()
expect(vm.$el.checked).toBe(true)
expect(vm.test).toBe(true)
}).then(() => {
document.body.removeChild(vm.$el)
}).then(done)
})
it('should respect value bindings', done => {
const vm = new Vue({
data: {
test: 1,
a: 1,
b: 2
},
template: ''
}).$mount()
document.body.appendChild(vm.$el)
expect(vm.$el.checked).toBe(true)
vm.$el.click()
expect(vm.$el.checked).toBe(false)
expect(vm.test).toBe(2)
vm.$el.click()
expect(vm.$el.checked).toBe(true)
expect(vm.test).toBe(1)
vm.test = 2
waitForUpdate(() => {
expect(vm.$el.checked).toBe(false)
vm.test = 1
}).then(() => {
expect(vm.$el.checked).toBe(true)
document.body.removeChild(vm.$el)
}).then(done)
})
it('bind to Array value', done => {
const vm = new Vue({
data: {
test: ['1']
},
template: `
`
}).$mount()
document.body.appendChild(vm.$el)
expect(vm.$el.children[0].checked).toBe(true)
expect(vm.$el.children[1].checked).toBe(false)
vm.$el.children[0].click()
expect(vm.test.length).toBe(0)
vm.$el.children[1].click()
expect(vm.test).toEqual(['2'])
vm.$el.children[0].click()
expect(vm.test).toEqual(['2', '1'])
vm.test = ['1']
waitForUpdate(() => {
expect(vm.$el.children[0].checked).toBe(true)
expect(vm.$el.children[1].checked).toBe(false)
}).then(done)
})
it('bind to Array value with value bindings', done => {
const vm = new Vue({
data: {
test: [1]
},
template: `
`
}).$mount()
document.body.appendChild(vm.$el)
expect(vm.$el.children[0].checked).toBe(true)
expect(vm.$el.children[1].checked).toBe(false)
vm.$el.children[0].click()
expect(vm.test.length).toBe(0)
vm.$el.children[1].click()
expect(vm.test).toEqual([2])
vm.$el.children[0].click()
expect(vm.test).toEqual([2, 1])
vm.test = [1]
waitForUpdate(() => {
expect(vm.$el.children[0].checked).toBe(true)
expect(vm.$el.children[1].checked).toBe(false)
}).then(done)
})
it('warn inline checked', () => {
const vm = new Vue({
template: ``,
data: {
test: false
}
}).$mount()
expect(vm.$el.checked).toBe(false)
expect('inline checked attributes will be ignored when using v-model').toHaveBeenWarned()
})
})