2021-07-28 01:52:57 +02:00
|
|
|
import { logger } from "@coder/logger"
|
|
|
|
import { Emitter } from "../../../src/common/emitter"
|
2021-12-17 20:06:52 +01:00
|
|
|
import { mockLogger } from "../../utils/helpers"
|
2021-02-10 23:28:29 +01:00
|
|
|
|
2021-02-10 23:37:43 +01:00
|
|
|
describe("emitter", () => {
|
2021-02-10 23:37:43 +01:00
|
|
|
beforeEach(() => {
|
2021-12-17 20:06:52 +01:00
|
|
|
mockLogger()
|
2021-02-10 23:37:43 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
jest.clearAllMocks()
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should run the correct callbacks", async () => {
|
|
|
|
const HELLO_WORLD = "HELLO_WORLD"
|
|
|
|
const GOODBYE_WORLD = "GOODBYE_WORLD"
|
|
|
|
const mockCallback = jest.fn(() => "Mock function called")
|
|
|
|
const mockSecondCallback = jest.fn(() => undefined)
|
|
|
|
|
|
|
|
const emitter = new Emitter<{ event: string; callback: () => void }>()
|
2021-02-10 23:28:29 +01:00
|
|
|
|
2021-02-10 23:37:43 +01:00
|
|
|
const onHelloWorld = ({ event, callback }: { event: string; callback: () => void }): void => {
|
|
|
|
if (event === HELLO_WORLD) {
|
|
|
|
callback()
|
2021-02-10 23:28:29 +01:00
|
|
|
}
|
2021-02-10 23:37:43 +01:00
|
|
|
}
|
2021-02-10 23:28:29 +01:00
|
|
|
|
2021-02-10 23:37:43 +01:00
|
|
|
const onGoodbyeWorld = ({ event, callback }: { event: string; callback: () => void }): void => {
|
|
|
|
if (event === GOODBYE_WORLD) {
|
|
|
|
callback()
|
2021-02-10 23:28:29 +01:00
|
|
|
}
|
2021-02-10 23:37:43 +01:00
|
|
|
}
|
2021-02-10 23:28:29 +01:00
|
|
|
|
2021-02-10 23:37:43 +01:00
|
|
|
// Register the onHelloWorld listener
|
|
|
|
// and the onGoodbyeWorld
|
2021-07-02 23:27:12 +02:00
|
|
|
const _onHelloWorld = emitter.event(onHelloWorld)
|
2021-02-10 23:37:43 +01:00
|
|
|
emitter.event(onGoodbyeWorld)
|
2021-02-10 23:28:29 +01:00
|
|
|
|
2021-02-10 23:37:43 +01:00
|
|
|
await emitter.emit({ event: HELLO_WORLD, callback: mockCallback })
|
2021-02-10 23:28:29 +01:00
|
|
|
|
2021-02-10 23:37:43 +01:00
|
|
|
// Double-check that our callback is called only once
|
|
|
|
expect(mockCallback).toHaveBeenCalled()
|
|
|
|
expect(mockCallback).toHaveBeenCalledTimes(1)
|
2021-02-10 23:28:29 +01:00
|
|
|
|
2021-02-10 23:37:43 +01:00
|
|
|
await emitter.emit({ event: GOODBYE_WORLD, callback: mockSecondCallback })
|
|
|
|
|
|
|
|
// Check that it works with multiple listeners
|
|
|
|
expect(mockSecondCallback).toHaveBeenCalled()
|
|
|
|
expect(mockSecondCallback).toHaveBeenCalledTimes(1)
|
|
|
|
|
2021-07-02 23:27:12 +02:00
|
|
|
// Dispose of individual listener
|
|
|
|
_onHelloWorld.dispose()
|
|
|
|
|
|
|
|
// Try disposing twice
|
|
|
|
_onHelloWorld.dispose()
|
|
|
|
|
2021-02-10 23:37:43 +01:00
|
|
|
// Dispose of all the listeners
|
|
|
|
emitter.dispose()
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should log an error if something goes wrong", async () => {
|
|
|
|
const HELLO_WORLD = "HELLO_WORLD"
|
|
|
|
const mockCallback = jest.fn(() => "Mock function called")
|
|
|
|
const message = "You don't have access to that folder."
|
|
|
|
|
|
|
|
const emitter = new Emitter<{ event: string; callback: () => void }>()
|
|
|
|
|
|
|
|
const onHelloWorld = ({ event, callback }: { event: string; callback: () => void }): void => {
|
|
|
|
if (event === HELLO_WORLD) {
|
|
|
|
callback()
|
|
|
|
throw new Error(message)
|
|
|
|
}
|
|
|
|
}
|
2021-02-10 23:28:29 +01:00
|
|
|
|
2021-02-10 23:37:43 +01:00
|
|
|
emitter.event(onHelloWorld)
|
2021-02-10 23:28:29 +01:00
|
|
|
|
2021-02-10 23:37:43 +01:00
|
|
|
await emitter.emit({ event: HELLO_WORLD, callback: mockCallback })
|
2021-02-10 23:28:29 +01:00
|
|
|
|
2021-02-10 23:37:43 +01:00
|
|
|
// Check that error was called
|
2021-12-17 20:06:52 +01:00
|
|
|
expect(logger.error).toHaveBeenCalled()
|
|
|
|
expect(logger.error).toHaveBeenCalledTimes(1)
|
|
|
|
expect(logger.error).toHaveBeenCalledWith(message)
|
2021-02-10 23:28:29 +01:00
|
|
|
})
|
|
|
|
})
|