-
Notifications
You must be signed in to change notification settings - Fork 316
/
Copy pathadapter.test.ts
73 lines (63 loc) · 2.04 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
import { AdapterRequest } from '@chainlink/ea-bootstrap'
import * as process from 'process'
import { server as startServer } from '../../src'
import { mockNftResponseSuccess, mockRateResponseSuccess } from './fixtures'
import { setupExternalAdapterTest } from '@chainlink/ea-test-helpers'
import type { SuiteContext } from '@chainlink/ea-test-helpers'
import { SuperTest, Test } from 'supertest'
describe('execute', () => {
const id = '1'
const context: SuiteContext = {
req: null,
server: startServer,
}
const envVariables = {
API_KEY: process.env.API_KEY || 'fake-api-key',
NFT_API_ENDPOINT: process.env.NFT_API_ENDPOINT || 'http://fake-nft.endpoint',
NFT_API_AUTH_HEADER: process.env.NFT_API_AUTH_HEADER || 'fake-nft-auth-header',
}
setupExternalAdapterTest(envVariables, context)
describe('exchange rate api', () => {
const data: AdapterRequest = {
id,
data: {
base: 'BTC',
quote: 'USD',
},
}
it('should return success', async () => {
mockRateResponseSuccess()
const response = await (context.req as SuperTest<Test>)
.post('/')
.send(data)
.set('Accept', '*/*')
.set('Content-Type', 'application/json')
.expect('Content-Type', /json/)
.expect(200)
expect(response.body).toMatchSnapshot()
})
})
describe('nft-floor-price api', () => {
const data: AdapterRequest = {
id,
data: {
endpoint: 'nft-floor-price',
network: 'ethereum-mainnet',
contractAddress: '0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d',
start: '2022-05-25T12:00:00.000Z',
end: '2022-05-25T12:00:00.000Z',
},
}
it('should return success', async () => {
mockNftResponseSuccess()
const response = await (context.req as SuperTest<Test>)
.post('/')
.send(data)
.set('Accept', '*/*')
.set('Content-Type', 'application/json')
.expect('Content-Type', /json/)
.expect(200)
expect(response.body).toMatchSnapshot()
})
})
})