forked from smartcontractkit/external-adapters-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
historical.test.ts
48 lines (43 loc) · 1.46 KB
/
historical.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
import { Requester } from '@chainlink/ea-bootstrap'
import { assertError, assertSuccess } from '@chainlink/ea-test-helpers'
import { AdapterRequest } from '@chainlink/types'
import { makeExecute } from '../../src/adapter'
describe('execute', () => {
const jobID = '1'
const execute = makeExecute()
process.env.API_KEY = process.env.API_KEY ?? 'test_api_key'
describe('successful calls', () => {
const requests = [
{
name: 'historical',
testData: { id: jobID, data: { endpoint: 'historical', from: 'btc', to: 'USD' } },
},
]
requests.forEach((req) => {
it(`${req.name}`, async () => {
const data = await execute(req.testData as AdapterRequest)
assertSuccess({ expected: 200, actual: data.statusCode }, data, jobID)
expect(data.result.quotes.length).toBeGreaterThan(0)
expect(data.data.result.quotes.length).toBeGreaterThan(0)
})
})
})
describe('error calls', () => {
const requests = [
{
name: 'historical unknown market',
testData: { id: jobID, data: { endpoint: 'historical', market: 'not_real' } },
},
]
requests.forEach((req) => {
it(`${req.name}`, async () => {
try {
await execute(req.testData as AdapterRequest)
} catch (error) {
const errorResp = Requester.errored(jobID, error)
assertError({ expected: 400, actual: errorResp.statusCode }, errorResp, jobID)
}
})
})
})
})