-
Notifications
You must be signed in to change notification settings - Fork 308
/
adapter.test.ts
49 lines (45 loc) · 1.3 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
import { AdapterRequest } from '@chainlink/ea-bootstrap'
import { server as startServer } from '../../src'
import { mockResponseSuccess } 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 = {}
setupExternalAdapterTest(envVariables, context)
describe('balance api', () => {
const data: AdapterRequest = {
id,
data: {
addresses: [
{
address: '3D8DJLwUXFfZvE8yJRu729MZ8uLy25SuLz',
coin: 'btc',
},
{
address: '38bzm6nhQMFJe71jJw1U7CbgNrVNpkonZF',
coin: 'btc',
},
],
dataPath: 'addresses',
confirmations: 3,
},
}
it('should return success', async () => {
mockResponseSuccess()
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()
})
})
})