forked from smartcontractkit/external-adapters-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadapter.test.ts
51 lines (50 loc) · 1.67 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
import { AdapterError, Requester } from '@chainlink/ea-bootstrap'
import { assertError, assertSuccess } from '@chainlink/ea-test-helpers'
import { AdapterRequest } from '@chainlink/ea-bootstrap'
import { execute } from '../../src/adapter'
import { TInputParameters } from '../../src/endpoint'
describe('execute', () => {
const jobID = '1'
const contractAddress = '0x1B58B67B2b2Df71b4b0fb6691271E83A0fa36aC5'
describe('successful calls', () => {
const requests = [
{
name: 'id not supplied',
testData: {
data: { contractAddress, isAdaptive: true, multiply: 1e18, source: 'coingecko' },
},
},
{
name: 'Calculates without on-chain value',
testData: {
id: jobID,
data: { contractAddress, isAdaptive: false, source: 'coingecko' },
},
},
{
name: 'Calculates with on-chain value',
testData: {
id: jobID,
data: { contractAddress, isAdaptive: true, multiply: 1e18, source: 'coingecko' },
},
},
]
requests.forEach((req) => {
it(`${req.name}`, async () => {
try {
const data = await execute(
req.testData as unknown as AdapterRequest<TInputParameters>,
{},
{},
)
assertSuccess({ expected: 200, actual: data.statusCode }, data, jobID)
expect(data.result).toBeGreaterThan(0)
expect(data.data.result).toBeGreaterThan(0)
} catch (error) {
const errorResp = Requester.errored(jobID, error as AdapterError)
assertError({ expected: 500, actual: errorResp.statusCode }, errorResp, jobID)
}
})
})
})
})