-
Notifications
You must be signed in to change notification settings - Fork 308
/
price.test.ts
56 lines (51 loc) · 1.69 KB
/
price.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
import { AdapterError, Requester } from '@chainlink/ea-bootstrap'
import { assertError, assertSuccess } from '@chainlink/ea-test-helpers'
import { AdapterRequest } from '@chainlink/ea-bootstrap'
import { makeExecute } from '../../src'
import { TInputParameters } from '../../src/endpoint'
describe('execute', () => {
const jobID = '1'
const execute = makeExecute()
describe('successful calls', () => {
const requests = [
{
name: 'id not supplied',
testData: { data: { from: 'xSUSHI', quote: 'USD' } },
},
{
name: 'base/quote',
testData: { id: jobID, data: { from: 'xSUSHI', quote: 'USD' } },
},
]
requests.forEach((req) => {
it(`${req.name}`, async () => {
const data = await execute(req.testData as AdapterRequest<TInputParameters>, {})
assertSuccess({ expected: 200, actual: data.statusCode }, data, jobID)
expect(data.result).toBeGreaterThan(0)
expect(data.data.result).toBeGreaterThan(0)
})
})
})
describe('error calls', () => {
const requests = [
{
name: 'base not xSUSHI',
testData: { id: jobID, data: { from: 'ETH', quote: 'USDT' } },
},
{
name: 'unknown quote',
testData: { id: jobID, data: { base: 'xSUSHI', quote: 'not_real' } },
},
]
requests.forEach((req) => {
it(`${req.name}`, async () => {
try {
await execute(req.testData as AdapterRequest<TInputParameters>, {})
} catch (error) {
const errorResp = Requester.errored(jobID, error as AdapterError)
assertError({ expected: 500, actual: errorResp.statusCode }, errorResp, jobID)
}
})
})
})
})