/* * MIT License * * Copyright (c) 2019 Rémi Van Keisbelck * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ import { JSDOM } from 'jsdom'; import { DocumentEvents } from './DocumentEvents'; import { describe, expect, it, beforeEach, vi } from "vitest"; const dom = new JSDOM(); global.document = dom.window.document; describe('DocumentEvents Test', () => { let documentEvents = new DocumentEvents(); const addSpy = vi.fn(); const removeSpy = vi.fn(); document.addEventListener = addSpy; document.removeEventListener = removeSpy; beforeEach(() => { documentEvents = new DocumentEvents(); addSpy.mockReset(); removeSpy.mockReset(); }); it('first sub adds listener', () => { const sub = documentEvents.on('click', (e) => 'clicked'); sub.init(() => ({})); expect(addSpy.mock.calls.length).toBe(1); }); it('second sub adds another listener', () => { const sub = documentEvents.on('click', (e) => 'clicked'); sub.init(() => ({})); expect(addSpy.mock.calls.length).toBe(1); const sub2 = documentEvents.on('click', (e) => 'clicked2', true); sub2.init(() => ({})); expect(addSpy.mock.calls.length).toBe(2); }); it('all subs remove listeners', () => { const sub = documentEvents.on('click', (e) => 'clicked'); sub.init(() => ({})); const sub2 = documentEvents.on('click', (e) => 'clicked2', { capture: true }); sub2.init(() => ({})); sub.release(); expect(removeSpy.mock.calls.length).toBe(1); sub2.release(); expect(removeSpy.mock.calls.length).toBe(2); }); it('sub receives event from listener', () => new Promise(done => { const msgs: string[] = []; const collectMsgs = (msg: string): void => { msgs.push(msg); }; const sub = documentEvents.on('click', (e) => 'clicked1'); sub.init(collectMsgs); expect(addSpy.mock.calls.length).toBe(1); const listener = addSpy.mock.calls[0][1]; listener({ event: 'event' }); setTimeout(() => { expect(msgs).toEqual(['clicked1']); done(); }, 10); })); it('each sub receive events its listener', () => new Promise(done => { const msgs: string[] = []; const collectMsgs = (msg: string): void => { msgs.push(msg); }; const msgs2: string[] = []; const collectMsgs2 = (msg: string): void => { msgs2.push(msg); }; const sub = documentEvents.on('click', (e) => 'clicked'); const sub2 = documentEvents.on('click', (e) => 'clicked2'); sub.init(collectMsgs); sub2.init(collectMsgs2); expect(addSpy.mock.calls.length).toBe(2); const listener = addSpy.mock.calls[0][1]; const listener2 = addSpy.mock.calls[1][1]; listener({ event: 'event' }); setTimeout(() => { expect(msgs).toEqual(['clicked']); listener2({ event: 'event' }); setTimeout(() => { expect(msgs2).toEqual(['clicked2']); done(); }, 10) }, 10) })); it('sub stops receiving events from listener', () => new Promise(done => { const sub = documentEvents.on('click', (e) => 'clicked1'); const msgs: string[] = []; sub.init((msg) => { msgs.push(msg); }); expect(addSpy.mock.calls.length).toBe(1); const listener = addSpy.mock.calls[0][1]; listener({ event: 'event' }); listener({ event: 'event' }); setTimeout(() => { expect(msgs).toEqual(['clicked1', 'clicked1']); sub.release(); listener({ event: 'event' }); setTimeout(() => { expect(msgs).toEqual(['clicked1', 'clicked1']); done(); }); }, 10) })); });