|
| 1 | +import { trace } from './traceDecorator'; |
| 2 | + |
| 3 | +describe('trace decorator', () => { |
| 4 | + const executionTraceExpectation = { |
| 5 | + inputs: expect.any(Array), |
| 6 | + startTime: expect.any(Date), |
| 7 | + endTime: expect.any(Date), |
| 8 | + duration: expect.any(Number), |
| 9 | + elapsedTime: expect.any(String) |
| 10 | + }; |
| 11 | + |
| 12 | + const successfulExecutionTraceExpectation = { |
| 13 | + ...executionTraceExpectation, |
| 14 | + outputs: expect.anything() |
| 15 | + }; |
| 16 | + |
| 17 | + const failedExecutionTraceExpectation = { |
| 18 | + ...executionTraceExpectation, |
| 19 | + errors: expect.anything() |
| 20 | + }; |
| 21 | + |
| 22 | + describe('Synchronous functions', () => { |
| 23 | + class SyncClass { |
| 24 | + @trace() |
| 25 | + helloWorld(): string { |
| 26 | + return 'Hello World'; |
| 27 | + } |
| 28 | + } |
| 29 | + |
| 30 | + it('should trace a synchronous function', () => { |
| 31 | + const instance = new SyncClass(); |
| 32 | + const response = instance.helloWorld(); |
| 33 | + expect(response).toEqual('Hello World'); |
| 34 | + }); |
| 35 | + }); |
| 36 | + |
| 37 | + describe('Asynchronous functions', () => { |
| 38 | + class AsyncClass { |
| 39 | + @trace() |
| 40 | + async helloWorldAsync(): Promise<string> { |
| 41 | + return 'Hello World async'; |
| 42 | + } |
| 43 | + } |
| 44 | + |
| 45 | + it('should trace an async function', async () => { |
| 46 | + const instance = new AsyncClass(); |
| 47 | + const response = await instance.helloWorldAsync(); |
| 48 | + expect(response).toEqual('Hello World async'); |
| 49 | + }); |
| 50 | + }); |
| 51 | + |
| 52 | + describe('Tracing function traceHandlerMock and traceContext', () => { |
| 53 | + const traceContextDivision = { metadata: { requestId: '12345' } }; |
| 54 | + const traceContextFetchData = { metadata: { requestId: '6789' } }; |
| 55 | + const traceHandlerDivisionMock= jest.fn(); |
| 56 | + const traceHandlerFetchDataMock= jest.fn(); |
| 57 | + class MyClass { |
| 58 | + @trace(traceHandlerDivisionMock, traceContextDivision) |
| 59 | + divisionFunction(x: number, y: number, traceContext: Record<string, unknown> = {}): number { |
| 60 | + if (y === 0) { |
| 61 | + traceContext['narratives'] = [`Throwing because division of ${x} by ${y}`]; |
| 62 | + throw new Error('Throwing because division by zero is not allowed.'); |
| 63 | + } |
| 64 | + traceContext['narratives'] = [`Calculating the division of ${x} by ${y}`]; |
| 65 | + return x / y; |
| 66 | + } |
| 67 | + |
| 68 | + @trace(traceHandlerFetchDataMock, traceContextFetchData) |
| 69 | + async fetchDataFunction(url: string, traceContext: Record<string, unknown> = {}): Promise<{ data: string }> { |
| 70 | + traceContext['narratives'] = [`Fetching data from ${url}`]; |
| 71 | + if (!url.startsWith('http')) { |
| 72 | + traceContext['narratives'] = [`Throwing because the URL ${url} is invalid`]; |
| 73 | + throw new Error('Invalid URL provided.'); |
| 74 | + } |
| 75 | + return { data: 'Success' }; |
| 76 | + } |
| 77 | + } |
| 78 | + |
| 79 | + it('should sync trace successfully and pass correct traceHandlerMock and traceContext', () => { |
| 80 | + |
| 81 | + const classInstance = new MyClass(); |
| 82 | + const response = classInstance.divisionFunction(1, 2); |
| 83 | + expect(traceHandlerDivisionMock).toHaveBeenCalledWith( |
| 84 | + { ...traceContextDivision, narratives: ['Calculating the division of 1 by 2'] }, |
| 85 | + expect.objectContaining(successfulExecutionTraceExpectation) |
| 86 | + ); |
| 87 | + expect(response).toEqual(0.5); |
| 88 | + |
| 89 | + |
| 90 | + }); |
| 91 | + |
| 92 | + it('should sync trace errors and pass correct traceHandlerMock and traceContext', async () => { |
| 93 | + expect(() => new MyClass().divisionFunction(1, 0)).toThrow('Throwing because division by zero is not allowed.'); |
| 94 | + expect(traceHandlerDivisionMock).toHaveBeenCalledWith( |
| 95 | + { ...traceContextDivision, narratives: ['Throwing because division of 1 by 0'] }, |
| 96 | + expect.objectContaining(failedExecutionTraceExpectation) |
| 97 | + ); |
| 98 | + }); |
| 99 | + |
| 100 | + it('should async trace successfully and pass correct traceHandlerMock and traceContext', async () => { |
| 101 | + const response =await new MyClass().fetchDataFunction('https://api.example.com/data'); |
| 102 | + expect(traceHandlerFetchDataMock).toHaveBeenCalledWith( |
| 103 | + { ...traceContextFetchData, narratives: ['Fetching data from https://api.example.com/data'] }, |
| 104 | + expect.objectContaining(successfulExecutionTraceExpectation) |
| 105 | + ); |
| 106 | + expect(response).toMatchObject({ data: 'Success' }); |
| 107 | + }); |
| 108 | + |
| 109 | + it('should async trace errors and pass correct traceHandlerMock and traceContext', async () => { |
| 110 | + await expect(new MyClass().fetchDataFunction('invalid-url')).rejects.toThrow('Invalid URL provided.'); |
| 111 | + expect(traceHandlerFetchDataMock).toHaveBeenCalledWith( |
| 112 | + { ...traceContextFetchData, narratives: ['Throwing because the URL invalid-url is invalid'] }, |
| 113 | + expect.objectContaining(failedExecutionTraceExpectation) |
| 114 | + ); |
| 115 | + }); |
| 116 | + }); |
| 117 | +}); |
0 commit comments