forked from Invoice-Liquidity-Network/ILN-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuseWallet.test.ts
More file actions
312 lines (264 loc) · 9.8 KB
/
Copy pathuseWallet.test.ts
File metadata and controls
312 lines (264 loc) · 9.8 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
import { describe, it, expect, beforeEach, vi } from "vitest";
import { renderHook, act, waitFor } from "@testing-library/react";
import { useWallet } from "../useWallet";
import { WalletProvider } from "@/context/WalletContext";
import * as freighterApi from "@stellar/freighter-api";
// Mock Freighter API
vi.mock("@stellar/freighter-api");
// Mock fetch API
global.fetch = vi.fn();
const MOCK_PUBLIC_KEY = "GBZXN7PIRZGNMHGA7MUSC23TFSQ55TWREN3QQR5UELWXONE4O36XL7QP";
const MOCK_JWT_TOKEN = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiR0JaWE43UElSWkdOTUhHQTdNVVNDMjNURlNRNTVUV1JFTjNRUVI1VUVMVlhPTkU0TzM2WEw3UVAiLCJpYXQiOjE2ODk5NzE2MDAsImV4cCI6MTY5MDA1ODAwMH0.test";
const MOCK_CHALLENGE_XDR =
"AAAAAgAAAAA..."; // Simplified mock XDR
const MOCK_SIGNED_CHALLENGE_XDR =
"AAAAAwAAAAA..."; // Simplified mock signed XDR
describe("useWallet Hook", () => {
beforeEach(() => {
vi.clearAllMocks();
(global.fetch as any).mockClear();
});
const wrapper = ({ children }: { children: React.ReactNode }) => (
<WalletProvider>{children}</WalletProvider>
);
describe("Initial State", () => {
it("should return disconnected state initially", () => {
const { result } = renderHook(() => useWallet(), { wrapper });
expect(result.current.isConnected).toBe(false);
expect(result.current.publicKey).toBeNull();
expect(result.current.jwt).toBeNull();
});
it("should throw error when used outside WalletProvider", () => {
expect(() => {
renderHook(() => useWallet());
}).toThrow("useWallet must be used within a WalletProvider");
});
});
describe("Connection Flow", () => {
it("should expose connect, disconnect, and signTransaction methods", () => {
const { result } = renderHook(() => useWallet(), { wrapper });
expect(typeof result.current.connect).toBe("function");
expect(typeof result.current.disconnect).toBe("function");
expect(typeof result.current.signTransaction).toBe("function");
});
it("should handle SEP-10 challenge/verify on connect", async () => {
// Mock Freighter connection
(freighterApi.isConnected as any).mockResolvedValue(true);
(freighterApi.setAllowed as any).mockResolvedValue(true);
(freighterApi.getAddress as any).mockResolvedValue({
address: MOCK_PUBLIC_KEY,
});
// Mock SEP-10 challenge endpoint
(global.fetch as any).mockImplementation((url: string) => {
if (url.includes("/api/auth/challenge")) {
return Promise.resolve(
new Response(JSON.stringify({ challenge: MOCK_CHALLENGE_XDR }), {
status: 200,
}),
);
}
if (url.includes("/api/auth/verify")) {
return Promise.resolve(
new Response(JSON.stringify({ token: MOCK_JWT_TOKEN }), {
status: 200,
}),
);
}
return Promise.reject(new Error("Unknown endpoint"));
});
// Mock wallet signing
(freighterApi.signTransaction as any).mockResolvedValue(
MOCK_SIGNED_CHALLENGE_XDR,
);
const { result } = renderHook(() => useWallet(), { wrapper });
await act(async () => {
await result.current.connect();
});
// Verify SEP-10 flow was triggered
await waitFor(() => {
expect(global.fetch).toHaveBeenCalledWith(
expect.stringContaining("/api/auth/challenge"),
expect.anything(),
);
});
await waitFor(() => {
expect(global.fetch).toHaveBeenCalledWith(
"/api/auth/verify",
expect.objectContaining({
method: "POST",
headers: { "Content-Type": "application/json" },
}),
);
});
// JWT should be stored in memory
await waitFor(() => {
expect(result.current.jwt).toBe(MOCK_JWT_TOKEN);
});
});
});
describe("Disconnect", () => {
it("should clear JWT on disconnect", async () => {
// Mock Freighter connection
(freighterApi.isConnected as any).mockResolvedValue(true);
(freighterApi.setAllowed as any).mockResolvedValue(true);
(freighterApi.getAddress as any).mockResolvedValue({
address: MOCK_PUBLIC_KEY,
});
// Mock SEP-10 endpoints
(global.fetch as any).mockImplementation((url: string) => {
if (url.includes("/api/auth/challenge")) {
return Promise.resolve(
new Response(JSON.stringify({ challenge: MOCK_CHALLENGE_XDR }), {
status: 200,
}),
);
}
if (url.includes("/api/auth/verify")) {
return Promise.resolve(
new Response(JSON.stringify({ token: MOCK_JWT_TOKEN }), {
status: 200,
}),
);
}
return Promise.reject(new Error("Unknown endpoint"));
});
(freighterApi.signTransaction as any).mockResolvedValue(
MOCK_SIGNED_CHALLENGE_XDR,
);
const { result } = renderHook(() => useWallet(), { wrapper });
// Connect first
await act(async () => {
await result.current.connect();
});
await waitFor(() => {
expect(result.current.jwt).toBe(MOCK_JWT_TOKEN);
});
// Now disconnect
act(() => {
result.current.disconnect();
});
// JWT should be cleared
expect(result.current.jwt).toBeNull();
expect(result.current.isConnected).toBe(false);
});
});
describe("JWT Storage", () => {
it("should store JWT in memory, not localStorage", async () => {
const localStorageSpy = vi.spyOn(window.localStorage, "setItem");
// Mock Freighter connection
(freighterApi.isConnected as any).mockResolvedValue(true);
(freighterApi.setAllowed as any).mockResolvedValue(true);
(freighterApi.getAddress as any).mockResolvedValue({
address: MOCK_PUBLIC_KEY,
});
// Mock SEP-10 endpoints
(global.fetch as any).mockImplementation((url: string) => {
if (url.includes("/api/auth/challenge")) {
return Promise.resolve(
new Response(JSON.stringify({ challenge: MOCK_CHALLENGE_XDR }), {
status: 200,
}),
);
}
if (url.includes("/api/auth/verify")) {
return Promise.resolve(
new Response(JSON.stringify({ token: MOCK_JWT_TOKEN }), {
status: 200,
}),
);
}
return Promise.reject(new Error("Unknown endpoint"));
});
(freighterApi.signTransaction as any).mockResolvedValue(
MOCK_SIGNED_CHALLENGE_XDR,
);
const { result } = renderHook(() => useWallet(), { wrapper });
await act(async () => {
await result.current.connect();
});
await waitFor(() => {
expect(result.current.jwt).toBe(MOCK_JWT_TOKEN);
});
// localStorage should not be called for JWT storage
// (it may be called for other things, but not for the JWT itself)
const jwtSetItemCalls = localStorageSpy.mock.calls.filter((call) =>
call[0].includes("jwt"),
);
expect(jwtSetItemCalls).toHaveLength(0);
localStorageSpy.mockRestore();
});
});
describe("Public Key Exposure", () => {
it("should expose connected wallet's public key", async () => {
// Mock Freighter connection
(freighterApi.isConnected as any).mockResolvedValue(true);
(freighterApi.setAllowed as any).mockResolvedValue(true);
(freighterApi.getAddress as any).mockResolvedValue({
address: MOCK_PUBLIC_KEY,
});
// Mock SEP-10 endpoints
(global.fetch as any).mockImplementation((url: string) => {
if (url.includes("/api/auth/challenge")) {
return Promise.resolve(
new Response(JSON.stringify({ challenge: MOCK_CHALLENGE_XDR }), {
status: 200,
}),
);
}
if (url.includes("/api/auth/verify")) {
return Promise.resolve(
new Response(JSON.stringify({ token: MOCK_JWT_TOKEN }), {
status: 200,
}),
);
}
return Promise.reject(new Error("Unknown endpoint"));
});
(freighterApi.signTransaction as any).mockResolvedValue(
MOCK_SIGNED_CHALLENGE_XDR,
);
const { result } = renderHook(() => useWallet(), { wrapper });
await act(async () => {
await result.current.connect();
});
await waitFor(() => {
expect(result.current.publicKey).toBe(MOCK_PUBLIC_KEY);
});
});
});
describe("Error Handling", () => {
it("should handle SEP-10 challenge fetch error", async () => {
// Mock Freighter connection
(freighterApi.isConnected as any).mockResolvedValue(true);
(freighterApi.setAllowed as any).mockResolvedValue(true);
(freighterApi.getAddress as any).mockResolvedValue({
address: MOCK_PUBLIC_KEY,
});
// Mock SEP-10 challenge endpoint to fail
(global.fetch as any).mockImplementation((url: string) => {
if (url.includes("/api/auth/challenge")) {
return Promise.resolve(
new Response(JSON.stringify({ error: "Failed" }), { status: 500 }),
);
}
return Promise.reject(new Error("Unknown endpoint"));
});
const { result } = renderHook(() => useWallet(), { wrapper });
await expect(
act(async () => {
await result.current.connect();
}),
).rejects.toThrow();
// JWT should remain null on error
expect(result.current.jwt).toBeNull();
});
it("should throw error when signTransaction is called while disconnected", async () => {
const { result } = renderHook(() => useWallet(), { wrapper });
await expect(
act(async () => {
await result.current.signTransaction("test-xdr");
}),
).rejects.toThrow("Wallet is not connected");
});
});
});