forked from smartcontractkit/external-adapters-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsendPayout.test.ts
100 lines (94 loc) · 2.51 KB
/
sendPayout.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
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'
process.env.MODE = 'sandbox'
const execute = makeExecute()
const amount = '0.01'
const receiver = '[email protected]'
describe('successful calls @integration', () => {
const requests = [
{
name: 'id not supplied',
testData: { data: { amount, receiver } },
},
{
name: 'endpoint not supplied',
testData: { id: jobID, data: { amount, receiver } },
},
{
name: 'endpoint supplied',
testData: {
id: jobID,
data: { endpoint: 'sendpayout', amount, receiver },
},
},
{
name: 'write supplied',
testData: {
id: jobID,
data: { endpoint: 'write', amount, receiver },
},
},
{
name: 'optional parameters supplied',
testData: {
id: jobID,
data: {
amount,
receiver,
currency: 'USD',
recipient_type: 'EMAIL',
note: 'hello!',
sender_item_id: '0x01',
email_subject: 'test tx',
email_message: 'this is only a test',
},
},
},
]
requests.forEach((req) => {
it(`${req.name}`, async () => {
const data = await execute(req.testData as AdapterRequest)
assertSuccess({ expected: 201, actual: data.statusCode }, data, jobID)
})
})
})
describe('error calls @integration', () => {
const requests = [
{
name: 'send 0.00',
testData: {
id: jobID,
data: { amount: '0', receiver },
},
},
{
name: 'send unknown currency',
testData: {
id: jobID,
data: { amount, receiver, currency: 'not_real' },
},
},
{
name: 'receiver type incorrect',
testData: {
id: jobID,
data: { amount, receiver, recipient_type: 'PHONE' },
},
},
]
requests.forEach((req) => {
it(`${req.name}`, async () => {
try {
await execute(req.testData as AdapterRequest)
} catch (error) {
const errorResp = Requester.errored(jobID, error)
assertError({ expected: 500, actual: errorResp.statusCode }, errorResp, jobID)
}
})
})
})
})