-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.spec.ts
80 lines (58 loc) · 2.21 KB
/
index.spec.ts
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
import * as context from "./index";
import { performance } from "perf_hooks";
const testKey = Symbol("test");
describe("assign", () => {
const ctx = context.background;
describe("withValue", () => {
it("should hold values", () => {
const newCtx = context.withValue(ctx, "test", true);
const anotherCtx = context.withValue(newCtx, testKey, 123);
expect(newCtx.value("test")).toEqual(true);
expect(anotherCtx.value("test")).toEqual(true);
expect(anotherCtx.value(testKey)).toEqual(123);
});
it("should allow optional keys", () => {
const test = (ctx: context.Context<{ prop?: boolean }>) => {
return ctx.value("prop");
};
expect(test(ctx)).toEqual(undefined);
expect(test(context.withValue(ctx, "prop", true))).toEqual(true);
});
});
describe("withAbort", () => {
it("should allow abort", async () => {
const fn = jest.fn();
const reason = new Error();
const [newCtx, abort] = context.withAbort(ctx);
context.useAbort(ctx).catch(fn);
context.useAbort(newCtx).catch(fn);
expect(fn).toHaveBeenCalledTimes(0);
abort(reason);
await expect(context.useAbort(newCtx)).rejects.toBe(reason);
expect(fn).toHaveBeenCalledTimes(1);
});
it("should inherit abort", async () => {
const reason = new Error();
const [newCtx, abort] = context.withAbort(ctx);
const [anotherCtx] = context.withAbort(newCtx);
abort(reason);
await expect(context.useAbort(newCtx)).rejects.toBe(reason);
await expect(context.useAbort(anotherCtx)).rejects.toBe(reason);
});
});
describe("withTimeout", () => {
it("should abort on a timeout", async () => {
const start = performance.now();
const [newCtx] = context.withTimeout(ctx, 100);
await expect(context.useAbort(newCtx)).rejects.toBeInstanceOf(Error);
const end = performance.now();
expect(Math.ceil(end - start)).toBeGreaterThanOrEqual(100);
});
it("should allow manual abort", async () => {
const reason = new Error();
const [newCtx, abort] = context.withTimeout(ctx, 100);
abort(reason);
await expect(context.useAbort(newCtx)).rejects.toBe(reason);
});
});
});