-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathamirealtime-api.test.ts
More file actions
277 lines (233 loc) · 9.79 KB
/
amirealtime-api.test.ts
File metadata and controls
277 lines (233 loc) · 9.79 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
import {
buildAmIRealtimeResultOk,
ChainIndexingConfigTypeIds,
ChainIndexingStatusIds,
type ChainIndexingStatusSnapshotFollowing,
type CrossChainIndexingStatusSnapshot,
createRealtimeIndexingStatusProjection,
OmnichainIndexingStatusIds,
type UnixTimestamp,
} from "@ensnode/ensnode-sdk";
import { factory } from "@/lib/hono-factory";
import * as middleware from "@/middleware/indexing-status.middleware";
import amIRealtimeApi, { AMIREALTIME_DEFAULT_MAX_WORST_CASE_DISTANCE } from "./amirealtime-api"; // adjust import path as needed
vi.mock("@/middleware/indexing-status.middleware", () => ({
indexingStatusMiddleware: vi.fn(),
}));
const indexingStatusMiddlewareMock = vi.mocked(middleware.indexingStatusMiddleware);
describe("amirealtime-api", () => {
const now: UnixTimestamp = 1766123729;
const arrangeMockedIndexingStatusMiddleware = ({
now,
slowestChainIndexingCursor,
}: {
now: UnixTimestamp;
slowestChainIndexingCursor: UnixTimestamp;
}) => {
indexingStatusMiddlewareMock.mockImplementation(async (c, next) => {
const indexingStatus = {
omnichainSnapshot: {
omnichainStatus: OmnichainIndexingStatusIds.Following,
omnichainIndexingCursor: slowestChainIndexingCursor,
chains: new Map([
[
1,
{
chainStatus: ChainIndexingStatusIds.Following,
latestIndexedBlock: {
timestamp: now - 10,
number: 150,
},
latestKnownBlock: {
timestamp: now,
number: 151,
},
config: {
configType: ChainIndexingConfigTypeIds.Indefinite,
startBlock: {
number: 100,
timestamp: now - 1000,
},
},
} satisfies ChainIndexingStatusSnapshotFollowing,
],
]),
} as CrossChainIndexingStatusSnapshot["omnichainSnapshot"],
snapshotTime: now,
slowestChainIndexingCursor,
} satisfies Pick<
CrossChainIndexingStatusSnapshot,
"omnichainSnapshot" | "slowestChainIndexingCursor" | "snapshotTime"
> as CrossChainIndexingStatusSnapshot;
const realtimeProjection = createRealtimeIndexingStatusProjection(indexingStatus, now);
c.set("indexingStatus", realtimeProjection);
return await next();
});
};
let app: ReturnType<typeof factory.createApp>;
beforeEach(() => {
// Create a fresh app instance for each test with middleware registered
app = factory.createApp();
app.use(middleware.indexingStatusMiddleware);
app.route("/amirealtime", amIRealtimeApi);
});
afterEach(() => {
indexingStatusMiddlewareMock.mockReset();
});
describe("GET /amirealtime", () => {
describe("request", () => {
it("should accept valid maxWorstCaseDistance query param", async () => {
// Arrange: set `indexingStatus` context var
arrangeMockedIndexingStatusMiddleware({ now, slowestChainIndexingCursor: now - 10 });
// Act
const response = await app.request("http://localhost/amirealtime?maxWorstCaseDistance=300");
const responseJson = await response.json();
// Assert
expect(response.status).toBe(200);
expect(responseJson).toStrictEqual(
buildAmIRealtimeResultOk({
maxWorstCaseDistance: 300,
worstCaseDistance: 10,
slowestChainIndexingCursor: now - 10,
}),
);
});
it("should accept valid maxWorstCaseDistance query param (set to `0`)", async () => {
// Arrange: set `indexingStatus` context var
arrangeMockedIndexingStatusMiddleware({ now, slowestChainIndexingCursor: now });
// Act
const response = await app.request("http://localhost/amirealtime?maxWorstCaseDistance=0");
const responseJson = await response.json();
// Assert
expect(response.status).toBe(200);
expect(responseJson).toStrictEqual(
buildAmIRealtimeResultOk({
maxWorstCaseDistance: 0,
worstCaseDistance: 0,
slowestChainIndexingCursor: now,
}),
);
});
it("should use default maxWorstCaseDistance when unset", async () => {
// Arrange: set `indexingStatus` context var
arrangeMockedIndexingStatusMiddleware({ now, slowestChainIndexingCursor: now - 10 });
// Act
const response = await app.request("http://localhost/amirealtime?maxWorstCaseDistance");
const responseJson = await response.json();
// Assert
expect(response.status).toBe(200);
expect(responseJson).toStrictEqual(
buildAmIRealtimeResultOk({
maxWorstCaseDistance: AMIREALTIME_DEFAULT_MAX_WORST_CASE_DISTANCE,
worstCaseDistance: 10,
slowestChainIndexingCursor: now - 10,
}),
);
});
it("should use default maxWorstCaseDistance when not provided", async () => {
// Arrange: set `indexingStatus` context var
arrangeMockedIndexingStatusMiddleware({ now, slowestChainIndexingCursor: now - 10 });
// Act
const response = await app.request("http://localhost/amirealtime");
const responseJson = await response.json();
// Assert
expect(response.status).toBe(200);
expect(responseJson).toStrictEqual(
buildAmIRealtimeResultOk({
maxWorstCaseDistance: AMIREALTIME_DEFAULT_MAX_WORST_CASE_DISTANCE,
worstCaseDistance: 10,
slowestChainIndexingCursor: now - 10,
}),
);
});
it("should reject invalid maxWorstCaseDistance (negative number)", async () => {
// Arrange: set `indexingStatus` context var
arrangeMockedIndexingStatusMiddleware({ now, slowestChainIndexingCursor: now - 10 });
// Act
const response = await app.request("http://localhost/amirealtime?maxWorstCaseDistance=-1");
// Assert
expect(response.status).toBe(400);
await expect(response.text()).resolves.toMatch(
/maxWorstCaseDistance query param must be a non-negative integer/,
);
});
it("should reject invalid maxWorstCaseDistance (not a number)", async () => {
// Arrange: set `indexingStatus` context var
arrangeMockedIndexingStatusMiddleware({ now, slowestChainIndexingCursor: now - 10 });
// Act
const response = await app.request(
"http://localhost/amirealtime?maxWorstCaseDistance=invalid",
);
// Assert
expect(response.status).toBe(400);
await expect(response.text()).resolves.toMatch(
/maxWorstCaseDistance query param must be a number/,
);
});
});
describe("response", () => {
it("should return 200 when worstCaseDistance is below maxWorstCaseDistance", async () => {
// Arrange: set `indexingStatus` context var
arrangeMockedIndexingStatusMiddleware({ now, slowestChainIndexingCursor: now - 9 });
// Act
const response = await app.request("http://localhost/amirealtime?maxWorstCaseDistance=10");
const responseJson = await response.json();
// Assert
expect(response.status).toBe(200);
expect(responseJson).toStrictEqual(
buildAmIRealtimeResultOk({
maxWorstCaseDistance: 10,
slowestChainIndexingCursor: now - 9,
worstCaseDistance: 9,
}),
);
});
it("should return 200 when worstCaseDistance equals maxWorstCaseDistance", async () => {
// Arrange: set `indexingStatus` context var
arrangeMockedIndexingStatusMiddleware({ now, slowestChainIndexingCursor: now - 10 });
// Act
const response = await app.request("http://localhost/amirealtime?maxWorstCaseDistance=10");
const responseJson = await response.json();
// Assert
expect(response.status).toBe(200);
expect(responseJson).toStrictEqual(
buildAmIRealtimeResultOk({
maxWorstCaseDistance: 10,
slowestChainIndexingCursor: 1766123719,
worstCaseDistance: 10,
}),
);
});
it("should return 503 when worstCaseDistance exceeds maxWorstCaseDistance", async () => {
// Arrange: set `indexingStatus` context var
arrangeMockedIndexingStatusMiddleware({ now, slowestChainIndexingCursor: now - 11 });
// Act
const response = await app.request("http://localhost/amirealtime?maxWorstCaseDistance=10");
const responseJson = await response.json();
// Assert
expect(response.status).toBe(503);
expect(responseJson).toHaveProperty("errorMessage");
expect(responseJson.errorMessage).toMatch(
/Indexing Status 'worstCaseDistance' must be below or equal to the requested 'maxWorstCaseDistance'; worstCaseDistance = 11; maxWorstCaseDistance = 10/,
);
});
it("should return 503 when indexing status has not been resolved", async () => {
// Arrange: set `indexingStatus` context var
indexingStatusMiddlewareMock.mockImplementation(async (c, next) => {
c.set("indexingStatus", new Error("Network error"));
return await next();
});
// Act
const response = await app.request("http://localhost/amirealtime?maxWorstCaseDistance=10");
const responseJson = await response.json();
// Assert
expect(response.status).toBe(503);
expect(responseJson).toHaveProperty("errorMessage");
expect(responseJson.errorMessage).toMatch(
/Indexing Status must be resolved successfully before 'maxWorstCaseDistance' can be applied./,
);
});
});
});
});