-
Notifications
You must be signed in to change notification settings - Fork 308
/
adapter-socket.test.ts
71 lines (63 loc) · 2.13 KB
/
adapter-socket.test.ts
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
import {
TestAdapter,
setEnvVariables,
} from '@chainlink/external-adapter-framework/util/testing-utils'
import * as nock from 'nock'
import { SocketServerMock } from 'socket.io-mock-ts'
describe('execute', () => {
let spy: jest.SpyInstance
let testAdapter: TestAdapter
let oldEnv: NodeJS.ProcessEnv
beforeAll(async () => {
oldEnv = JSON.parse(JSON.stringify(process.env))
process.env.API_KEY = process.env.API_KEY ?? 'fake-api-key'
process.env.WS_API_ENDPOINT = process.env.WS_API_ENDPOINT ?? 'ws:fake'
const mockDate = new Date('2001-01-01T11:11:11.111Z')
spy = jest.spyOn(Date, 'now').mockReturnValue(mockDate.getTime())
const socket = new SocketServerMock()
jest.doMock('socket.io-client', () => ({
io: () => socket,
}))
const adapter = (await import('../../src')).adapter
adapter.rateLimiting = undefined
testAdapter = await TestAdapter.startWithMockedCache(adapter, {
testAdapter: {} as TestAdapter<never>,
})
socket.clientMock.emit('initial_token_states', {
0: {
id: 'FRAX/USD',
baseSymbol: 'FRAX',
quoteSymbol: 'USD',
processTimestamp: 1732555634,
processBlockChainId: 'arbitrum',
processBlockNumber: 278231251,
processBlockTimestamp: 1732555633,
aggregatedLast7DaysBaseVolume: 46661677.60698884,
price: 0.9950774676498447,
aggregatedMarketDepthMinusOnePercentUsdAmount: 3924545.4672679068,
aggregatedMarketDepthPlusOnePercentUsdAmount: 37133041.95023558,
aggregatedMarketDepthUsdAmount: 41057587.41750349,
aggregatedLast7DaysUsdVolume: 92915562.18873177,
},
})
})
afterAll(async () => {
setEnvVariables(oldEnv)
await testAdapter.api.close()
nock.restore()
nock.cleanAll()
spy.mockRestore()
})
describe('price endpoint', () => {
it('should return success', async () => {
const data = {
base: 'FRAX',
quote: 'USD',
endpoint: 'price',
}
const response = await testAdapter.request(data)
expect(response.statusCode).toBe(200)
expect(response.json()).toMatchSnapshot()
})
})
})