|
| 1 | +import { TestTransport, TestClient, nullLogger } from '../../helpers' |
| 2 | +import * as util from '../../../../src/server/util' |
| 3 | +import Singleton from '../../../../src/server' |
| 4 | +import ShutdownMonitor from '../../../../src/server/integrations/shutdown_monitor' |
| 5 | + |
| 6 | +describe('ShutdownMonitor', () => { |
| 7 | + // Using any rather than the real type so we can test and spy on private methods |
| 8 | + // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 9 | + let shutdownMonitor: any |
| 10 | + let client: typeof Singleton |
| 11 | + let fatallyLogAndExitGracefullySpy: jest.SpyInstance |
| 12 | + let flushSpy: jest.SpyInstance |
| 13 | + |
| 14 | + beforeEach(() => { |
| 15 | + // We just need a really basic client, so ignoring type issues here |
| 16 | + client = new TestClient( |
| 17 | + { apiKey: 'testKey', afterUncaught: jest.fn(), logger: nullLogger() }, |
| 18 | + new TestTransport() |
| 19 | + ) as unknown as typeof Singleton |
| 20 | + shutdownMonitor = new ShutdownMonitor() |
| 21 | + shutdownMonitor.setClient(client) |
| 22 | + // Have to mock fatallyLogAndExit or we will crash the test |
| 23 | + fatallyLogAndExitGracefullySpy = jest |
| 24 | + .spyOn(util, 'fatallyLogAndExitGracefully') |
| 25 | + .mockImplementation(() => true as never) |
| 26 | + flushSpy = jest.spyOn(client, 'flushAsync') |
| 27 | + }) |
| 28 | + |
| 29 | + afterEach(() => { |
| 30 | + jest.clearAllMocks() |
| 31 | + process.removeAllListeners('SIGTERM') |
| 32 | + process.removeAllListeners('SIGINT') |
| 33 | + shutdownMonitor.__isReporting = false |
| 34 | + shutdownMonitor.__handlerAlreadyCalled = false |
| 35 | + }) |
| 36 | + |
| 37 | + describe('constructor', () => { |
| 38 | + it('sets variables', () => { |
| 39 | + // Using any rather than the real type so we can test and spy on private methods |
| 40 | + // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 41 | + const newMonitor = new ShutdownMonitor() as any |
| 42 | + expect(newMonitor.__isReporting).toBe(false) |
| 43 | + expect(newMonitor.__listener).toStrictEqual(expect.any(Function)) |
| 44 | + expect(newMonitor.__listener.name).toBe('honeybadgerShutdownListener') |
| 45 | + }) |
| 46 | + }) |
| 47 | + |
| 48 | + describe('maybeAddListener', () => { |
| 49 | + it('adds our listener a maximum of one time', () => { |
| 50 | + expect(process.listeners('SIGINT')).toHaveLength(0) |
| 51 | + expect(process.listeners('SIGTERM')).toHaveLength(0) |
| 52 | + |
| 53 | + // Adds our listener |
| 54 | + shutdownMonitor.maybeAddListener() |
| 55 | + expect(process.listeners('SIGINT')).toHaveLength(1) |
| 56 | + expect(process.listeners('SIGTERM')).toHaveLength(1) |
| 57 | + |
| 58 | + // Doesn't add a duplicate |
| 59 | + shutdownMonitor.maybeAddListener() |
| 60 | + expect(process.listeners('SIGINT')).toHaveLength(1) |
| 61 | + expect(process.listeners('SIGTERM')).toHaveLength(1) |
| 62 | + }) |
| 63 | + }) |
| 64 | + |
| 65 | + describe('maybeRemoveListener', () => { |
| 66 | + it('removes our listener if it is present', () => { |
| 67 | + shutdownMonitor.maybeAddListener() |
| 68 | + process.on('SIGINT', (signal) => { console.log(signal) }) |
| 69 | + process.on('SIGTERM', (signal) => { console.log(signal) }) |
| 70 | + expect(process.listeners('SIGINT')).toHaveLength(2) |
| 71 | + expect(process.listeners('SIGTERM')).toHaveLength(2) |
| 72 | + |
| 73 | + shutdownMonitor.maybeRemoveListener() |
| 74 | + expect(process.listeners('SIGINT')).toHaveLength(1) |
| 75 | + expect(process.listeners('SIGTERM')).toHaveLength(1) |
| 76 | + }) |
| 77 | + |
| 78 | + it('does nothing if our listener is not present', () => { |
| 79 | + process.on('SIGINT', (signal) => { console.log(signal) }) |
| 80 | + process.on('SIGTERM', (signal) => { console.log(signal) }) |
| 81 | + expect(process.listeners('SIGINT')).toHaveLength(1) |
| 82 | + expect(process.listeners('SIGTERM')).toHaveLength(1) |
| 83 | + |
| 84 | + shutdownMonitor.maybeRemoveListener() |
| 85 | + expect(process.listeners('SIGINT')).toHaveLength(1) |
| 86 | + expect(process.listeners('SIGTERM')).toHaveLength(1) |
| 87 | + }) |
| 88 | + }) |
| 89 | + |
| 90 | + describe('__listener', () => { |
| 91 | + it('calls flushAsync and fatallyLogAndExitGracefully', (done) => { |
| 92 | + shutdownMonitor.__listener('SIGINT') |
| 93 | + expect(flushSpy).toHaveBeenCalledTimes(1) |
| 94 | + setTimeout(() => { |
| 95 | + expect(fatallyLogAndExitGracefullySpy).toHaveBeenCalledWith('SIGINT') |
| 96 | + done() |
| 97 | + }, 10) |
| 98 | + }) |
| 99 | + |
| 100 | + it('returns if it is already reporting', () => { |
| 101 | + shutdownMonitor.__isReporting = true |
| 102 | + shutdownMonitor.__listener('SIGINT') |
| 103 | + expect(flushSpy).not.toHaveBeenCalled() |
| 104 | + expect(fatallyLogAndExitGracefullySpy).not.toHaveBeenCalled() |
| 105 | + }) |
| 106 | + }) |
| 107 | + |
| 108 | + describe('hasOtherShutdownListeners', () => { |
| 109 | + it('returns true if there are user-added listeners', () => { |
| 110 | + shutdownMonitor.maybeAddListener() |
| 111 | + process.on('SIGINT', function userAddedListener() { |
| 112 | + return |
| 113 | + }) |
| 114 | + expect(shutdownMonitor.hasOtherShutdownListeners('SIGINT')).toBe(true) |
| 115 | + }) |
| 116 | + |
| 117 | + it('returns false if there are only our expected listeners', () => { |
| 118 | + shutdownMonitor.maybeAddListener() |
| 119 | + expect(shutdownMonitor.hasOtherShutdownListeners()).toBe(false) |
| 120 | + }) |
| 121 | + }) |
| 122 | +}) |
0 commit comments