|
|
@@ -0,0 +1,101 @@
|
|
|
+import { patchEvent } from '../src/modules/events'
|
|
|
+
|
|
|
+describe(`events`, () => {
|
|
|
+ it('should assign event handler', () => {
|
|
|
+ const el = document.createElement('div')
|
|
|
+ const event = new Event('click')
|
|
|
+ const fn = jest.fn()
|
|
|
+ patchEvent(el, 'click', null, fn, null)
|
|
|
+ el.dispatchEvent(event)
|
|
|
+ el.dispatchEvent(event)
|
|
|
+ el.dispatchEvent(event)
|
|
|
+ expect(fn).toHaveBeenCalledTimes(3)
|
|
|
+ })
|
|
|
+
|
|
|
+ it('should update event handler', () => {
|
|
|
+ const el = document.createElement('div')
|
|
|
+ const event = new Event('click')
|
|
|
+ const prevFn = jest.fn()
|
|
|
+ const nextFn = jest.fn()
|
|
|
+ patchEvent(el, 'click', null, prevFn, null)
|
|
|
+ el.dispatchEvent(event)
|
|
|
+ patchEvent(el, 'click', prevFn, nextFn, null)
|
|
|
+ el.dispatchEvent(event)
|
|
|
+ el.dispatchEvent(event)
|
|
|
+ expect(prevFn).toHaveBeenCalledTimes(1)
|
|
|
+ expect(nextFn).toHaveBeenCalledTimes(2)
|
|
|
+ })
|
|
|
+
|
|
|
+ it('should support multiple event handlers', () => {
|
|
|
+ const el = document.createElement('div')
|
|
|
+ const event = new Event('click')
|
|
|
+ const fn1 = jest.fn()
|
|
|
+ const fn2 = jest.fn()
|
|
|
+ patchEvent(el, 'click', null, [fn1, fn2], null)
|
|
|
+ el.dispatchEvent(event)
|
|
|
+ expect(fn1).toHaveBeenCalledTimes(1)
|
|
|
+ expect(fn2).toHaveBeenCalledTimes(1)
|
|
|
+ })
|
|
|
+
|
|
|
+ it('should unassign event handler', () => {
|
|
|
+ const el = document.createElement('div')
|
|
|
+ const event = new Event('click')
|
|
|
+ const fn = jest.fn()
|
|
|
+ patchEvent(el, 'click', null, fn, null)
|
|
|
+ patchEvent(el, 'click', fn, null, null)
|
|
|
+ el.dispatchEvent(event)
|
|
|
+ expect(fn).not.toHaveBeenCalled()
|
|
|
+ })
|
|
|
+
|
|
|
+ it('should support event options', () => {
|
|
|
+ const el = document.createElement('div')
|
|
|
+ const event = new Event('click')
|
|
|
+ const fn = jest.fn()
|
|
|
+ const nextValue = {
|
|
|
+ handler: fn,
|
|
|
+ options: {
|
|
|
+ once: true
|
|
|
+ }
|
|
|
+ }
|
|
|
+ patchEvent(el, 'click', null, nextValue, null)
|
|
|
+ el.dispatchEvent(event)
|
|
|
+ el.dispatchEvent(event)
|
|
|
+ expect(fn).toHaveBeenCalledTimes(1)
|
|
|
+ })
|
|
|
+
|
|
|
+ it('should support varying event options', () => {
|
|
|
+ const el = document.createElement('div')
|
|
|
+ const event = new Event('click')
|
|
|
+ const prevFn = jest.fn()
|
|
|
+ const nextFn = jest.fn()
|
|
|
+ const nextValue = {
|
|
|
+ handler: nextFn,
|
|
|
+ options: {
|
|
|
+ once: true
|
|
|
+ }
|
|
|
+ }
|
|
|
+ patchEvent(el, 'click', null, prevFn, null)
|
|
|
+ patchEvent(el, 'click', prevFn, nextValue, null)
|
|
|
+ el.dispatchEvent(event)
|
|
|
+ el.dispatchEvent(event)
|
|
|
+ expect(prevFn).not.toHaveBeenCalled()
|
|
|
+ expect(nextFn).toHaveBeenCalledTimes(1)
|
|
|
+ })
|
|
|
+
|
|
|
+ it('should unassign event handler with options', () => {
|
|
|
+ const el = document.createElement('div')
|
|
|
+ const event = new Event('click')
|
|
|
+ const fn = jest.fn()
|
|
|
+ const nextValue = {
|
|
|
+ handler: fn,
|
|
|
+ options: {
|
|
|
+ once: true
|
|
|
+ }
|
|
|
+ }
|
|
|
+ patchEvent(el, 'click', null, nextValue, null)
|
|
|
+ patchEvent(el, 'click', nextValue, null, null)
|
|
|
+ el.dispatchEvent(event)
|
|
|
+ el.dispatchEvent(event)
|
|
|
+ expect(fn).not.toHaveBeenCalled()
|
|
|
+ })
|
|
|
+})
|