-
Notifications
You must be signed in to change notification settings - Fork 308
/
adapter.test.ts
101 lines (94 loc) · 2.62 KB
/
adapter.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
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
import { Requester, BigNumber, AdapterError } from '@chainlink/ea-bootstrap'
import { assertError } from '@chainlink/ea-test-helpers'
import type { AdapterRequest } from '@chainlink/ea-bootstrap'
import * as ethers from 'ethers'
import { makeExecute, priceTotalValue } from '../../src/endpoint'
import { adaptersV2, adaptersV3, makeConfig } from '../../src/config'
import { TokenAllocations } from '../../src/types'
describe('execute', () => {
const jobID = '1'
process.env.ADAPTER_URL = 'ignoreable'
const execute = makeExecute(makeConfig(''))
describe('validation error', () => {
const requests = [
{ name: 'empty body', testData: {} },
{ name: 'empty data', testData: { data: {} } },
{
name: 'allocations not supplied',
testData: { id: jobID, data: {} },
},
]
requests.forEach((req) => {
it(`${req.name}`, async () => {
try {
await execute(req.testData as AdapterRequest, {})
} catch (error) {
const errorResp = Requester.errored(jobID, error as AdapterError)
assertError({ expected: 400, actual: errorResp.statusCode }, errorResp, jobID)
}
})
})
})
describe('calculate total price value', () => {
const allocations: TokenAllocations = [
{
symbol: 'wBTC',
balance: 100000000,
decimals: 8,
},
{
symbol: 'DAI',
balance: ethers.BigNumber.from('1000000000000000000') as BigNumber,
decimals: 18,
},
]
it('price value is correct #1', () => {
const data = {
wBTC: {
quote: {
USD: {
price: 10,
},
},
},
DAI: {
quote: {
USD: {
price: 1,
},
},
},
}
const value = priceTotalValue('test', allocations, 'USD', data)
const expectedValue = 11
expect(value).toBe(expectedValue)
})
it('price value is correct #2', () => {
const data = {
wBTC: {
quote: {
USD: {
price: 33.2,
},
},
},
DAI: {
quote: {
USD: {
price: 0.9,
},
},
},
}
const value = priceTotalValue('test', allocations, 'USD', data)
const expectedValue = 34.1
expect(value).toBe(expectedValue)
})
})
})
describe('source adapters', () => {
it(`all contain endpoints`, () => {
adaptersV2.forEach((adapter) => expect(adapter.endpoints).toBeTruthy())
adaptersV3.forEach((adapter) => expect(adapter.endpoints).toBeTruthy())
})
})