-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathclient.test.ts
More file actions
490 lines (414 loc) · 16.5 KB
/
client.test.ts
File metadata and controls
490 lines (414 loc) · 16.5 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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
import type { Address } from "viem";
import { beforeEach, describe, expect, it, vi } from "vitest";
import { ENSNamespaceIds, type Name } from "../ens";
import { PluginName } from "../ensindexer/config/types";
import { ChainIndexingStatusIds } from "../indexing-status/chain-indexing-status-snapshot";
import { CrossChainIndexingStrategyIds } from "../indexing-status/cross-chain-indexing-status-snapshot";
import { OmnichainIndexingStatusIds } from "../indexing-status/omnichain-indexing-status-snapshot";
import type { SerializedOmnichainIndexingStatusSnapshotFollowing } from "../indexing-status/serialize/omnichain-indexing-status-snapshot";
import type { ResolverRecordsSelection } from "../resolution";
import { RangeTypeIds } from "../shared/blockrange";
import { deserializeEnsApiIndexingStatusResponse } from "./api/indexing-status/deserialize";
import {
type EnsApiIndexingStatusResponse,
EnsApiIndexingStatusResponseCodes,
} from "./api/indexing-status/response";
import { serializeEnsApiIndexingStatusResponse } from "./api/indexing-status/serialize";
import type { SerializedEnsApiIndexingStatusResponseOk } from "./api/indexing-status/serialized-response";
import type {
ResolvePrimaryNameResponse,
ResolvePrimaryNamesResponse,
} from "./api/resolution/types";
import type { ErrorResponse } from "./api/shared/errors/response";
import { EnsApiClient } from "./client";
import { ClientError } from "./client-error";
import { deserializeEnsApiPublicConfig } from "./config/deserialize";
import type { SerializedEnsApiPublicConfig } from "./config/serialized-types";
import { DEFAULT_ENSNODE_API_URL_MAINNET, getDefaultEnsNodeUrl } from "./deployments";
const EXAMPLE_NAME: Name = "example.eth";
const EXAMPLE_ADDRESS: Address = "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045";
const EXAMPLE_SELECTION = {
addresses: [60],
texts: ["avatar", "com.twitter"],
} as const satisfies ResolverRecordsSelection;
const EXAMPLE_RECORDS_RESPONSE = {
addresses: { 60: EXAMPLE_ADDRESS },
texts: {
avatar: "https://example.com/image.jpg",
"com.twitter": "example",
},
};
const EXAMPLE_PRIMARY_NAME_RESPONSE = {
name: EXAMPLE_NAME,
accelerationRequested: false,
accelerationAttempted: false,
} satisfies ResolvePrimaryNameResponse;
const EXAMPLE_PRIMARY_NAMES_RESPONSE = {
names: { 1: EXAMPLE_NAME },
accelerationRequested: false,
accelerationAttempted: false,
} satisfies ResolvePrimaryNamesResponse;
const EXAMPLE_ERROR_RESPONSE: ErrorResponse = { message: "error" };
const EXAMPLE_CONFIG_RESPONSE = {
versionInfo: {
ensApi: "1.9.0",
ensNormalize: "1.11.1",
},
theGraphFallback: {
canFallback: false,
reason: "no-api-key",
},
ensIndexerPublicConfig: {
ensRainbowPublicConfig: {
version: "0.31.0",
labelSet: { labelSetId: "subgraph", highestLabelSetVersion: 0 },
recordsCount: 100,
},
labelSet: {
labelSetId: "subgraph",
labelSetVersion: 0,
},
indexedChainIds: [1, 8453, 59144, 10, 42161, 534352],
databaseSchemaName: "alphaSchema0.31.0",
isSubgraphCompatible: false,
namespace: "mainnet",
plugins: [
PluginName.Subgraph,
PluginName.Basenames,
PluginName.Lineanames,
PluginName.ThreeDNS,
PluginName.ProtocolAcceleration,
PluginName.Registrars,
],
versionInfo: {
nodejs: "22.18.0",
ponder: "0.11.43",
ensDb: "0.32.0",
ensIndexer: "0.32.0",
ensNormalize: "1.11.1",
},
},
} satisfies SerializedEnsApiPublicConfig;
const EXAMPLE_INDEXING_STATUS_BACKFILL_RESPONSE = deserializeEnsApiIndexingStatusResponse({
realtimeProjection: {
projectedAt: 1755182604,
worstCaseDistance: 1013,
snapshot: {
strategy: CrossChainIndexingStrategyIds.Omnichain,
slowestChainIndexingCursor: 1755181591,
snapshotTime: 1755182591,
omnichainSnapshot: {
omnichainStatus: OmnichainIndexingStatusIds.Backfill,
chains: {
"1": {
chainStatus: ChainIndexingStatusIds.Backfill,
config: {
rangeType: RangeTypeIds.LeftBounded,
startBlock: {
timestamp: 1489165544,
number: 3327417,
},
},
latestIndexedBlock: {
timestamp: 1755181591,
number: 3791243,
},
backfillEndBlock: {
timestamp: 1755182591,
number: 23139951,
},
},
"8453": {
chainStatus: ChainIndexingStatusIds.Queued,
config: {
rangeType: RangeTypeIds.LeftBounded,
startBlock: {
timestamp: 1755181691,
number: 17571480,
},
},
},
},
omnichainIndexingCursor: 1755181591,
},
},
},
responseCode: EnsApiIndexingStatusResponseCodes.Ok,
} satisfies SerializedEnsApiIndexingStatusResponseOk);
const _EXAMPLE_INDEXING_STATUS_FOLLOWING_RESPONSE: EnsApiIndexingStatusResponse =
deserializeEnsApiIndexingStatusResponse({
realtimeProjection: {
projectedAt: 1_499_456_547,
worstCaseDistance: 30,
snapshot: {
strategy: CrossChainIndexingStrategyIds.Omnichain,
slowestChainIndexingCursor: 1_499_456_517,
snapshotTime: 1_499_456_537,
omnichainSnapshot: {
omnichainStatus: OmnichainIndexingStatusIds.Following,
chains: {
"1": {
chainStatus: ChainIndexingStatusIds.Following,
config: {
rangeType: RangeTypeIds.LeftBounded,
startBlock: {
timestamp: 1_496_123_537,
number: 23_327_417,
},
},
latestIndexedBlock: {
timestamp: 1_499_456_517,
number: 23_791_243,
},
latestKnownBlock: {
timestamp: 1_499_456_527,
number: 23_791_247,
},
},
"8453": {
chainStatus: ChainIndexingStatusIds.Backfill,
config: {
rangeType: RangeTypeIds.LeftBounded,
startBlock: {
timestamp: 1_484_015_544,
number: 17_571_480,
},
},
latestIndexedBlock: {
timestamp: 1_499_456_516,
number: 17_599_999,
},
backfillEndBlock: {
timestamp: 1_499_456_529,
number: 18_000_000,
},
},
},
omnichainIndexingCursor: 1_499_456_517,
} satisfies SerializedOmnichainIndexingStatusSnapshotFollowing,
},
},
responseCode: EnsApiIndexingStatusResponseCodes.Ok,
});
// Mock fetch globally (auto-restored by vitest)
const mockFetch = vi.fn();
vi.stubGlobal("fetch", mockFetch);
describe("EnsApiClient", () => {
beforeEach(() => {
mockFetch.mockClear();
});
describe("constructor and options", () => {
it("should use default options when none provided", () => {
const client = new EnsApiClient();
const options = client.getOptions();
expect(options).toEqual({ url: getDefaultEnsNodeUrl(ENSNamespaceIds.Mainnet) });
});
it("should merge provided options with defaults", () => {
const customUrl = new URL("https://custom.api.com");
const client = new EnsApiClient({ url: customUrl });
const options = client.getOptions();
expect(options).toEqual({ url: customUrl });
});
it("should return frozen options object", () => {
const client = new EnsApiClient();
const options = client.getOptions();
expect(Object.isFrozen(options)).toBe(true);
});
});
describe("resolveRecords", () => {
// TODO: integrate with default-case expectations from resolution api and test behavior
it("should handle address and text selections", async () => {
const mockResponse = { records: EXAMPLE_RECORDS_RESPONSE };
mockFetch.mockResolvedValueOnce({ ok: true, json: async () => mockResponse });
const client = new EnsApiClient();
const response = await client.resolveRecords(EXAMPLE_NAME, EXAMPLE_SELECTION);
const expectedUrl = new URL(
`/api/resolve/records/${EXAMPLE_NAME}`,
DEFAULT_ENSNODE_API_URL_MAINNET,
);
expectedUrl.searchParams.set("addresses", EXAMPLE_SELECTION.addresses.join(","));
expectedUrl.searchParams.set("texts", EXAMPLE_SELECTION.texts.join(","));
expect(mockFetch).toHaveBeenCalledWith(expectedUrl);
expect(response).toEqual(mockResponse);
});
it("should include trace if specified", async () => {
const mockResponse = { records: EXAMPLE_RECORDS_RESPONSE, trace: [] };
mockFetch.mockResolvedValueOnce({ ok: true, json: async () => mockResponse });
const client = new EnsApiClient();
const response = await client.resolveRecords(EXAMPLE_NAME, EXAMPLE_SELECTION, {
trace: true,
});
const expectedUrl = new URL(
`/api/resolve/records/${EXAMPLE_NAME}`,
DEFAULT_ENSNODE_API_URL_MAINNET,
);
expectedUrl.searchParams.set("addresses", EXAMPLE_SELECTION.addresses.join(","));
expectedUrl.searchParams.set("texts", EXAMPLE_SELECTION.texts.join(","));
expectedUrl.searchParams.set("trace", "true");
expect(mockFetch).toHaveBeenCalledWith(expectedUrl);
expect(response).toEqual(mockResponse);
});
it("should throw error when API returns error", async () => {
mockFetch.mockResolvedValueOnce({ ok: false, json: async () => EXAMPLE_ERROR_RESPONSE });
const client = new EnsApiClient();
await expect(client.resolveRecords(EXAMPLE_NAME, EXAMPLE_SELECTION)).rejects.toThrowError(
ClientError,
);
});
});
describe("resolvePrimaryName", () => {
it("should make correct API call for primary name resolution", async () => {
mockFetch.mockResolvedValueOnce({
ok: true,
json: async () => EXAMPLE_PRIMARY_NAME_RESPONSE,
});
const client = new EnsApiClient();
const response = await client.resolvePrimaryName(EXAMPLE_ADDRESS, 1);
const expectedUrl = new URL(
`/api/resolve/primary-name/${EXAMPLE_ADDRESS}/1`,
DEFAULT_ENSNODE_API_URL_MAINNET,
);
expect(mockFetch).toHaveBeenCalledWith(expectedUrl);
expect(response).toEqual(EXAMPLE_PRIMARY_NAME_RESPONSE);
});
it("should include trace if specified", async () => {
const mockResponse = { name: EXAMPLE_NAME, trace: [] };
mockFetch.mockResolvedValueOnce({ ok: true, json: async () => mockResponse });
const client = new EnsApiClient();
const response = await client.resolvePrimaryName(EXAMPLE_ADDRESS, 1, { trace: true });
const expectedUrl = new URL(
`/api/resolve/primary-name/${EXAMPLE_ADDRESS}/1`,
DEFAULT_ENSNODE_API_URL_MAINNET,
);
expectedUrl.searchParams.set("trace", "true");
expect(mockFetch).toHaveBeenCalledWith(expectedUrl);
expect(response).toEqual(mockResponse);
});
it("should include accelerate=true if specified", async () => {
mockFetch.mockResolvedValueOnce({
ok: true,
json: async () => EXAMPLE_PRIMARY_NAME_RESPONSE,
});
const client = new EnsApiClient();
await client.resolvePrimaryName(EXAMPLE_ADDRESS, 1, { accelerate: true });
const expectedUrl = new URL(
`/api/resolve/primary-name/${EXAMPLE_ADDRESS}/1`,
DEFAULT_ENSNODE_API_URL_MAINNET,
);
expectedUrl.searchParams.set("accelerate", "true");
expect(mockFetch).toHaveBeenCalledWith(expectedUrl);
});
it("should throw error when API returns error", async () => {
mockFetch.mockResolvedValueOnce({ ok: false, json: async () => EXAMPLE_ERROR_RESPONSE });
const client = new EnsApiClient();
await expect(client.resolvePrimaryName(EXAMPLE_ADDRESS, 1)).rejects.toThrowError(ClientError);
});
});
describe("resolvePrimaryNames", () => {
it("should call the correct endpoint and return names", async () => {
mockFetch.mockResolvedValueOnce({
ok: true,
json: async () => EXAMPLE_PRIMARY_NAMES_RESPONSE,
});
const client = new EnsApiClient();
const response = await client.resolvePrimaryNames(EXAMPLE_ADDRESS);
const expectedUrl = new URL(
`/api/resolve/primary-names/${EXAMPLE_ADDRESS}`,
DEFAULT_ENSNODE_API_URL_MAINNET,
);
expect(mockFetch).toHaveBeenCalledWith(expectedUrl);
expect(response).toEqual(EXAMPLE_PRIMARY_NAMES_RESPONSE);
});
it("should include chainIds if specified", async () => {
mockFetch.mockResolvedValueOnce({
ok: true,
json: async () => EXAMPLE_PRIMARY_NAMES_RESPONSE,
});
const client = new EnsApiClient();
await client.resolvePrimaryNames(EXAMPLE_ADDRESS, { chainIds: [1, 10] });
const expectedUrl = new URL(
`/api/resolve/primary-names/${EXAMPLE_ADDRESS}`,
DEFAULT_ENSNODE_API_URL_MAINNET,
);
expectedUrl.searchParams.set("chainIds", "1,10");
expect(mockFetch).toHaveBeenCalledWith(expectedUrl);
});
it("should include trace if specified", async () => {
const mockResponse = { ...EXAMPLE_PRIMARY_NAMES_RESPONSE, trace: [] };
mockFetch.mockResolvedValueOnce({ ok: true, json: async () => mockResponse });
const client = new EnsApiClient();
const response = await client.resolvePrimaryNames(EXAMPLE_ADDRESS, { trace: true });
const expectedUrl = new URL(
`/api/resolve/primary-names/${EXAMPLE_ADDRESS}`,
DEFAULT_ENSNODE_API_URL_MAINNET,
);
expectedUrl.searchParams.set("trace", "true");
expect(mockFetch).toHaveBeenCalledWith(expectedUrl);
expect(response).toEqual(mockResponse);
});
it("should include accelerate=true if specified", async () => {
mockFetch.mockResolvedValueOnce({
ok: true,
json: async () => EXAMPLE_PRIMARY_NAMES_RESPONSE,
});
const client = new EnsApiClient();
await client.resolvePrimaryNames(EXAMPLE_ADDRESS, { accelerate: true });
const expectedUrl = new URL(
`/api/resolve/primary-names/${EXAMPLE_ADDRESS}`,
DEFAULT_ENSNODE_API_URL_MAINNET,
);
expectedUrl.searchParams.set("accelerate", "true");
expect(mockFetch).toHaveBeenCalledWith(expectedUrl);
});
it("should throw error when API returns error", async () => {
mockFetch.mockResolvedValueOnce({ ok: false, json: async () => EXAMPLE_ERROR_RESPONSE });
const client = new EnsApiClient();
await expect(client.resolvePrimaryNames(EXAMPLE_ADDRESS)).rejects.toThrowError(ClientError);
});
});
describe("Config API", () => {
it("can fetch config object successfully", async () => {
// arrange
const requestUrl = new URL(`/api/config`, DEFAULT_ENSNODE_API_URL_MAINNET);
const serializedMockedResponse = EXAMPLE_CONFIG_RESPONSE;
const mockedResponse = deserializeEnsApiPublicConfig(serializedMockedResponse);
const client = new EnsApiClient();
mockFetch.mockResolvedValueOnce({
ok: true,
json: async () => serializedMockedResponse,
});
// act & assert
await expect(client.config()).resolves.toStrictEqual(mockedResponse);
expect(mockFetch).toHaveBeenCalledWith(requestUrl);
});
it("should throw error when API returns error", async () => {
mockFetch.mockResolvedValueOnce({ ok: false, json: async () => EXAMPLE_ERROR_RESPONSE });
const client = new EnsApiClient();
await expect(client.config()).rejects.toThrow(/Fetching ENSApi Config Failed/i);
});
});
describe("Indexing Status API", () => {
it("can fetch overall indexing 'backfill' status object successfully", async () => {
// arrange
const requestUrl = new URL(`/api/indexing-status`, DEFAULT_ENSNODE_API_URL_MAINNET);
const mockedResponse = EXAMPLE_INDEXING_STATUS_BACKFILL_RESPONSE;
const client = new EnsApiClient();
mockFetch.mockResolvedValueOnce({
ok: true,
json: async () => serializeEnsApiIndexingStatusResponse(mockedResponse),
});
// act & assert
await expect(client.indexingStatus()).resolves.toStrictEqual(mockedResponse);
expect(mockFetch).toHaveBeenCalledWith(requestUrl);
});
it("should throw error when API returns error other than 503 error", async () => {
// arrange
const client = new EnsApiClient();
mockFetch.mockResolvedValueOnce({ ok: false, json: async () => EXAMPLE_ERROR_RESPONSE });
// act & assert
await expect(client.indexingStatus()).rejects.toThrow(
/Fetching ENSApi Indexing Status Failed/i,
);
});
});
});