-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathuseSee.test.ts
88 lines (70 loc) · 2.08 KB
/
useSee.test.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
81
82
83
84
85
86
87
88
import { renderHook, act } from "@testing-library/react";
import { vi } from "vitest";
import { useSse } from "../useSse";
import { TestQueryClientProvider } from "@/lib/test-utils";
vi.mock("react-router-dom", () => ({
useLocation: vi.fn(() => ({ pathname: "/" })),
}));
const mockInvalidate = vi.fn();
vi.mock("@tanstack/react-query", async () => {
const original = await vi.importActual<
typeof import("@tanstack/react-query")
>("@tanstack/react-query");
return {
...original,
useQueryClient: () => ({
invalidateQueries: mockInvalidate,
}),
};
});
class MockEventSource {
static instances: MockEventSource[] = [];
private _onmessage: ((event: MessageEvent) => void) | null = null;
constructor() {
MockEventSource.instances.push(this);
}
get onmessage() {
return this._onmessage;
}
set onmessage(handler: ((event: MessageEvent) => void) | null) {
this._onmessage = handler;
}
close() {}
static triggerMessage(data: string) {
MockEventSource.instances.forEach((instance) => {
if (instance.onmessage) {
instance.onmessage({ data } as MessageEvent);
}
});
}
}
let originalEventSource: typeof EventSource;
describe("useSse", () => {
beforeAll(() => {
vi.useFakeTimers();
originalEventSource = global.EventSource;
global.EventSource = MockEventSource as unknown as typeof EventSource;
Object.defineProperty(global, "location", {
value: {
reload: vi.fn(),
},
writable: true,
});
});
afterAll(() => {
vi.clearAllMocks();
vi.useRealTimers();
global.EventSource = originalEventSource;
});
it("should invalidate queries if new alert is detected", () => {
renderHook(() => useSse(), { wrapper: TestQueryClientProvider });
expect(MockEventSource.instances.length).toBe(1);
const instance = MockEventSource.instances[0];
expect(instance).toBeDefined();
expect(instance?.onmessage).toBeDefined();
act(() => {
MockEventSource.triggerMessage("new alert detected");
});
expect(mockInvalidate).toHaveBeenCalled();
});
});