forked from smartcontractkit/external-adapters-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadapter.test.ts
66 lines (57 loc) · 1.73 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
import { AdapterRequest } from '@chainlink/ea-bootstrap'
import { server as startServer } from '../../src'
import { mockPunksValueResponseSuccess, mockCollectionsValueResponseSuccess } 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: 'test-key',
}
setupExternalAdapterTest(envVariables, context)
describe('punk valuation api', () => {
const punkData: AdapterRequest = {
id,
data: {
block: 14000000,
endpoint: 'punks',
},
}
it('should return success', async () => {
mockPunksValueResponseSuccess()
const response = await (context.req as SuperTest<Test>)
.post('/')
.send(punkData)
.set('Accept', '*/*')
.set('Content-Type', 'application/json')
.expect('Content-Type', /json/)
.expect(200)
expect(response.body).toMatchSnapshot()
})
})
describe('collections valuation api', () => {
const collectionData: AdapterRequest = {
id,
data: {
endpoint: 'collections',
collection: 'jpeg-cards',
},
}
it('should return success', async () => {
mockCollectionsValueResponseSuccess()
const response = await (context.req as SuperTest<Test>)
.post('/')
.send(collectionData)
.set('Accept', '*/*')
.set('Content-Type', 'application/json')
.expect('Content-Type', /json/)
.expect(200)
expect(response.body).toMatchSnapshot()
})
})
})