forked from SmartDropLabs/smartdrop-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuseSorobanQuery.test.ts
More file actions
496 lines (415 loc) · 14.2 KB
/
Copy pathuseSorobanQuery.test.ts
File metadata and controls
496 lines (415 loc) · 14.2 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
491
492
493
494
495
496
import { createElement, type ReactNode } from "react";
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import { waitFor } from "@testing-library/react";
import { afterEach, describe, expect, it, vi } from "vitest";
import { renderHook, act } from "@/test/renderHook";
import { sorobanService } from "@/lib/soroban";
import {
usePoolDepositors,
useLockAssetsFeePreview,
useSetBoost,
useUnlockAssets,
} from "./useSorobanQuery";
vi.mock("@/lib/soroban", async (importOriginal) => {
const actual = await importOriginal<typeof import("@/lib/soroban")>();
return { ...actual, simulateLockAssets: vi.fn() };
});
vi.mock("@/context/StellarWalletContext", () => ({
useStellarWallet: vi.fn(),
}));
vi.mock("@chakra-ui/react", async (importOriginal) => {
const actual = await importOriginal<typeof import("@chakra-ui/react")>();
return { ...actual, useToast: vi.fn() };
});
const { simulateLockAssets } = await import("@/lib/soroban");
const simulateLockAssetsMock = vi.mocked(simulateLockAssets);
function wrapper({ children }: { children: ReactNode }) {
const client = new QueryClient({
defaultOptions: { queries: { retry: false } },
});
return createElement(QueryClientProvider, { client }, children);
}
afterEach(() => {
vi.restoreAllMocks();
simulateLockAssetsMock.mockReset();
vi.useRealTimers();
});
describe("usePoolDepositors (#143)", () => {
it("fetches depositors for the given pool through sorobanService", async () => {
const depositors = [
{ address: "GDEP1", amount: "100", credits: "10" },
{ address: "GDEP2", amount: "50", credits: "5" },
];
const spy = vi
.spyOn(sorobanService, "getPoolDepositors")
.mockResolvedValue(depositors);
const { result } = renderHook(() => usePoolDepositors("pool-xlm", 20), {
wrapper,
});
await waitFor(() => expect(result.current.data).toEqual(depositors));
expect(spy).toHaveBeenCalledWith("pool-xlm", 20);
});
it("does not fetch when poolId is empty", async () => {
const spy = vi
.spyOn(sorobanService, "getPoolDepositors")
.mockResolvedValue([]);
renderHook(() => usePoolDepositors("", 20), { wrapper });
// Give any accidental fetch a chance to fire before asserting it didn't.
await new Promise((r) => setTimeout(r, 0));
expect(spy).not.toHaveBeenCalled();
});
it("defaults limit to 20 when not provided", async () => {
const spy = vi
.spyOn(sorobanService, "getPoolDepositors")
.mockResolvedValue([]);
renderHook(() => usePoolDepositors("pool-xlm"), { wrapper });
await waitFor(() => expect(spy).toHaveBeenCalledWith("pool-xlm", 20));
});
});
describe("useLockAssetsFeePreview (#134)", () => {
it("debounces a rapid keystroke burst into a single simulateLockAssets call using the final value", async () => {
vi.useFakeTimers();
simulateLockAssetsMock.mockResolvedValue({
transaction: {} as never,
simulation: {} as never,
feePreview: "100",
});
let amount = "1";
const { result, rerender } = renderHook(
() =>
useLockAssetsFeePreview({
publicKey: "GPAYER",
poolContractId: "CPOOL",
amount,
}),
{ wrapper },
);
// A keystroke burst — each character typed on the way to "12345", none
// of them separated by enough real time for the debounce to settle.
for (const next of ["12", "123", "1234", "12345"]) {
amount = next;
act(() => rerender());
}
// Still within the debounce window — no RPC call yet, but the UI must
// already reflect a pending state (not look inert).
expect(simulateLockAssetsMock).not.toHaveBeenCalled();
expect(result.current.isFetching).toBe(true);
await act(async () => {
await vi.advanceTimersByTimeAsync(350);
});
expect(simulateLockAssetsMock).toHaveBeenCalledTimes(1);
expect(simulateLockAssetsMock).toHaveBeenCalledWith({
publicKey: "GPAYER",
poolContractId: "CPOOL",
amount: "12345",
});
});
it("still produces a fee preview for a single, non-rapid amount entry", async () => {
vi.useFakeTimers();
simulateLockAssetsMock.mockResolvedValue({
transaction: {} as never,
simulation: {} as never,
feePreview: "42",
});
const { result } = renderHook(
() =>
useLockAssetsFeePreview({
publicKey: "GPAYER",
poolContractId: "CPOOL",
amount: "10",
}),
{ wrapper },
);
await act(async () => {
await vi.advanceTimersByTimeAsync(350);
});
await act(async () => {
await vi.runAllTimersAsync();
});
expect(simulateLockAssetsMock).toHaveBeenCalledTimes(1);
expect(result.current.data?.feePreview).toBe("42");
});
it("does not call simulateLockAssets for an invalid/empty amount, even after the debounce window", async () => {
vi.useFakeTimers();
simulateLockAssetsMock.mockResolvedValue({
transaction: {} as never,
simulation: {} as never,
feePreview: "0",
});
renderHook(
() =>
useLockAssetsFeePreview({
publicKey: "GPAYER",
poolContractId: "CPOOL",
amount: "",
}),
{ wrapper },
);
await act(async () => {
await vi.advanceTimersByTimeAsync(350);
});
expect(simulateLockAssetsMock).not.toHaveBeenCalled();
});
it("does not let a stale in-flight call from a superseded amount overwrite the fresher result", async () => {
vi.useFakeTimers();
let resolveFirst: (v: {
transaction: never;
simulation: never;
feePreview: string;
}) => void;
const firstCall = new Promise<{
transaction: never;
simulation: never;
feePreview: string;
}>((resolve) => {
resolveFirst = resolve;
});
simulateLockAssetsMock
.mockReturnValueOnce(firstCall)
.mockResolvedValueOnce({
transaction: {} as never,
simulation: {} as never,
feePreview: "second",
});
let amount = "10";
const { result, rerender } = renderHook(
() =>
useLockAssetsFeePreview({
publicKey: "GPAYER",
poolContractId: "CPOOL",
amount,
}),
{ wrapper },
);
// Settle the first debounced amount so its (slow) request starts.
await act(async () => {
await vi.advanceTimersByTimeAsync(350);
});
expect(simulateLockAssetsMock).toHaveBeenCalledTimes(1);
// Before the first request resolves, the user changes the amount again
// and that one also settles and resolves (fast).
amount = "20";
act(() => rerender());
await act(async () => {
await vi.advanceTimersByTimeAsync(350);
});
await act(async () => {
await vi.runAllTimersAsync();
});
expect(simulateLockAssetsMock).toHaveBeenCalledTimes(2);
expect(result.current.data?.feePreview).toBe("second");
// Now the slow, superseded first request finally resolves — it must
// not clobber the newer, already-displayed result.
await act(async () => {
resolveFirst({
transaction: {} as never,
simulation: {} as never,
feePreview: "first",
});
await Promise.resolve();
});
expect(result.current.data?.feePreview).toBe("second");
});
});
describe("useSetBoost (#92)", () => {
const TEST_PUBLIC_KEY =
"GAAZI4TCR3TY5OJHCTJC2A4QSY6CJWJH5IAJTGKIN2ER7LBNVKOCCWN";
const POOL_ID = "pool-xlm";
let queryClient: QueryClient;
let toastMock: ReturnType<typeof vi.fn>;
beforeEach(() => {
queryClient = new QueryClient({
defaultOptions: { queries: { retry: false } },
});
});
function boostWrapper({ children }: { children: ReactNode }) {
return createElement(QueryClientProvider, { client: queryClient }, children);
}
beforeEach(async () => {
const { useStellarWallet } = await import(
"@/context/StellarWalletContext"
);
vi.mocked(useStellarWallet).mockReturnValue({
publicKey: TEST_PUBLIC_KEY,
isConnected: true,
walletApi: { signTransaction: vi.fn().mockResolvedValue("signed-xdr") },
connect: vi.fn(),
disconnect: vi.fn(),
});
const { useToast } = await import("@chakra-ui/react");
toastMock = vi.fn();
vi.mocked(useToast).mockReturnValue(toastMock);
});
it("calls sorobanService.setBoost with correct arguments", async () => {
const spy = vi
.spyOn(sorobanService, "setBoost")
.mockResolvedValue({ success: true, transactionHash: "txhash" });
const { result } = renderHook(() => useSetBoost(), {
wrapper: boostWrapper,
});
await act(async () => {
result.current.mutate({ poolId: POOL_ID, allocationPercentage: 50 });
});
await waitFor(() => expect(result.current.isSuccess).toBe(true));
expect(spy).toHaveBeenCalledWith(
POOL_ID,
TEST_PUBLIC_KEY,
50,
expect.objectContaining({ signTransaction: expect.any(Function) }),
);
});
it("shows success toast and invalidates queries on success", async () => {
vi.spyOn(sorobanService, "setBoost").mockResolvedValue({
success: true,
transactionHash: "txhash123",
});
const invalidateSpy = vi.spyOn(queryClient, "invalidateQueries");
const { result } = renderHook(() => useSetBoost(), {
wrapper: boostWrapper,
});
await act(async () => {
result.current.mutate({ poolId: POOL_ID, allocationPercentage: 75 });
});
await waitFor(() => expect(result.current.isSuccess).toBe(true));
expect(toastMock).toHaveBeenCalledWith(
expect.objectContaining({
title: "Boost Configuration Updated",
description: "Boost set to 75%",
status: "success",
}),
);
expect(invalidateSpy).toHaveBeenCalledWith({
queryKey: ["userPosition", POOL_ID],
});
expect(invalidateSpy).toHaveBeenCalledWith({
queryKey: ["userCredits", POOL_ID],
});
expect(invalidateSpy).toHaveBeenCalledWith({
queryKey: ["boostConfig", POOL_ID],
});
});
it("shows error toast when setBoost fails", async () => {
vi.spyOn(sorobanService, "setBoost").mockResolvedValue({
success: false,
error: "Simulation failed",
});
const { result } = renderHook(() => useSetBoost(), {
wrapper: boostWrapper,
});
await act(async () => {
result.current.mutate({ poolId: POOL_ID, allocationPercentage: 50 });
});
await waitFor(() => expect(result.current.isSuccess).toBe(true));
expect(toastMock).toHaveBeenCalledWith(
expect.objectContaining({
title: "Boost Configuration Failed",
status: "error",
}),
);
});
it("shows error toast when wallet is not connected", async () => {
const { useStellarWallet } = await import(
"@/context/StellarWalletContext"
);
vi.mocked(useStellarWallet).mockReturnValue({
publicKey: null,
isConnected: false,
walletApi: null,
connect: vi.fn(),
disconnect: vi.fn(),
});
const { result } = renderHook(() => useSetBoost(), {
wrapper: boostWrapper,
});
await act(async () => {
result.current.mutate({ poolId: POOL_ID, allocationPercentage: 50 });
});
await waitFor(() => expect(result.current.isError).toBe(true));
expect(result.current.error?.message).toBe(
"Wallet not connected",
);
});
it("shows error toast when service throws", async () => {
vi.spyOn(sorobanService, "setBoost").mockRejectedValue(
new Error("Network error"),
);
const { result } = renderHook(() => useSetBoost(), {
wrapper: boostWrapper,
});
await act(async () => {
result.current.mutate({ poolId: POOL_ID, allocationPercentage: 50 });
});
await waitFor(() => expect(result.current.isError).toBe(true));
expect(toastMock).toHaveBeenCalledWith(
expect.objectContaining({
title: "Transaction Error",
description: "Network error",
status: "error",
}),
);
});
});
describe("useUnlockAssets (#138)", () => {
const TEST_PUBLIC_KEY =
"GAAZI4TCR3TY5OJHCTJC2A4QSY6CJWJH5IAJTGKIN2ER7LBNVKOCCWN";
const POOL_ID = "pool-xlm";
let queryClient: QueryClient;
let toastMock: ReturnType<typeof vi.fn>;
beforeEach(() => {
queryClient = new QueryClient({
defaultOptions: { queries: { retry: false } },
});
});
function unlockWrapper({ children }: { children: ReactNode }) {
return createElement(QueryClientProvider, { client: queryClient }, children);
}
beforeEach(async () => {
const { useStellarWallet } = await import(
"@/context/StellarWalletContext"
);
vi.mocked(useStellarWallet).mockReturnValue({
publicKey: TEST_PUBLIC_KEY,
isConnected: true,
walletApi: { signTransaction: vi.fn().mockResolvedValue("signed-xdr") },
connect: vi.fn(),
disconnect: vi.fn(),
});
const { useToast } = await import("@chakra-ui/react");
toastMock = vi.fn();
vi.mocked(useToast).mockReturnValue(toastMock);
});
it("invalidates the stellarBalance cache on success, matching useLockAssets", async () => {
vi.spyOn(sorobanService, "unlockAssets").mockResolvedValue({
success: true,
transactionHash: "txhash123",
});
const invalidateSpy = vi.spyOn(queryClient, "invalidateQueries");
const { result } = renderHook(() => useUnlockAssets(), {
wrapper: unlockWrapper,
});
await act(async () => {
result.current.mutate({ poolId: POOL_ID, amount: "10" });
});
await waitFor(() => expect(result.current.isSuccess).toBe(true));
expect(invalidateSpy).toHaveBeenCalledWith({
queryKey: ["stellarBalance", TEST_PUBLIC_KEY],
});
});
it("does not invalidate stellarBalance when the unlock fails", async () => {
vi.spyOn(sorobanService, "unlockAssets").mockResolvedValue({
success: false,
error: "Simulation failed",
});
const invalidateSpy = vi.spyOn(queryClient, "invalidateQueries");
const { result } = renderHook(() => useUnlockAssets(), {
wrapper: unlockWrapper,
});
await act(async () => {
result.current.mutate({ poolId: POOL_ID, amount: "10" });
});
await waitFor(() => expect(result.current.isSuccess).toBe(true));
expect(invalidateSpy).not.toHaveBeenCalledWith({
queryKey: ["stellarBalance", TEST_PUBLIC_KEY],
});
});
});