mirror of
https://github.com/fullstack-cash/bch-api.git
synced 2026-09-22 09:12:05 -07:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1250a40ff0 | ||
|
|
6786ca9ee5 | ||
|
|
e96b9e7a44 | ||
|
|
d29f99965f | ||
|
|
9825ec1bab | ||
|
|
fb61cfeca3 | ||
|
|
5f9a635ab5 | ||
|
|
41c5504846 | ||
|
|
e5f9455fbb | ||
|
|
20cb48caff | ||
|
|
f241aed5b2 | ||
|
|
87c2faa6af | ||
|
|
10a840f48d | ||
|
|
61f9531046 | ||
|
|
1ab408a757 | ||
|
|
84df2be3b8 | ||
|
|
17376d9dba | ||
|
|
4289cf4f7c | ||
|
|
f04449be72 | ||
|
|
a0f9d065f9 | ||
|
|
20f2e20bcb | ||
|
|
b410b501a1 | ||
|
|
31d430e30e |
+4
-4
@@ -23,9 +23,9 @@
|
|||||||
"test:integration:nft": "mocha --timeout 25000 -g '#nft' test/v4/integration/nft.js",
|
"test:integration:nft": "mocha --timeout 25000 -g '#nft' test/v4/integration/nft.js",
|
||||||
"coverage": "nyc report --reporter=text-lcov | coveralls",
|
"coverage": "nyc report --reporter=text-lcov | coveralls",
|
||||||
"coverage:report": "export NETWORK=mainnet && nyc --reporter=html mocha --timeout 25000 test/v4/",
|
"coverage:report": "export NETWORK=mainnet && nyc --reporter=html mocha --timeout 25000 test/v4/",
|
||||||
"docs": "./node_modules/.bin/apidoc -i src/routes/v4 -o docs",
|
"docs": "./node_modules/.bin/apidoc -i src/routes/v5 -o docs",
|
||||||
"test:temp1": "export NETWORK=mainnet && export TEST=integration && mocha -g '#getBalance' --exit --timeout 30000 test/v5/",
|
"test:temp1": "export NETWORK=mainnet && export TEST=integration && mocha -g '#utxosBulk' --exit --timeout 30000 test/v5/",
|
||||||
"test:temp2": "export NETWORK=mainnet && mocha -g '#getBalance' --exit --timeout 30000 test/v5/"
|
"test:temp2": "export NETWORK=mainnet && mocha -g '#utxosBulk' --exit --timeout 30000 test/v5/"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=10.15.1"
|
"node": ">=10.15.1"
|
||||||
@@ -86,6 +86,6 @@
|
|||||||
},
|
},
|
||||||
"apidoc": {
|
"apidoc": {
|
||||||
"title": "bch-api",
|
"title": "bch-api",
|
||||||
"url": "https://api.fullstack.cash/v4"
|
"url": "https://api.fullstack.cash/v5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+6
-2
@@ -46,12 +46,14 @@ const ControlV5 = require('./routes/v5/full-node/control')
|
|||||||
const MiningV5 = require('./routes/v5/full-node/mining')
|
const MiningV5 = require('./routes/v5/full-node/mining')
|
||||||
const networkV5 = require('./routes/v5/full-node/network')
|
const networkV5 = require('./routes/v5/full-node/network')
|
||||||
const RawtransactionsV5 = require('./routes/v5/full-node/rawtransactions')
|
const RawtransactionsV5 = require('./routes/v5/full-node/rawtransactions')
|
||||||
|
const DSProofV5 = require('./routes/v5/full-node/dsproof')
|
||||||
const UtilV5 = require('./routes/v5/util')
|
const UtilV5 = require('./routes/v5/util')
|
||||||
const SlpV5 = require('./routes/v5/slp')
|
const SlpV5 = require('./routes/v5/slp')
|
||||||
const xpubV5 = require('./routes/v5/xpub')
|
const xpubV5 = require('./routes/v5/xpub')
|
||||||
const ElectrumXV5 = require('./routes/v5/electrumx')
|
const ElectrumXV5 = require('./routes/v5/electrumx')
|
||||||
const EncryptionV5 = require('./routes/v5/encryption')
|
const EncryptionV5 = require('./routes/v5/encryption')
|
||||||
const PriceV5 = require('./routes/v5/price')
|
const PriceV5 = require('./routes/v5/price')
|
||||||
|
const JWTV5 = require('./routes/v5/jwt')
|
||||||
// const Ninsight = require('./routes/v5/ninsight')
|
// const Ninsight = require('./routes/v5/ninsight')
|
||||||
|
|
||||||
require('dotenv').config()
|
require('dotenv').config()
|
||||||
@@ -75,11 +77,11 @@ const miningV5 = new MiningV5()
|
|||||||
const rawtransactionsV5 = new RawtransactionsV5()
|
const rawtransactionsV5 = new RawtransactionsV5()
|
||||||
const slpV5 = new SlpV5()
|
const slpV5 = new SlpV5()
|
||||||
const electrumxv5 = new ElectrumXV5()
|
const electrumxv5 = new ElectrumXV5()
|
||||||
electrumxv5.connect()
|
|
||||||
const encryptionv5 = new EncryptionV5()
|
const encryptionv5 = new EncryptionV5()
|
||||||
const pricev5 = new PriceV5()
|
const pricev5 = new PriceV5()
|
||||||
const utilV5 = new UtilV5({ electrumx: electrumxv5 })
|
const utilV5 = new UtilV5({ electrumx: electrumxv5 })
|
||||||
|
const dsproofV5 = new DSProofV5()
|
||||||
|
const jwtV5 = new JWTV5()
|
||||||
const app = express()
|
const app = express()
|
||||||
|
|
||||||
app.locals.env = process.env
|
app.locals.env = process.env
|
||||||
@@ -188,6 +190,8 @@ app.use(`/${v5prefix}/` + 'electrumx', electrumxv5.router)
|
|||||||
app.use(`/${v5prefix}/` + 'encryption', encryptionv5.router)
|
app.use(`/${v5prefix}/` + 'encryption', encryptionv5.router)
|
||||||
app.use(`/${v5prefix}/` + 'price', pricev5.router)
|
app.use(`/${v5prefix}/` + 'price', pricev5.router)
|
||||||
app.use(`/${v5prefix}/` + 'util', utilV5.router)
|
app.use(`/${v5prefix}/` + 'util', utilV5.router)
|
||||||
|
app.use(`/${v5prefix}/` + 'dsproof', dsproofV5.router)
|
||||||
|
app.use(`/${v5prefix}/` + 'jwt', jwtV5.router)
|
||||||
|
|
||||||
// const ninsight = new Ninsight()
|
// const ninsight = new Ninsight()
|
||||||
app.use(`/${v5prefix}/` + 'ninsight', ninsight.router)
|
app.use(`/${v5prefix}/` + 'ninsight', ninsight.router)
|
||||||
|
|||||||
+632
-761
File diff suppressed because it is too large
Load Diff
@@ -75,42 +75,6 @@ class Control {
|
|||||||
return _this.errorHandler(error, res)
|
return _this.errorHandler(error, res)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// router.get('/getMemoryInfo', (req, res, next) => {
|
|
||||||
// BitboxHTTP({
|
|
||||||
// method: 'post',
|
|
||||||
// auth: {
|
|
||||||
// username: username,
|
|
||||||
// password: password
|
|
||||||
// },
|
|
||||||
// data: {
|
|
||||||
// jsonrpc: "1.0",
|
|
||||||
// id:"getmemoryinfo",
|
|
||||||
// method: "getmemoryinfo"
|
|
||||||
// }
|
|
||||||
// })
|
|
||||||
// .then((response) => {
|
|
||||||
// res.json(response.data.result);
|
|
||||||
// })
|
|
||||||
// .catch((error) => {
|
|
||||||
// res.send(error.response.data.error.message);
|
|
||||||
// });
|
|
||||||
// });
|
|
||||||
//
|
|
||||||
// router.get('/help', (req, res, next) => {
|
|
||||||
// BITBOX.Control.help()
|
|
||||||
// .then((result) => {
|
|
||||||
// res.json(result);
|
|
||||||
// }, (err) => { console.log(err);
|
|
||||||
// });
|
|
||||||
// });
|
|
||||||
//
|
|
||||||
// router.post('/stop', (req, res, next) => {
|
|
||||||
// BITBOX.Control.stop()
|
|
||||||
// .then((result) => {
|
|
||||||
// res.json(result);
|
|
||||||
// }, (err) => { console.log(err);
|
|
||||||
// });
|
|
||||||
// });
|
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = Control
|
module.exports = Control
|
||||||
|
|||||||
@@ -0,0 +1,95 @@
|
|||||||
|
'use strict'
|
||||||
|
|
||||||
|
const express = require('express')
|
||||||
|
const router = express.Router()
|
||||||
|
|
||||||
|
const axios = require('axios')
|
||||||
|
const wlogger = require('../../../util/winston-logging')
|
||||||
|
|
||||||
|
const RouteUtils = require('../../../util/route-utils')
|
||||||
|
const routeUtils = new RouteUtils()
|
||||||
|
|
||||||
|
// Used to convert error messages to strings, to safely pass to users.
|
||||||
|
const util = require('util')
|
||||||
|
util.inspect.defaultOptions = { depth: 1 }
|
||||||
|
|
||||||
|
let _this
|
||||||
|
class DSProof {
|
||||||
|
constructor () {
|
||||||
|
_this = this
|
||||||
|
_this.axios = axios
|
||||||
|
_this.routeUtils = routeUtils
|
||||||
|
|
||||||
|
_this.router = router
|
||||||
|
_this.router.get('/', this.root)
|
||||||
|
_this.router.get('/getdsproof/:txid', _this.getDSProof)
|
||||||
|
}
|
||||||
|
|
||||||
|
// DRY error handler.
|
||||||
|
errorHandler (err, res) {
|
||||||
|
// Attempt to decode the error message.
|
||||||
|
const { msg, status } = _this.routeUtils.decodeError(err)
|
||||||
|
if (msg) {
|
||||||
|
res.status(status)
|
||||||
|
return res.json({ error: msg })
|
||||||
|
}
|
||||||
|
|
||||||
|
res.status(500)
|
||||||
|
return res.json({ error: util.inspect(err) })
|
||||||
|
}
|
||||||
|
|
||||||
|
root (req, res, next) {
|
||||||
|
return res.json({ status: 'dsproof' })
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @api {get} /dsproof/getdsproof/:txid Get Double-Spend Proof.
|
||||||
|
* @apiName DS Proof.
|
||||||
|
* @apiGroup DSProof
|
||||||
|
* @apiDescription Get information for a double-spend proof.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @apiExample Example usage:
|
||||||
|
* curl -X GET "https://api.fullstack.cash/v5/dsproof/getdsproof/a1075db55d416d3ca199f55b6084e2115b9345e16c5cf302fc80e9d5fbf5d48d" -H "accept: application/json"
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
async getDSProof (req, res, next) {
|
||||||
|
try {
|
||||||
|
const txid = req.params.txid
|
||||||
|
|
||||||
|
let verbose = 2 // default
|
||||||
|
if (req.query.verbose === 'true') verbose = 3
|
||||||
|
|
||||||
|
if (!txid || txid === '') {
|
||||||
|
res.status(400)
|
||||||
|
return res.json({
|
||||||
|
success: false,
|
||||||
|
error: 'txid can not be empty'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
if (txid.length !== 64) {
|
||||||
|
res.status(400)
|
||||||
|
return res.json({
|
||||||
|
success: false,
|
||||||
|
error: `txid must be of length 64 (not ${txid.length})`
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
const options = _this.routeUtils.getAxiosOptions()
|
||||||
|
options.data.id = 'getdsproof'
|
||||||
|
options.data.method = 'getdsproof'
|
||||||
|
options.data.params = [txid, verbose]
|
||||||
|
|
||||||
|
const response = await _this.axios.request(options)
|
||||||
|
return res.json(response.data.result)
|
||||||
|
} catch (err) {
|
||||||
|
wlogger.error('Error in dsproof.js/getDSProof().', err)
|
||||||
|
|
||||||
|
return _this.errorHandler(err, res)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = DSProof
|
||||||
@@ -0,0 +1,95 @@
|
|||||||
|
/*
|
||||||
|
Utility functions for troubleshooting a JWT token.
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use strict'
|
||||||
|
|
||||||
|
// Public npm libraries.
|
||||||
|
const jwt = require('jsonwebtoken')
|
||||||
|
const axios = require('axios')
|
||||||
|
|
||||||
|
const express = require('express')
|
||||||
|
const router = express.Router()
|
||||||
|
|
||||||
|
const config = require('../../../config')
|
||||||
|
const wlogger = require('../../util/winston-logging')
|
||||||
|
|
||||||
|
const RouteUtils = require('../../util/route-utils')
|
||||||
|
const routeUtils = new RouteUtils()
|
||||||
|
|
||||||
|
// Used for processing error messages before sending them to the user.
|
||||||
|
const util = require('util')
|
||||||
|
util.inspect.defaultOptions = { depth: 1 }
|
||||||
|
|
||||||
|
let _this
|
||||||
|
|
||||||
|
class JWT {
|
||||||
|
constructor () {
|
||||||
|
_this = this
|
||||||
|
|
||||||
|
_this.axios = axios
|
||||||
|
_this.routeUtils = routeUtils
|
||||||
|
_this.jwt = jwt
|
||||||
|
_this.config = config
|
||||||
|
|
||||||
|
_this.router = router
|
||||||
|
_this.router.get('/', _this.root)
|
||||||
|
_this.router.post('/info', _this.jwtInfo)
|
||||||
|
}
|
||||||
|
|
||||||
|
root (req, res, next) {
|
||||||
|
return res.json({ status: 'jwt' })
|
||||||
|
}
|
||||||
|
|
||||||
|
// DRY error handler.
|
||||||
|
errorHandler (err, res) {
|
||||||
|
// Attempt to decode the error message.
|
||||||
|
const { msg, status } = _this.routeUtils.decodeError(err)
|
||||||
|
if (msg) {
|
||||||
|
res.status(status)
|
||||||
|
return res.json({ error: msg })
|
||||||
|
}
|
||||||
|
|
||||||
|
res.status(500)
|
||||||
|
return res.json({ error: util.inspect(err) })
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @api {post} /jwt/info Get JWT Info
|
||||||
|
* @apiName GetJWTInfo
|
||||||
|
* @apiGroup JWT
|
||||||
|
* @apiDescription
|
||||||
|
* Get info on your JWT token. Useful for debugging rate limit issues with your
|
||||||
|
* JWT token.
|
||||||
|
*
|
||||||
|
* @apiExample Example usage:
|
||||||
|
* curl -X POST "https://api.fullstack.cash/v5/jwt/info" -H "accept: application/json" -H "Content-Type: application/json" -d '{"jwt": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjYwZGRmZmI2NzRhM2Q2MDAxOTY3NjE1NCIsImVtYWlsIjoiY2hyaXNAYmNodGVzdC5uZXQiLCJhcGlMZXZlbCI6NjAsInJhdGVMaW1pdCI6MywicG9pbnRzVG9Db25zdW1lIjoxNiwiZHVyYXRpb24iOjMwLCJpYXQiOjE2MjU0MzQ2MzYsImV4cCI6MTYyODAyNjYzNn0.1WLugTkQKVG0yMXD1h5nxfho3gRzvSvs8NMa9obVhPM"}'
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
async jwtInfo (req, res, next) {
|
||||||
|
try {
|
||||||
|
const jwtIn = req.body.jwt
|
||||||
|
// console.log('jwt: ', jwtIn)
|
||||||
|
// console.log('_this.config.apiTokenSecret: ', _this.config.apiTokenSecret)
|
||||||
|
|
||||||
|
const decoded = _this.jwt.verify(jwtIn, _this.config.apiTokenSecret)
|
||||||
|
// console.log('decoded: ', decoded)
|
||||||
|
|
||||||
|
const expiration = new Date(decoded.exp * 1000)
|
||||||
|
decoded.expiration = expiration.toISOString()
|
||||||
|
|
||||||
|
const createdAt = new Date(decoded.iat * 1000)
|
||||||
|
decoded.createdAt = createdAt.toISOString()
|
||||||
|
|
||||||
|
res.status(200)
|
||||||
|
return res.json(decoded)
|
||||||
|
} catch (error) {
|
||||||
|
// console.log('Error in jwt.js/jwtInfo().', error)
|
||||||
|
wlogger.error('Error in jwt.js/jwtInfo().', error)
|
||||||
|
|
||||||
|
return _this.errorHandler(error, res)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = JWT
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,190 @@
|
|||||||
|
/*
|
||||||
|
TESTS FOR THE DSPROOF.JS LIBRARY
|
||||||
|
|
||||||
|
This test file uses the environment variable TEST to switch between unit
|
||||||
|
and integration tests. By default, TEST is set to 'unit'. Set this variable
|
||||||
|
to 'integration' to run the tests against BCH mainnet.
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use strict'
|
||||||
|
|
||||||
|
const chai = require('chai')
|
||||||
|
const assert = chai.assert
|
||||||
|
const DSProofRoute = require('../../src/routes/v5/full-node/dsproof')
|
||||||
|
const uut = new DSProofRoute()
|
||||||
|
|
||||||
|
// const nock = require('nock') // HTTP mocking
|
||||||
|
const sinon = require('sinon')
|
||||||
|
|
||||||
|
let originalEnvVars // Used during transition from integration to unit tests.
|
||||||
|
|
||||||
|
// Mocking data.
|
||||||
|
const { mockReq, mockRes } = require('./mocks/express-mocks')
|
||||||
|
const mockData = require('./mocks/dsproof-mocks')
|
||||||
|
|
||||||
|
// Used for debugging.
|
||||||
|
const util = require('util')
|
||||||
|
util.inspect.defaultOptions = { depth: 1 }
|
||||||
|
|
||||||
|
describe('#DSProof', () => {
|
||||||
|
let req, res
|
||||||
|
let sandbox
|
||||||
|
before(() => {
|
||||||
|
// Save existing environment variables.
|
||||||
|
originalEnvVars = {
|
||||||
|
BITCOINCOM_BASEURL: process.env.BITCOINCOM_BASEURL,
|
||||||
|
RPC_BASEURL: process.env.RPC_BASEURL,
|
||||||
|
RPC_USERNAME: process.env.RPC_USERNAME,
|
||||||
|
RPC_PASSWORD: process.env.RPC_PASSWORD
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set default environment variables for unit tests.
|
||||||
|
if (!process.env.TEST) process.env.TEST = 'unit'
|
||||||
|
if (process.env.TEST === 'unit') {
|
||||||
|
process.env.BITCOINCOM_BASEURL = 'http://fakeurl/api/'
|
||||||
|
process.env.RPC_BASEURL = 'http://fakeurl/api'
|
||||||
|
process.env.RPC_USERNAME = 'fakeusername'
|
||||||
|
process.env.RPC_PASSWORD = 'fakepassword'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
// Setup the mocks before each test.
|
||||||
|
beforeEach(() => {
|
||||||
|
// Mock the req and res objects used by Express routes.
|
||||||
|
req = mockReq
|
||||||
|
res = mockRes
|
||||||
|
|
||||||
|
// Explicitly reset the parmas and body.
|
||||||
|
req.params = {}
|
||||||
|
req.body = {}
|
||||||
|
req.query = {}
|
||||||
|
|
||||||
|
sandbox = sinon.createSandbox()
|
||||||
|
})
|
||||||
|
|
||||||
|
afterEach(() => {
|
||||||
|
// Restore Sandbox
|
||||||
|
sandbox.restore()
|
||||||
|
})
|
||||||
|
|
||||||
|
after(() => {
|
||||||
|
// Restore any pre-existing environment variables.
|
||||||
|
process.env.BITCOINCOM_BASEURL = originalEnvVars.BITCOINCOM_BASEURL
|
||||||
|
process.env.RPC_BASEURL = originalEnvVars.RPC_BASEURL
|
||||||
|
process.env.RPC_USERNAME = originalEnvVars.RPC_USERNAME
|
||||||
|
process.env.RPC_PASSWORD = originalEnvVars.RPC_PASSWORD
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('#root', async () => {
|
||||||
|
// root route handler.
|
||||||
|
it('should respond to GET for base route', async () => {
|
||||||
|
const result = uut.root(req, res)
|
||||||
|
// console.log(`result: ${util.inspect(result)}`)
|
||||||
|
|
||||||
|
assert.equal(result.status, 'dsproof', 'Returns static string')
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('#getDSProof', async () => {
|
||||||
|
it('should throw 400 error if txid is missing', async () => {
|
||||||
|
const result = await uut.getDSProof(req, res)
|
||||||
|
// console.log(`result: ${util.inspect(result)}`)
|
||||||
|
|
||||||
|
assert.hasAllKeys(result, ['error', 'success'])
|
||||||
|
assert.isFalse(result.success)
|
||||||
|
assert.include(result.error, 'txid can not be empty')
|
||||||
|
})
|
||||||
|
it('should throw 400 error if txid is invalid', async () => {
|
||||||
|
req.params.txid = 'abc123'
|
||||||
|
|
||||||
|
const result = await uut.getDSProof(req, res)
|
||||||
|
|
||||||
|
assert.hasAllKeys(result, ['error', 'success'])
|
||||||
|
assert.isFalse(result.success)
|
||||||
|
|
||||||
|
assert.equal(res.statusCode, 400, 'HTTP status code 400 expected.')
|
||||||
|
assert.include(result.error, 'txid must be of length 64')
|
||||||
|
})
|
||||||
|
it('should throw 503 when network issues', async () => {
|
||||||
|
req.params.txid =
|
||||||
|
'ee0df780b58f6f24467605b2589c44c3a50fc849fb8f91b89669a4ae0d86bc7e'
|
||||||
|
|
||||||
|
// Save the existing RPC URL.
|
||||||
|
const savedUrl2 = process.env.RPC_BASEURL
|
||||||
|
|
||||||
|
// Manipulate the URL to cause a 500 network error.
|
||||||
|
process.env.RPC_BASEURL = 'http://fakeurl/api/'
|
||||||
|
|
||||||
|
await uut.getDSProof(req, res)
|
||||||
|
// console.log(`result: ${util.inspect(result)}`)
|
||||||
|
|
||||||
|
// Restore the saved URL.
|
||||||
|
process.env.RPC_BASEURL = savedUrl2
|
||||||
|
|
||||||
|
assert.isAbove(
|
||||||
|
res.statusCode,
|
||||||
|
499,
|
||||||
|
'HTTP status code 500 or greater expected.'
|
||||||
|
)
|
||||||
|
// assert.include(result.error,"Network error: Could not communicate with full node","Error message expected")
|
||||||
|
})
|
||||||
|
it('returns proper error when downstream service stalls', async () => {
|
||||||
|
req.params.txid =
|
||||||
|
'ee0df780b58f6f24467605b2589c44c3a50fc849fb8f91b89669a4ae0d86bc7e'
|
||||||
|
// Mock the timeout error.
|
||||||
|
sandbox.stub(uut.axios, 'request').throws({ code: 'ECONNABORTED' })
|
||||||
|
|
||||||
|
const result = await uut.getDSProof(req, res)
|
||||||
|
// console.log(`result: ${JSON.stringify(result, null, 2)}`)
|
||||||
|
|
||||||
|
assert.isAbove(res.statusCode, 499, 'HTTP status code 503 expected.')
|
||||||
|
assert.include(
|
||||||
|
result.error,
|
||||||
|
'Could not communicate with full node',
|
||||||
|
'Error message expected'
|
||||||
|
)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('returns proper error when downstream service is down', async () => {
|
||||||
|
req.params.txid =
|
||||||
|
'ee0df780b58f6f24467605b2589c44c3a50fc849fb8f91b89669a4ae0d86bc7e'
|
||||||
|
// Mock the timeout error.
|
||||||
|
sandbox.stub(uut.axios, 'request').throws({ code: 'ECONNREFUSED' })
|
||||||
|
|
||||||
|
const result = await uut.getDSProof(req, res)
|
||||||
|
// console.log(`result: ${JSON.stringify(result, null, 2)}`)
|
||||||
|
|
||||||
|
assert.isAbove(res.statusCode, 499, 'HTTP status code 503 expected.')
|
||||||
|
assert.include(
|
||||||
|
result.error,
|
||||||
|
'Could not communicate with full node',
|
||||||
|
'Error message expected'
|
||||||
|
)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('should GET double-spend proof', async function () {
|
||||||
|
req.params.txid =
|
||||||
|
'ee0df780b58f6f24467605b2589c44c3a50fc849fb8f91b89669a4ae0d86bc7e'
|
||||||
|
// Mock the RPC call for unit tests.
|
||||||
|
if (process.env.TEST === 'unit') {
|
||||||
|
sandbox
|
||||||
|
.stub(uut.axios, 'request')
|
||||||
|
.resolves({ data: { result: mockData.mockGetDsProof } })
|
||||||
|
} else {
|
||||||
|
return this.skip()
|
||||||
|
}
|
||||||
|
|
||||||
|
const result = await uut.getDSProof(req, res)
|
||||||
|
// console.log(`result: ${util.inspect(result)}`)
|
||||||
|
|
||||||
|
assert.property(result, 'dspid')
|
||||||
|
assert.property(result, 'txid')
|
||||||
|
assert.property(result, 'outpoint')
|
||||||
|
assert.property(result, 'path')
|
||||||
|
assert.property(result, 'descendants')
|
||||||
|
|
||||||
|
assert.property(result.outpoint, 'txid')
|
||||||
|
assert.property(result.outpoint, 'vout')
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
@@ -0,0 +1,99 @@
|
|||||||
|
/*
|
||||||
|
TESTS FOR THE JWT.JS LIBRARY
|
||||||
|
|
||||||
|
This test file uses the environment variable TEST to switch between unit
|
||||||
|
and integration tests. By default, TEST is set to 'unit'. Set this variable
|
||||||
|
to 'integration' to run the tests against BCH mainnet.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use strict'
|
||||||
|
|
||||||
|
const chai = require('chai')
|
||||||
|
const assert = chai.assert
|
||||||
|
const JWTRoute = require('../../src/routes/v5/jwt')
|
||||||
|
const uut = new JWTRoute()
|
||||||
|
const sinon = require('sinon')
|
||||||
|
|
||||||
|
// Mocking data.
|
||||||
|
const { mockReq, mockRes } = require('./mocks/express-mocks')
|
||||||
|
// const mockData = require('./mocks/control-mock')
|
||||||
|
|
||||||
|
// Used for debugging.
|
||||||
|
const util = require('util')
|
||||||
|
util.inspect.defaultOptions = { depth: 1 }
|
||||||
|
|
||||||
|
describe('#JWTRouter', () => {
|
||||||
|
let req, res
|
||||||
|
let sandbox
|
||||||
|
|
||||||
|
before(() => {
|
||||||
|
// Set default environment variables for unit tests.
|
||||||
|
})
|
||||||
|
|
||||||
|
// Setup the mocks before each test.
|
||||||
|
beforeEach(() => {
|
||||||
|
// Mock the req and res objects used by Express routes.
|
||||||
|
req = mockReq
|
||||||
|
res = mockRes
|
||||||
|
|
||||||
|
// Explicitly reset the parmas and body.
|
||||||
|
req.params = {}
|
||||||
|
req.body = {}
|
||||||
|
req.query = {}
|
||||||
|
|
||||||
|
sandbox = sinon.createSandbox()
|
||||||
|
})
|
||||||
|
|
||||||
|
afterEach(() => {
|
||||||
|
// Restore Sandbox
|
||||||
|
sandbox.restore()
|
||||||
|
})
|
||||||
|
|
||||||
|
after(() => {})
|
||||||
|
|
||||||
|
describe('#root', async () => {
|
||||||
|
// root route handler.
|
||||||
|
// const root = controlRoute.testableComponents.root
|
||||||
|
|
||||||
|
it('should respond to GET for base route', async () => {
|
||||||
|
const result = uut.root(req, res)
|
||||||
|
// console.log(`result: ${util.inspect(result)}`)
|
||||||
|
|
||||||
|
assert.equal(result.status, 'jwt', 'Returns static string')
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('#jwtInfo', () => {
|
||||||
|
it('should decode the JWT token', async () => {
|
||||||
|
const jwtToken =
|
||||||
|
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjYwZWM3NTY1YTM4ZjkyMjdlOWVjNTM3MCIsImVtYWlsIjoidGVzdHVzZXJAZ21haWwuY29tIiwiYXBpTGV2ZWwiOjAsInJhdGVMaW1pdCI6MywicG9pbnRzVG9Db25zdW1lIjo1MDAsImR1cmF0aW9uIjozMCwiaWF0IjoxNjI2MTA5MzQ4LCJleHAiOjE2Mjg3MDEzNDh9.hF8BKU-1SvlvQBnTNbB65ErQTtNSl-pWlRANSJY-Zb4'
|
||||||
|
req.body.jwt = jwtToken
|
||||||
|
|
||||||
|
const result = await uut.jwtInfo(req, res)
|
||||||
|
// console.log('result: ', result)
|
||||||
|
|
||||||
|
assert.property(result, 'id')
|
||||||
|
assert.property(result, 'email')
|
||||||
|
assert.property(result, 'apiLevel')
|
||||||
|
assert.property(result, 'rateLimit')
|
||||||
|
assert.property(result, 'pointsToConsume')
|
||||||
|
assert.property(result, 'duration')
|
||||||
|
assert.property(result, 'iat')
|
||||||
|
assert.property(result, 'exp')
|
||||||
|
assert.property(result, 'expiration')
|
||||||
|
assert.property(result, 'createdAt')
|
||||||
|
})
|
||||||
|
|
||||||
|
it('should return an error with malformed JWT token', async () => {
|
||||||
|
const jwtToken =
|
||||||
|
'eyJhbGciOiJIUzI1NiLsInR5cCI6IkpXVCJ9.eyJpZCI6IjYwZWM3NTY1YTM4ZjkyMjdlOWVjNTM3MCIsImVtYWlsIjoidGVzdHVzZXJAZ21haWwuY29tIiwiYXBpTGV2ZWwiOjAsInJhdGVMaW1pdCI6MywicG9pbnRzVG9Db25zdW1lIjo1MDAsImR1cmF0aW9uIjozMCwiaWF0IjoxNjI2MTA5MzQ4LCJleHAiOjE2Mjg3MDEzNDh9.hF8BKU-1SvlvQBnTNbB65ErQTtNSl-pWlRANSJY-Zb4'
|
||||||
|
req.body.jwt = jwtToken
|
||||||
|
|
||||||
|
const result = await uut.jwtInfo(req, res)
|
||||||
|
// console.log('result: ', result)
|
||||||
|
|
||||||
|
assert.equal(result.error, 'invalid token')
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
/*
|
||||||
|
This library contains mocking data for running unit tests on the dsproof route.
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use strict'
|
||||||
|
|
||||||
|
const mockGetDsProof = {
|
||||||
|
dspid: '6234fff2a9dbcaa50e2c50d74e1d725a2bed1757d7a05a2db7a82df659554397',
|
||||||
|
txid: 'ee0df780b58f6f24467605b2589c44c3a50fc849fb8f91b89669a4ae0d86bc7e',
|
||||||
|
outpoint: {
|
||||||
|
txid: '17ebef34f7e9a0692317dd6fbb43ffccff45b7d688a2a754dbccfc5e6d93ce3e',
|
||||||
|
vout: 1
|
||||||
|
},
|
||||||
|
path: ['ee0df780b58f6f24467605b2589c44c3a50fc849fb8f91b89669a4ae0d86bc7e'],
|
||||||
|
descendants: [
|
||||||
|
'ee0df780b58f6f24467605b2589c44c3a50fc849fb8f91b89669a4ae0d86bc7e'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
mockGetDsProof
|
||||||
|
}
|
||||||
@@ -19,6 +19,43 @@ const utxos = [
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
const utxosArray = {
|
||||||
|
success: true,
|
||||||
|
utxos: [
|
||||||
|
{
|
||||||
|
utxos: [
|
||||||
|
{
|
||||||
|
height: 601861,
|
||||||
|
tx_hash:
|
||||||
|
'6181c669614fa18039a19b23eb06806bfece1f7514ab457c3bb82a40fe171a6d',
|
||||||
|
tx_pos: 0,
|
||||||
|
value: 1000
|
||||||
|
}
|
||||||
|
],
|
||||||
|
address: 'bitcoincash:qp3sn6vlwz28ntmf3wmyra7jqttfx7z6zgtkygjhc7'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
utxos: [
|
||||||
|
{
|
||||||
|
height: 604392,
|
||||||
|
tx_hash:
|
||||||
|
'7774e449c5a3065144cefbc4c0c21e6b69c987f095856778ef9f45ddd8ae1a41',
|
||||||
|
tx_pos: 0,
|
||||||
|
value: 1000
|
||||||
|
},
|
||||||
|
{
|
||||||
|
height: 630834,
|
||||||
|
tx_hash:
|
||||||
|
'4fe60a51e0d8f5134bfd8e5f872d6e502d7f01b28a6afebb27f4438a4f638d53',
|
||||||
|
tx_pos: 0,
|
||||||
|
value: 6000
|
||||||
|
}
|
||||||
|
],
|
||||||
|
address: 'bitcoincash:qrdka2205f4hyukutc2g0s6lykperc8nsu5u2ddpqf'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
const balance = {
|
const balance = {
|
||||||
success: true,
|
success: true,
|
||||||
balance: {
|
balance: {
|
||||||
@@ -26,7 +63,19 @@ const balance = {
|
|||||||
unconfirmed: 0
|
unconfirmed: 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
const balances = {
|
||||||
|
success: true,
|
||||||
|
balances: [
|
||||||
|
{
|
||||||
|
balance: { confirmed: 7000, unconfirmed: 0 },
|
||||||
|
address: 'bitcoincash:qp3sn6vlwz28ntmf3wmyra7jqttfx7z6zgtkygjhc7'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
balance: { confirmed: 7000, unconfirmed: 0 },
|
||||||
|
address: 'bitcoincash:qrdka2205f4hyukutc2g0s6lykperc8nsu5u2ddpqf'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
const txHistory = [
|
const txHistory = [
|
||||||
{
|
{
|
||||||
height: 601861,
|
height: 601861,
|
||||||
@@ -117,16 +166,56 @@ const txDetails = {
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const txDetailsBulk = {
|
||||||
|
success: true,
|
||||||
|
transactions: [{ details: txDetails }]
|
||||||
|
}
|
||||||
|
|
||||||
const blockHeaders = [
|
const blockHeaders = [
|
||||||
'010000008b52bbd72c2f49569059f559c1b1794de5192e4f7d6d2b03c7482bad0000000083e4f8a9d502ed0c419075c1abb5d56f878a2e9079e5612bfb76a2dc37d9c42741dd6849ffff001d2b909dd6',
|
'010000008b52bbd72c2f49569059f559c1b1794de5192e4f7d6d2b03c7482bad0000000083e4f8a9d502ed0c419075c1abb5d56f878a2e9079e5612bfb76a2dc37d9c42741dd6849ffff001d2b909dd6',
|
||||||
'01000000f528fac1bcb685d0cd6c792320af0300a5ce15d687c7149548904e31000000004e8985a786d864f21e9cbb7cbdf4bc9265fe681b7a0893ac55a8e919ce035c2f85de6849ffff001d385ccb7c'
|
'01000000f528fac1bcb685d0cd6c792320af0300a5ce15d687c7149548904e31000000004e8985a786d864f21e9cbb7cbdf4bc9265fe681b7a0893ac55a8e919ce035c2f85de6849ffff001d385ccb7c'
|
||||||
]
|
]
|
||||||
|
|
||||||
|
const blockHeadersBulk = {
|
||||||
|
success: true,
|
||||||
|
headers: [{ headers: blockHeaders }, { headers: blockHeaders }]
|
||||||
|
}
|
||||||
|
|
||||||
|
const transactions = [
|
||||||
|
{
|
||||||
|
height: 603416,
|
||||||
|
tx_hash: 'eef683d236d88e978bd406419f144057af3fe1b62ef59162941c1a9f05ded62c'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
height: 646894,
|
||||||
|
tx_hash: '4c695fae636f3e8e2edc571d11756b880ccaae744390f3950d798ce7b5e25754'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
const transactionsBulk = {
|
||||||
|
success: true,
|
||||||
|
transactions: [
|
||||||
|
{
|
||||||
|
transactions,
|
||||||
|
address: 'bitcoincash:qp3sn6vlwz28ntmf3wmyra7jqttfx7z6zgtkygjhc7'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
transactions,
|
||||||
|
address: 'bitcoincash:qp3sn6vlwz28ntmf3wmyra7jqttfx7z6zgtkygjhc7'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
module.exports = {
|
module.exports = {
|
||||||
utxos,
|
utxos,
|
||||||
|
utxosArray,
|
||||||
balance,
|
balance,
|
||||||
txHistory,
|
txHistory,
|
||||||
mempool,
|
mempool,
|
||||||
txDetails,
|
txDetails,
|
||||||
blockHeaders
|
txDetailsBulk,
|
||||||
|
blockHeaders,
|
||||||
|
blockHeadersBulk,
|
||||||
|
balances,
|
||||||
|
transactions,
|
||||||
|
transactionsBulk
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user