| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081 |
- import Vue from 'vue'
- import { supportsPassive } from 'core/util/env'
- describe('Directive v-on', () => {
- let vm, spy, el
- beforeEach(() => {
- vm = null
- spy = jasmine.createSpy()
- el = document.createElement('div')
- document.body.appendChild(el)
- })
- afterEach(() => {
- if (vm) {
- document.body.removeChild(vm.$el)
- }
- })
- it('should bind event to a method', () => {
- vm = new Vue({
- el,
- template: '<div v-on:click="foo"></div>',
- methods: { foo: spy }
- })
- triggerEvent(vm.$el, 'click')
- expect(spy.calls.count()).toBe(1)
- const args = spy.calls.allArgs()
- const event = args[0] && args[0][0] || {}
- expect(event.type).toBe('click')
- })
- it('should bind event to a inline statement', () => {
- vm = new Vue({
- el,
- template: '<div v-on:click="foo(1,2,3,$event)"></div>',
- methods: { foo: spy }
- })
- triggerEvent(vm.$el, 'click')
- expect(spy.calls.count()).toBe(1)
- const args = spy.calls.allArgs()
- const firstArgs = args[0]
- expect(firstArgs.length).toBe(4)
- expect(firstArgs[0]).toBe(1)
- expect(firstArgs[1]).toBe(2)
- expect(firstArgs[2]).toBe(3)
- expect(firstArgs[3].type).toBe('click')
- })
- it('should support inline function expression', () => {
- const spy = jasmine.createSpy()
- vm = new Vue({
- el,
- template: `<div class="test" @click="function (e) { log(e.target.className) }"></div>`,
- methods: {
- log: spy
- }
- }).$mount()
- triggerEvent(vm.$el, 'click')
- expect(spy).toHaveBeenCalledWith('test')
- })
- it('should support shorthand', () => {
- vm = new Vue({
- el,
- template: '<a href="#test" @click.prevent="foo"></a>',
- methods: { foo: spy }
- })
- triggerEvent(vm.$el, 'click')
- expect(spy.calls.count()).toBe(1)
- })
- it('should support stop propagation', () => {
- vm = new Vue({
- el,
- template: `
- <div @click.stop="foo"></div>
- `,
- methods: { foo: spy }
- })
- const hash = window.location.hash
- triggerEvent(vm.$el, 'click')
- expect(window.location.hash).toBe(hash)
- })
- it('should support prevent default', () => {
- vm = new Vue({
- el,
- template: `
- <input type="checkbox" ref="input" @click.prevent="foo">
- `,
- methods: {
- foo ($event) {
- spy($event.defaultPrevented)
- }
- }
- })
- vm.$refs.input.checked = false
- triggerEvent(vm.$refs.input, 'click')
- expect(spy).toHaveBeenCalledWith(true)
- })
- it('should support capture', () => {
- const callOrder = []
- vm = new Vue({
- el,
- template: `
- <div @click.capture="foo">
- <div @click="bar"></div>
- </div>
- `,
- methods: {
- foo () { callOrder.push(1) },
- bar () { callOrder.push(2) }
- }
- })
- triggerEvent(vm.$el.firstChild, 'click')
- expect(callOrder.toString()).toBe('1,2')
- })
- it('should support once', () => {
- vm = new Vue({
- el,
- template: `
- <div @click.once="foo">
- </div>
- `,
- methods: { foo: spy }
- })
- triggerEvent(vm.$el, 'click')
- expect(spy.calls.count()).toBe(1)
- triggerEvent(vm.$el, 'click')
- expect(spy.calls.count()).toBe(1) // should no longer trigger
- })
- // #4655
- it('should handle .once on multiple elements properly', () => {
- vm = new Vue({
- el,
- template: `
- <div>
- <button ref="one" @click.once="foo">one</button>
- <button ref="two" @click.once="foo">two</button>
- </div>
- `,
- methods: { foo: spy }
- })
- triggerEvent(vm.$refs.one, 'click')
- expect(spy.calls.count()).toBe(1)
- triggerEvent(vm.$refs.one, 'click')
- expect(spy.calls.count()).toBe(1)
- triggerEvent(vm.$refs.two, 'click')
- expect(spy.calls.count()).toBe(2)
- triggerEvent(vm.$refs.one, 'click')
- triggerEvent(vm.$refs.two, 'click')
- expect(spy.calls.count()).toBe(2)
- })
- it('should support capture and once', () => {
- const callOrder = []
- vm = new Vue({
- el,
- template: `
- <div @click.capture.once="foo">
- <div @click="bar"></div>
- </div>
- `,
- methods: {
- foo () { callOrder.push(1) },
- bar () { callOrder.push(2) }
- }
- })
- triggerEvent(vm.$el.firstChild, 'click')
- expect(callOrder.toString()).toBe('1,2')
- triggerEvent(vm.$el.firstChild, 'click')
- expect(callOrder.toString()).toBe('1,2,2')
- })
- // #4846
- it('should support once and other modifiers', () => {
- vm = new Vue({
- el,
- template: `<div @click.once.self="foo"><span/></div>`,
- methods: { foo: spy }
- })
- triggerEvent(vm.$el.firstChild, 'click')
- expect(spy).not.toHaveBeenCalled()
- triggerEvent(vm.$el, 'click')
- expect(spy).toHaveBeenCalled()
- triggerEvent(vm.$el, 'click')
- expect(spy.calls.count()).toBe(1)
- })
- it('should support keyCode', () => {
- vm = new Vue({
- el,
- template: `<input @keyup.enter="foo">`,
- methods: { foo: spy }
- })
- triggerEvent(vm.$el, 'keyup', e => {
- e.keyCode = 13
- })
- expect(spy).toHaveBeenCalled()
- })
- it('should support automatic key name inference', () => {
- vm = new Vue({
- el,
- template: `<input @keyup.arrow-right="foo">`,
- methods: { foo: spy }
- })
- triggerEvent(vm.$el, 'keyup', e => {
- e.key = 'ArrowRight'
- })
- expect(spy).toHaveBeenCalled()
- })
- // ctrl, shift, alt, meta
- it('should support system modifers', () => {
- vm = new Vue({
- el,
- template: `
- <div>
- <input ref="ctrl" @keyup.ctrl="foo">
- <input ref="shift" @keyup.shift="foo">
- <input ref="alt" @keyup.alt="foo">
- <input ref="meta" @keyup.meta="foo">
- </div>
- `,
- methods: { foo: spy }
- })
- triggerEvent(vm.$refs.ctrl, 'keyup')
- expect(spy.calls.count()).toBe(0)
- triggerEvent(vm.$refs.ctrl, 'keyup', e => { e.ctrlKey = true })
- expect(spy.calls.count()).toBe(1)
- triggerEvent(vm.$refs.shift, 'keyup')
- expect(spy.calls.count()).toBe(1)
- triggerEvent(vm.$refs.shift, 'keyup', e => { e.shiftKey = true })
- expect(spy.calls.count()).toBe(2)
- triggerEvent(vm.$refs.alt, 'keyup')
- expect(spy.calls.count()).toBe(2)
- triggerEvent(vm.$refs.alt, 'keyup', e => { e.altKey = true })
- expect(spy.calls.count()).toBe(3)
- triggerEvent(vm.$refs.meta, 'keyup')
- expect(spy.calls.count()).toBe(3)
- triggerEvent(vm.$refs.meta, 'keyup', e => { e.metaKey = true })
- expect(spy.calls.count()).toBe(4)
- })
- it('should support exact modifier', () => {
- vm = new Vue({
- el,
- template: `
- <div>
- <input ref="ctrl" @keyup.exact="foo">
- </div>
- `,
- methods: { foo: spy }
- })
- triggerEvent(vm.$refs.ctrl, 'keyup')
- expect(spy.calls.count()).toBe(1)
- triggerEvent(vm.$refs.ctrl, 'keyup', e => {
- e.ctrlKey = true
- })
- expect(spy.calls.count()).toBe(1)
- // should not trigger if has other system modifiers
- triggerEvent(vm.$refs.ctrl, 'keyup', e => {
- e.ctrlKey = true
- e.altKey = true
- })
- expect(spy.calls.count()).toBe(1)
- })
- it('should support system modifiers with exact', () => {
- vm = new Vue({
- el,
- template: `
- <div>
- <input ref="ctrl" @keyup.ctrl.exact="foo">
- </div>
- `,
- methods: { foo: spy }
- })
- triggerEvent(vm.$refs.ctrl, 'keyup')
- expect(spy.calls.count()).toBe(0)
- triggerEvent(vm.$refs.ctrl, 'keyup', e => {
- e.ctrlKey = true
- })
- expect(spy.calls.count()).toBe(1)
- // should not trigger if has other system modifiers
- triggerEvent(vm.$refs.ctrl, 'keyup', e => {
- e.ctrlKey = true
- e.altKey = true
- })
- expect(spy.calls.count()).toBe(1)
- })
- it('should support number keyCode', () => {
- vm = new Vue({
- el,
- template: `<input @keyup.13="foo">`,
- methods: { foo: spy }
- })
- triggerEvent(vm.$el, 'keyup', e => {
- e.keyCode = 13
- })
- expect(spy).toHaveBeenCalled()
- })
- it('should support mouse modifier', () => {
- const left = 0
- const middle = 1
- const right = 2
- const spyLeft = jasmine.createSpy()
- const spyMiddle = jasmine.createSpy()
- const spyRight = jasmine.createSpy()
- vm = new Vue({
- el,
- template: `
- <div>
- <div ref="left" @mousedown.left="foo">left</div>
- <div ref="right" @mousedown.right="foo1">right</div>
- <div ref="middle" @mousedown.middle="foo2">right</div>
- </div>
- `,
- methods: {
- foo: spyLeft,
- foo1: spyRight,
- foo2: spyMiddle
- }
- })
- triggerEvent(vm.$refs.left, 'mousedown', e => { e.button = right })
- triggerEvent(vm.$refs.left, 'mousedown', e => { e.button = middle })
- expect(spyLeft).not.toHaveBeenCalled()
- triggerEvent(vm.$refs.left, 'mousedown', e => { e.button = left })
- expect(spyLeft).toHaveBeenCalled()
- triggerEvent(vm.$refs.right, 'mousedown', e => { e.button = left })
- triggerEvent(vm.$refs.right, 'mousedown', e => { e.button = middle })
- expect(spyRight).not.toHaveBeenCalled()
- triggerEvent(vm.$refs.right, 'mousedown', e => { e.button = right })
- expect(spyRight).toHaveBeenCalled()
- triggerEvent(vm.$refs.middle, 'mousedown', e => { e.button = left })
- triggerEvent(vm.$refs.middle, 'mousedown', e => { e.button = right })
- expect(spyMiddle).not.toHaveBeenCalled()
- triggerEvent(vm.$refs.middle, 'mousedown', e => { e.button = middle })
- expect(spyMiddle).toHaveBeenCalled()
- })
- it('should support KeyboardEvent.key for built in aliases', () => {
- vm = new Vue({
- el,
- template: `
- <div>
- <input ref="enter" @keyup.enter="foo">
- <input ref="space" @keyup.space="foo">
- <input ref="esc" @keyup.esc="foo">
- <input ref="left" @keyup.left="foo">
- <input ref="delete" @keyup.delete="foo">
- </div>
- `,
- methods: { foo: spy }
- })
- triggerEvent(vm.$refs.enter, 'keyup', e => { e.key = 'Enter' })
- expect(spy.calls.count()).toBe(1)
- triggerEvent(vm.$refs.space, 'keyup', e => { e.key = ' ' })
- expect(spy.calls.count()).toBe(2)
- triggerEvent(vm.$refs.esc, 'keyup', e => { e.key = 'Escape' })
- expect(spy.calls.count()).toBe(3)
- triggerEvent(vm.$refs.left, 'keyup', e => { e.key = 'ArrowLeft' })
- expect(spy.calls.count()).toBe(4)
- triggerEvent(vm.$refs.delete, 'keyup', e => { e.key = 'Backspace' })
- expect(spy.calls.count()).toBe(5)
- triggerEvent(vm.$refs.delete, 'keyup', e => { e.key = 'Delete' })
- expect(spy.calls.count()).toBe(6)
- })
- it('should support custom keyCode', () => {
- Vue.config.keyCodes.test = 1
- vm = new Vue({
- el,
- template: `<input @keyup.test="foo">`,
- methods: { foo: spy }
- })
- triggerEvent(vm.$el, 'keyup', e => {
- e.keyCode = 1
- })
- expect(spy).toHaveBeenCalled()
- Vue.config.keyCodes = Object.create(null)
- })
- it('should override built-in keyCode', () => {
- Vue.config.keyCodes.up = [1, 87]
- vm = new Vue({
- el,
- template: `<input @keyup.up="foo" @keyup.down="foo">`,
- methods: { foo: spy }
- })
- triggerEvent(vm.$el, 'keyup', e => {
- e.keyCode = 87
- })
- expect(spy).toHaveBeenCalled()
- triggerEvent(vm.$el, 'keyup', e => {
- e.keyCode = 1
- })
- expect(spy).toHaveBeenCalledTimes(2)
- // should not affect built-in down keycode
- triggerEvent(vm.$el, 'keyup', e => {
- e.keyCode = 40
- })
- expect(spy).toHaveBeenCalledTimes(3)
- Vue.config.keyCodes = Object.create(null)
- })
- it('should bind to a child component', () => {
- vm = new Vue({
- el,
- template: '<bar @custom="foo"></bar>',
- methods: { foo: spy },
- components: {
- bar: {
- template: '<span>Hello</span>'
- }
- }
- })
- vm.$children[0].$emit('custom', 'foo', 'bar')
- expect(spy).toHaveBeenCalledWith('foo', 'bar')
- })
- it('should be able to bind native events for a child component', () => {
- vm = new Vue({
- el,
- template: '<bar @click.native="foo"></bar>',
- methods: { foo: spy },
- components: {
- bar: {
- template: '<span>Hello</span>'
- }
- }
- })
- vm.$children[0].$emit('click')
- expect(spy).not.toHaveBeenCalled()
- triggerEvent(vm.$children[0].$el, 'click')
- expect(spy).toHaveBeenCalled()
- })
- it('should throw a warning if native modifier is used on native HTML element', () => {
- vm = new Vue({
- el,
- template: `
- <button @click.native="foo"></button>
- `,
- methods: { foo: spy },
- })
- triggerEvent(vm.$el, 'click')
- expect(`The .native modifier for v-on is only valid on components but it was used on <button>.`).toHaveBeenWarned()
- expect(spy.calls.count()).toBe(0)
- })
- it('.once modifier should work with child components', () => {
- vm = new Vue({
- el,
- template: '<bar @custom.once="foo"></bar>',
- methods: { foo: spy },
- components: {
- bar: {
- template: '<span>Hello</span>'
- }
- }
- })
- vm.$children[0].$emit('custom')
- expect(spy.calls.count()).toBe(1)
- vm.$children[0].$emit('custom')
- expect(spy.calls.count()).toBe(1) // should not be called again
- })
- it('remove listener', done => {
- const spy2 = jasmine.createSpy('remove listener')
- vm = new Vue({
- el,
- methods: { foo: spy, bar: spy2 },
- data: {
- ok: true
- },
- render (h) {
- return this.ok
- ? h('input', { on: { click: this.foo }})
- : h('input', { on: { input: this.bar }})
- }
- })
- triggerEvent(vm.$el, 'click')
- expect(spy.calls.count()).toBe(1)
- expect(spy2.calls.count()).toBe(0)
- vm.ok = false
- waitForUpdate(() => {
- triggerEvent(vm.$el, 'click')
- expect(spy.calls.count()).toBe(1) // should no longer trigger
- triggerEvent(vm.$el, 'input')
- expect(spy2.calls.count()).toBe(1)
- }).then(done)
- })
- it('remove capturing listener', done => {
- const spy2 = jasmine.createSpy('remove listener')
- vm = new Vue({
- el,
- methods: { foo: spy, bar: spy2, stopped (ev) { ev.stopPropagation() } },
- data: {
- ok: true
- },
- render (h) {
- return this.ok
- ? h('div', { on: { '!click': this.foo }}, [h('div', { on: { click: this.stopped }})])
- : h('div', { on: { mouseOver: this.bar }}, [h('div')])
- }
- })
- triggerEvent(vm.$el.firstChild, 'click')
- expect(spy.calls.count()).toBe(1)
- expect(spy2.calls.count()).toBe(0)
- vm.ok = false
- waitForUpdate(() => {
- triggerEvent(vm.$el.firstChild, 'click')
- expect(spy.calls.count()).toBe(1) // should no longer trigger
- triggerEvent(vm.$el, 'mouseOver')
- expect(spy2.calls.count()).toBe(1)
- }).then(done)
- })
- it('remove once listener', done => {
- const spy2 = jasmine.createSpy('remove listener')
- vm = new Vue({
- el,
- methods: { foo: spy, bar: spy2 },
- data: {
- ok: true
- },
- render (h) {
- return this.ok
- ? h('input', { on: { '~click': this.foo }})
- : h('input', { on: { input: this.bar }})
- }
- })
- triggerEvent(vm.$el, 'click')
- expect(spy.calls.count()).toBe(1)
- triggerEvent(vm.$el, 'click')
- expect(spy.calls.count()).toBe(1) // should no longer trigger
- expect(spy2.calls.count()).toBe(0)
- vm.ok = false
- waitForUpdate(() => {
- triggerEvent(vm.$el, 'click')
- expect(spy.calls.count()).toBe(1) // should no longer trigger
- triggerEvent(vm.$el, 'input')
- expect(spy2.calls.count()).toBe(1)
- }).then(done)
- })
- it('remove capturing and once listener', done => {
- const spy2 = jasmine.createSpy('remove listener')
- vm = new Vue({
- el,
- methods: { foo: spy, bar: spy2, stopped (ev) { ev.stopPropagation() } },
- data: {
- ok: true
- },
- render (h) {
- return this.ok
- ? h('div', { on: { '~!click': this.foo }}, [h('div', { on: { click: this.stopped }})])
- : h('div', { on: { mouseOver: this.bar }}, [h('div')])
- }
- })
- triggerEvent(vm.$el.firstChild, 'click')
- expect(spy.calls.count()).toBe(1)
- triggerEvent(vm.$el.firstChild, 'click')
- expect(spy.calls.count()).toBe(1) // should no longer trigger
- expect(spy2.calls.count()).toBe(0)
- vm.ok = false
- waitForUpdate(() => {
- triggerEvent(vm.$el.firstChild, 'click')
- expect(spy.calls.count()).toBe(1) // should no longer trigger
- triggerEvent(vm.$el, 'mouseOver')
- expect(spy2.calls.count()).toBe(1)
- }).then(done)
- })
- it('remove listener on child component', done => {
- const spy2 = jasmine.createSpy('remove listener')
- vm = new Vue({
- el,
- methods: { foo: spy, bar: spy2 },
- data: {
- ok: true
- },
- components: {
- test: {
- template: '<div></div>'
- }
- },
- render (h) {
- return this.ok
- ? h('test', { on: { foo: this.foo }})
- : h('test', { on: { bar: this.bar }})
- }
- })
- vm.$children[0].$emit('foo')
- expect(spy.calls.count()).toBe(1)
- expect(spy2.calls.count()).toBe(0)
- vm.ok = false
- waitForUpdate(() => {
- vm.$children[0].$emit('foo')
- expect(spy.calls.count()).toBe(1) // should no longer trigger
- vm.$children[0].$emit('bar')
- expect(spy2.calls.count()).toBe(1)
- }).then(done)
- })
- it('warn missing handlers', () => {
- vm = new Vue({
- el,
- data: { none: null },
- template: `<div @click="none"></div>`
- })
- expect(`Invalid handler for event "click": got null`).toHaveBeenWarned()
- expect(() => {
- triggerEvent(vm.$el, 'click')
- }).not.toThrow()
- })
- // Github Issue #5046
- it('should support keyboard modifier for direction keys', () => {
- const spyLeft = jasmine.createSpy()
- const spyRight = jasmine.createSpy()
- const spyUp = jasmine.createSpy()
- const spyDown = jasmine.createSpy()
- vm = new Vue({
- el,
- template: `
- <div>
- <input ref="left" @keydown.left="foo"></input>
- <input ref="right" @keydown.right="foo1"></input>
- <input ref="up" @keydown.up="foo2"></input>
- <input ref="down" @keydown.down="foo3"></input>
- </div>
- `,
- methods: {
- foo: spyLeft,
- foo1: spyRight,
- foo2: spyUp,
- foo3: spyDown
- }
- })
- triggerEvent(vm.$refs.left, 'keydown', e => { e.keyCode = 37 })
- triggerEvent(vm.$refs.left, 'keydown', e => { e.keyCode = 39 })
- triggerEvent(vm.$refs.right, 'keydown', e => { e.keyCode = 39 })
- triggerEvent(vm.$refs.right, 'keydown', e => { e.keyCode = 38 })
- triggerEvent(vm.$refs.up, 'keydown', e => { e.keyCode = 38 })
- triggerEvent(vm.$refs.up, 'keydown', e => { e.keyCode = 37 })
- triggerEvent(vm.$refs.down, 'keydown', e => { e.keyCode = 40 })
- triggerEvent(vm.$refs.down, 'keydown', e => { e.keyCode = 39 })
- expect(spyLeft.calls.count()).toBe(1)
- expect(spyRight.calls.count()).toBe(1)
- expect(spyUp.calls.count()).toBe(1)
- expect(spyDown.calls.count()).toBe(1)
- })
- // This test case should only run when the test browser supports passive.
- if (supportsPassive) {
- it('should support passive', () => {
- vm = new Vue({
- el,
- template: `
- <div>
- <input type="checkbox" ref="normal" @click="foo"/>
- <input type="checkbox" ref="passive" @click.passive="foo"/>
- <input type="checkbox" ref="exclusive" @click.prevent.passive/>
- </div>
- `,
- methods: {
- foo (e) {
- e.preventDefault()
- }
- }
- })
- vm.$refs.normal.checked = false
- vm.$refs.passive.checked = false
- vm.$refs.exclusive.checked = false
- vm.$refs.normal.click()
- vm.$refs.passive.click()
- vm.$refs.exclusive.click()
- expect(vm.$refs.normal.checked).toBe(false)
- expect(vm.$refs.passive.checked).toBe(true)
- expect(vm.$refs.exclusive.checked).toBe(true)
- expect('passive and prevent can\'t be used together. Passive handler can\'t prevent default event.').toHaveBeenWarned()
- })
- }
- // GitHub Issues #5146
- it('should only prevent when match keycode', () => {
- let prevented = false
- vm = new Vue({
- el,
- template: `
- <input ref="input" @keydown.enter.prevent="foo">
- `,
- methods: {
- foo ($event) {
- prevented = $event.defaultPrevented
- }
- }
- })
- triggerEvent(vm.$refs.input, 'keydown', e => { e.keyCode = 32 })
- expect(prevented).toBe(false)
- triggerEvent(vm.$refs.input, 'keydown', e => { e.keyCode = 13 })
- expect(prevented).toBe(true)
- })
- it('should transform click.right to contextmenu', () => {
- const spy = jasmine.createSpy('click.right')
- const vm = new Vue({
- template: `<div @click.right="foo"></div>`,
- methods: { foo: spy }
- }).$mount()
- triggerEvent(vm.$el, 'contextmenu')
- expect(spy).toHaveBeenCalled()
- })
- it('should transform click.middle to mouseup', () => {
- const spy = jasmine.createSpy('click.middle')
- vm = new Vue({
- el,
- template: `<div @click.middle="foo"></div>`,
- methods: { foo: spy }
- })
- triggerEvent(vm.$el, 'mouseup', e => { e.button = 0 })
- expect(spy).not.toHaveBeenCalled()
- triggerEvent(vm.$el, 'mouseup', e => { e.button = 1 })
- expect(spy).toHaveBeenCalled()
- })
- it('object syntax (no argument)', () => {
- const click = jasmine.createSpy('click')
- const mouseup = jasmine.createSpy('mouseup')
- vm = new Vue({
- el,
- template: `<button v-on="listeners">foo</button>`,
- created () {
- this.listeners = {
- click,
- mouseup
- }
- }
- })
- triggerEvent(vm.$el, 'click')
- expect(click.calls.count()).toBe(1)
- expect(mouseup.calls.count()).toBe(0)
- triggerEvent(vm.$el, 'mouseup')
- expect(click.calls.count()).toBe(1)
- expect(mouseup.calls.count()).toBe(1)
- })
- it('object syntax (no argument, mixed with normal listeners)', () => {
- const click1 = jasmine.createSpy('click1')
- const click2 = jasmine.createSpy('click2')
- const mouseup = jasmine.createSpy('mouseup')
- vm = new Vue({
- el,
- template: `<button v-on="listeners" @click="click2">foo</button>`,
- created () {
- this.listeners = {
- click: click1,
- mouseup
- }
- },
- methods: {
- click2
- }
- })
- triggerEvent(vm.$el, 'click')
- expect(click1.calls.count()).toBe(1)
- expect(click2.calls.count()).toBe(1)
- expect(mouseup.calls.count()).toBe(0)
- triggerEvent(vm.$el, 'mouseup')
- expect(click1.calls.count()).toBe(1)
- expect(click2.calls.count()).toBe(1)
- expect(mouseup.calls.count()).toBe(1)
- })
- it('object syntax (usage in HOC, mixed with native listeners)', () => {
- const click = jasmine.createSpy('click')
- const mouseup = jasmine.createSpy('mouseup')
- const mousedown = jasmine.createSpy('mousedown')
- vm = new Vue({
- el,
- template: `
- <foo-button
- @click="click"
- @mousedown="mousedown"
- @mouseup.native="mouseup">
- </foo-button>
- `,
- methods: {
- click,
- mouseup,
- mousedown
- },
- components: {
- fooButton: {
- template: `
- <button v-on="$listeners"></button>
- `
- }
- }
- })
- triggerEvent(vm.$el, 'click')
- expect(click.calls.count()).toBe(1)
- expect(mouseup.calls.count()).toBe(0)
- expect(mousedown.calls.count()).toBe(0)
- triggerEvent(vm.$el, 'mouseup')
- expect(click.calls.count()).toBe(1)
- expect(mouseup.calls.count()).toBe(1)
- expect(mousedown.calls.count()).toBe(0)
- triggerEvent(vm.$el, 'mousedown')
- expect(click.calls.count()).toBe(1)
- expect(mouseup.calls.count()).toBe(1)
- expect(mousedown.calls.count()).toBe(1)
- })
- // #6805 (v-on="object" bind order problem)
- it('object syntax (no argument): should fire after high-priority listeners', done => {
- const MyCheckbox = {
- template: '<input type="checkbox" v-model="model" v-on="$listeners">',
- props: {
- value: false
- },
- computed: {
- model: {
- get () {
- return this.value
- },
- set (val) {
- this.$emit('input', val)
- }
- }
- }
- }
- vm = new Vue({
- el,
- template: `
- <div>
- <my-checkbox v-model="check" @change="change"></my-checkbox>
- </div>
- `,
- components: { MyCheckbox },
- data: {
- check: false
- },
- methods: {
- change () {
- expect(this.check).toBe(true)
- done()
- }
- }
- })
- vm.$el.querySelector('input').click()
- })
- it('warn object syntax with modifier', () => {
- new Vue({
- template: `<button v-on.self="{}"></button>`
- }).$mount()
- expect(`v-on without argument does not support modifiers`).toHaveBeenWarned()
- })
- it('warn object syntax with non-object value', () => {
- new Vue({
- template: `<button v-on="123"></button>`
- }).$mount()
- expect(`v-on without argument expects an Object value`).toHaveBeenWarned()
- })
- it('should correctly remove once listener', done => {
- const vm = new Vue({
- template: `
- <div>
- <span v-if="ok" @click.once="foo">
- a
- </span>
- <span v-else a="a">
- b
- </span>
- </div>
- `,
- data: {
- ok: true
- },
- methods: {
- foo: spy
- }
- }).$mount()
- vm.ok = false
- waitForUpdate(() => {
- triggerEvent(vm.$el.childNodes[0], 'click')
- expect(spy.calls.count()).toBe(0)
- }).then(done)
- })
- // #7628
- it('handler should return the return value of inline function invocation', () => {
- let value
- new Vue({
- template: `<test @foo="bar()"></test>`,
- methods: {
- bar() {
- return 1
- }
- },
- components: {
- test: {
- created() {
- value = this.$listeners.foo()
- },
- render(h) {
- return h('div')
- }
- }
- }
- }).$mount()
- expect(value).toBe(1)
- })
- describe('dynamic arguments', () => {
- it('basic', done => {
- const spy = jasmine.createSpy()
- const vm = new Vue({
- template: `<div v-on:[key]="spy"></div>`,
- data: {
- key: 'click'
- },
- methods: {
- spy
- }
- }).$mount()
- triggerEvent(vm.$el, 'click')
- expect(spy.calls.count()).toBe(1)
- vm.key = 'mouseup'
- waitForUpdate(() => {
- triggerEvent(vm.$el, 'click')
- expect(spy.calls.count()).toBe(1)
- triggerEvent(vm.$el, 'mouseup')
- expect(spy.calls.count()).toBe(2)
- // explicit null value
- vm.key = null
- }).then(() => {
- triggerEvent(vm.$el, 'click')
- expect(spy.calls.count()).toBe(2)
- triggerEvent(vm.$el, 'mouseup')
- expect(spy.calls.count()).toBe(2)
- }).then(done)
- })
- it('shorthand', done => {
- const spy = jasmine.createSpy()
- const vm = new Vue({
- template: `<div @[key]="spy"></div>`,
- data: {
- key: 'click'
- },
- methods: {
- spy
- }
- }).$mount()
- triggerEvent(vm.$el, 'click')
- expect(spy.calls.count()).toBe(1)
- vm.key = 'mouseup'
- waitForUpdate(() => {
- triggerEvent(vm.$el, 'click')
- expect(spy.calls.count()).toBe(1)
- triggerEvent(vm.$el, 'mouseup')
- expect(spy.calls.count()).toBe(2)
- }).then(done)
- })
- it('with .middle modifier', () => {
- const spy = jasmine.createSpy()
- const vm = new Vue({
- template: `<div @[key].middle="spy"></div>`,
- data: {
- key: 'click'
- },
- methods: {
- spy
- }
- }).$mount()
- triggerEvent(vm.$el, 'mouseup', e => { e.button = 0 })
- expect(spy).not.toHaveBeenCalled()
- triggerEvent(vm.$el, 'mouseup', e => { e.button = 1 })
- expect(spy).toHaveBeenCalled()
- })
- it('with .right modifier', () => {
- const spy = jasmine.createSpy()
- const vm = new Vue({
- template: `<div @[key].right="spy"></div>`,
- data: {
- key: 'click'
- },
- methods: {
- spy
- }
- }).$mount()
- triggerEvent(vm.$el, 'contextmenu')
- expect(spy).toHaveBeenCalled()
- })
- it('with .capture modifier', () => {
- const callOrder = []
- const vm = new Vue({
- template: `
- <div @[key].capture="foo">
- <div @[key]="bar"></div>
- </div>
- `,
- data: {
- key: 'click'
- },
- methods: {
- foo () { callOrder.push(1) },
- bar () { callOrder.push(2) }
- }
- }).$mount()
- triggerEvent(vm.$el.firstChild, 'click')
- expect(callOrder.toString()).toBe('1,2')
- })
- it('with .once modifier', () => {
- const vm = new Vue({
- template: `<div @[key].once="foo"></div>`,
- data: { key: 'click' },
- methods: { foo: spy }
- }).$mount()
- triggerEvent(vm.$el, 'click')
- expect(spy.calls.count()).toBe(1)
- triggerEvent(vm.$el, 'click')
- expect(spy.calls.count()).toBe(1) // should no longer trigger
- })
- })
- })
|