forked from bitfinexcom/bfx-api-mock-srv
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathendpoint_test.js
37 lines (27 loc) · 946 Bytes
/
endpoint_test.js
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
'use strict'
process.env.DEBUG = 'bfx:*'
const assert = require('assert')
const debug = require('debug')('bfx:api:mock-srv:examples:endpoint-test')
const { RESTv2 } = require('bfx-api-node-rest')
const { MockRESTv2Server } = require('../')
const FUNDING_OFFER = [
41215275, 'fUSD', 1524784806000, 1524784806000, 1000, 1000, 'FRRDELTAVAR',
null, null, 0, 'ACTIVE', null, null, null, 0, 30, 0, 0, null, 0, 0.00207328
]
debug('spawning mock server...')
const srv = new MockRESTv2Server({ listen: true })
const rest = new RESTv2({
apiKey: 'dummy',
apiSecret: 'dummy',
url: 'http://localhost:9999'
})
srv.setResponse('f_offers.fUSD', [FUNDING_OFFER])
debug('requesting preset response...')
rest.fundingOffers('fUSD').then(([incomingFundingOffer]) => {
assert.deepStrictEqual(incomingFundingOffer, FUNDING_OFFER)
debug('correct response received')
srv.close()
return null
}).catch((e) => {
debug(`error: ${e.message}`)
})