forked from FlowwStar/FlowStar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuse-token-price.test.ts
More file actions
245 lines (215 loc) · 7.24 KB
/
Copy pathuse-token-price.test.ts
File metadata and controls
245 lines (215 loc) · 7.24 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
import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest'
import { renderHook, waitFor } from '@testing-library/react'
import { formatUsd } from '@/hooks/use-token-price'
import type { StreamData } from '@/types/stream'
const originalFetch = global.fetch
// The hook keeps its price cache in module-level state, so each test gets a
// fresh module instance (and therefore an empty cache) instead of bleeding
// cached prices into later tests.
async function loadHook() {
const mod = await import('@/hooks/use-token-price')
return mod
}
describe('formatUsd', () => {
it('formats sub-dollar values with 4 decimals', () => {
expect(formatUsd(0.1234)).toBe('$0.1234')
})
it('formats normal values with 2 decimals', () => {
expect(formatUsd(12.3)).toBe('$12.30')
})
it('formats large values with thousands separators', () => {
expect(formatUsd(12345.678)).toBe('$12,345.68')
})
})
describe('useTokenPrice', () => {
beforeEach(() => {
vi.resetModules()
global.fetch = vi.fn()
})
afterEach(() => {
global.fetch = originalFetch
})
it('returns a fixed $1 price for stablecoins without fetching', async () => {
const { useTokenPrice } = await loadHook()
const { result } = renderHook(() => useTokenPrice('USDC'))
await waitFor(() => {
expect(result.current.usdPrice).toBe(1)
})
expect(global.fetch).not.toHaveBeenCalled()
})
it('returns null price for unknown, non-XLM symbols', async () => {
const { useTokenPrice } = await loadHook()
const { result } = renderHook(() => useTokenPrice('SOME_UNKNOWN_TOKEN'))
await waitFor(() => {
expect(result.current.usdPrice).toBeNull()
expect(result.current.loading).toBe(false)
})
})
it('fetches and returns the XLM price', async () => {
const { useTokenPrice } = await loadHook()
vi.mocked(global.fetch).mockResolvedValue({
ok: true,
json: async () => ({ price: 0.42 }),
} as Response)
const { result } = renderHook(() => useTokenPrice('XLM'))
await waitFor(() => {
expect(result.current.usdPrice).toBe(0.42)
expect(result.current.loading).toBe(false)
})
})
it('caches the fetched price', async () => {
const { useTokenPrice } = await loadHook()
vi.mocked(global.fetch).mockResolvedValueOnce({
ok: true,
json: async () => ({ price: 0.45 }),
} as Response)
const { result, unmount } = renderHook(() => useTokenPrice('XLM'))
await waitFor(() => {
expect(result.current.usdPrice).toBe(0.45)
})
unmount()
// Second call should use cache, not call fetch
const { result: result2 } = renderHook(() => useTokenPrice('XLM'))
await waitFor(() => {
expect(result2.current.usdPrice).toBe(0.45)
})
expect(global.fetch).toHaveBeenCalledTimes(1)
})
it('handles error fallback by retaining the previous price if available', async () => {
const { useTokenPrice } = await loadHook()
// 1. Initial successful fetch
vi.mocked(global.fetch).mockResolvedValueOnce({
ok: true,
json: async () => ({ price: 0.5 }),
} as Response)
const { result, unmount } = renderHook(() => useTokenPrice('XLM'))
await waitFor(() => {
expect(result.current.usdPrice).toBe(0.5)
})
unmount()
// 2. Mock Date.now to simulate time passing beyond the cache threshold
const realDateNow = Date.now.bind(global.Date)
const futureTime = realDateNow() + 5 * 60 * 1000 + 1000
global.Date.now = vi.fn(() => futureTime)
// 3. Make the next fetch fail
vi.mocked(global.fetch).mockRejectedValueOnce(new Error('Network error'))
const { result: result2 } = renderHook(() => useTokenPrice('XLM'))
await waitFor(() => {
expect(result2.current.loading).toBe(false)
})
// The price should still be 0.50 from the previous successful fetch
expect(result2.current.usdPrice).toBe(0.5)
// Cleanup
global.Date.now = realDateNow
})
})
describe('usePortfolioValue', () => {
beforeEach(() => {
vi.resetModules()
global.fetch = vi.fn().mockResolvedValue({
ok: true,
json: async () => ({ price: 0.5 }),
} as Response)
})
afterEach(() => {
global.fetch = originalFetch
})
it('returns totalUsd=0 for an empty stream list', async () => {
const { usePortfolioValue } = await loadHook()
const { result } = renderHook(() => usePortfolioValue([]))
expect(result.current.totalUsd).toBe(0)
expect(result.current.loading).toBe(false)
})
it('sums locked USDC value across streams', async () => {
const { usePortfolioValue } = await loadHook()
const streams: StreamData[] = [
{
id: '1',
sender: 'GSENDER',
recipient: 'GRECIPIENT',
token: { address: 'CUSDC', symbol: 'USDC', decimals: 7 },
depositedAmount: 10_000_0000000n,
withdrawnAmount: 0n,
startTime: 0n,
endTime: 9999999999n,
cliffTime: 0n,
cliffAmount: 0n,
amountPerSecond: 1n,
linearAmount: 10_000_0000000n,
duration: 9999999999n,
cancelled: false,
},
]
const { result } = renderHook(() => usePortfolioValue(streams))
await waitFor(() => {
expect(result.current.totalUsd).toBe(10_000)
})
})
it('shows USD value for known tokens and ignores unknown tokens', async () => {
const { usePortfolioValue } = await loadHook()
const streams: StreamData[] = [
{
id: '1',
sender: 'GSENDER',
recipient: 'GRECIPIENT',
token: { address: 'CUSDC', symbol: 'USDC', decimals: 7 },
depositedAmount: 5_000_0000000n,
withdrawnAmount: 0n,
startTime: 0n,
endTime: 9999999999n,
cliffTime: 0n,
cliffAmount: 0n,
amountPerSecond: 1n,
linearAmount: 5_000_0000000n,
duration: 9999999999n,
cancelled: false,
},
{
id: '2',
sender: 'GSENDER',
recipient: 'GRECIPIENT',
token: { address: 'CUSTOM_TOKEN', symbol: 'CUSTOM', decimals: 6 },
depositedAmount: 1_000_000000n,
withdrawnAmount: 0n,
startTime: 0n,
endTime: 9999999999n,
cliffTime: 0n,
cliffAmount: 0n,
amountPerSecond: 1n,
linearAmount: 1_000_000000n,
duration: 9999999999n,
cancelled: false,
},
]
const { result } = renderHook(() => usePortfolioValue(streams))
await waitFor(() => {
// Should show 5000 USD from USDC, not null despite unknown CUSTOM token
expect(result.current.totalUsd).toBe(5_000)
})
})
it('returns null when all streams use unknown tokens', async () => {
const { usePortfolioValue } = await loadHook()
const streams: StreamData[] = [
{
id: '1',
sender: 'GSENDER',
recipient: 'GRECIPIENT',
token: { address: 'CUSTOM_TOKEN', symbol: 'CUSTOM', decimals: 6 },
depositedAmount: 1_000_000000n,
withdrawnAmount: 0n,
startTime: 0n,
endTime: 9999999999n,
cliffTime: 0n,
cliffAmount: 0n,
amountPerSecond: 1n,
linearAmount: 1_000_000000n,
duration: 9999999999n,
cancelled: false,
},
]
const { result } = renderHook(() => usePortfolioValue(streams))
await waitFor(() => {
expect(result.current.totalUsd).toBeNull()
})
})
})