forked from exceptionless/Exceptionless.JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathErrorPlugin.test.ts
More file actions
122 lines (102 loc) · 3.49 KB
/
ErrorPlugin.test.ts
File metadata and controls
122 lines (102 loc) · 3.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
import { ContextData } from "../../../src/plugins/ContextData.js";
import { ErrorPlugin } from "../../../src/plugins/default/ErrorPlugin.js";
import { EventPluginContext } from "../../../src/plugins/EventPluginContext.js";
import {
Event,
KnownEventDataKeys
} from "../../../src/models/Event.js";
import { CapturedExceptions } from "./exceptions.js";
import { createFixture } from "./EventPluginTestFixture.js";
function BaseTestError() {
this.name = "NotImplementedError";
this.someProperty = "Test";
}
BaseTestError.prototype = new Error();
function DerivedTestError() {
this.someOtherProperty = "Test2";
}
DerivedTestError.prototype = new BaseTestError();
describe("ErrorPlugin", () => {
const target = new ErrorPlugin();
let contextData: ContextData;
let context: EventPluginContext;
let event: Event;
beforeEach(() => {
({
contextData,
context,
event
} = createFixture());
});
function processError(error): Promise<void> {
const exception = throwAndCatch(error);
contextData.setException(exception);
return target.run(context);
}
describe("additional data", () => {
describeForCapturedExceptions((exception) => {
test("should ignore default error properties", async () => {
contextData.setException(exception);
await target.run(context);
const additionalData = getAdditionalData(event);
expect(additionalData).toBeUndefined();
});
});
test("should add custom properties to additional data", async () => {
const error = {
someProperty: "Test"
};
await processError(error);
const additionalData = getAdditionalData(event);
expect(additionalData).not.toBeNull();
expect(additionalData.someProperty).toBe("Test");
});
test("should support custom exception types", async () => {
await processError(new BaseTestError());
const additionalData = getAdditionalData(event);
expect(additionalData).not.toBeNull();
expect(additionalData.someProperty).toBe("Test");
});
test("should support inherited properties", async () => {
await processError(new DerivedTestError());
const additionalData = getAdditionalData(event);
expect(additionalData).not.toBeNull();
expect(additionalData.someProperty).toBe("Test");
expect(additionalData.someOtherProperty).toBe("Test2");
});
test("shouldn't set empty additional data", async () => {
await processError({});
const additionalData = getAdditionalData(event);
expect(additionalData).toBeUndefined();
});
test("should ignore functions", async () => {
const exception: any = new Error("Error with function");
exception.someFunction = () => { };
contextData.setException(exception);
await target.run(context);
const additionalData = getAdditionalData(event);
expect(additionalData).toBeUndefined();
});
});
});
function describeForCapturedExceptions(specDefinitions: (exception: any) => void) {
const keys = Object.getOwnPropertyNames(CapturedExceptions);
keys.forEach((key) => {
const exception = CapturedExceptions[key];
describe(key, () => { specDefinitions(exception); });
});
}
function getError(event: Event) {
return event?.data?.[KnownEventDataKeys.Error];
}
function getAdditionalData(event: Event) {
const error = getError(event);
return error?.data?.["@ext"];
}
function throwAndCatch(error: any): Error {
try {
throw error;
} catch (exception) {
return exception;
}
}