mirror of
https://github.com/fullstack-cash/bch-api.git
synced 2026-09-21 16:52:04 -07:00
feat(bcash): Added getUtxos for bcash to bch-api
This commit is contained in:
+152
-3
@@ -13,7 +13,7 @@ const BcashSlp = require('../../src/routes/v5/bcash/slp')
|
||||
|
||||
// Mocking data.
|
||||
const { mockReq, mockRes } = require('./mocks/express-mocks')
|
||||
// const mockData = require('./mocks/electrumx-mock')
|
||||
const mockData = require('./mocks/bcash-slp-mock')
|
||||
|
||||
// Used for debugging.
|
||||
const util = require('util')
|
||||
@@ -88,8 +88,157 @@ describe('#bcash-slp', () => {
|
||||
|
||||
describe('#getUtxos', () => {
|
||||
it('should return UTXOs for an address, hydrated with SLP info', async () => {
|
||||
// TODO: Add unit tests.
|
||||
assert.isOk(true)
|
||||
sandbox.stub(bcashSlp.axios, 'get').resolves({ data: mockData.utxos })
|
||||
sandbox.stub(bcashSlp, 'getTokenInfo').resolves(mockData.tokenInfo)
|
||||
req.params.address =
|
||||
'bitcoincash:qpnty9t0w93fez04h7yzevujpv8pun204qv6yfuahk'
|
||||
|
||||
const utxos = await bcashSlp.getUtxos(req, res)
|
||||
assert.isArray(utxos)
|
||||
const utxo = utxos[0]
|
||||
|
||||
assert.property(utxo, 'version')
|
||||
assert.property(utxo, 'height')
|
||||
assert.property(utxo, 'value')
|
||||
assert.property(utxo, 'script')
|
||||
assert.property(utxo, 'address')
|
||||
assert.property(utxo, 'coinbase')
|
||||
assert.property(utxo, 'hash')
|
||||
assert.property(utxo, 'index')
|
||||
assert.property(utxo, 'slp')
|
||||
|
||||
assert.property(utxo.slp, 'tokenId')
|
||||
assert.property(utxo.slp, 'ticker')
|
||||
assert.property(utxo.slp, 'name')
|
||||
assert.property(utxo.slp, 'uri')
|
||||
assert.property(utxo.slp, 'hash')
|
||||
assert.property(utxo.slp, 'decimals')
|
||||
assert.property(utxo.slp, 'vout')
|
||||
assert.property(utxo.slp, 'value')
|
||||
assert.property(utxo.slp, 'type')
|
||||
})
|
||||
it('should handle error if address is array', async () => {
|
||||
req.params.address = [
|
||||
'bchtest:qpnty9t0w93fez04h7yzevujpv8pun204qv6yfuahk'
|
||||
]
|
||||
|
||||
const result = await bcashSlp.getUtxos(req, res)
|
||||
assert.include(
|
||||
result.error,
|
||||
'address can not be an array. Use POST for bulk upload.'
|
||||
)
|
||||
})
|
||||
it('should throw error if address has invalid format', async () => {
|
||||
sandbox.stub(bcashSlp.routeUtils, 'validateNetwork').returns(false)
|
||||
|
||||
req.params.address = 'qpnty9t0w93fez04h7yzevujpv8pun204qv6yfuahk'
|
||||
|
||||
const result = await bcashSlp.getUtxos(req, res)
|
||||
assert.include(
|
||||
result.error,
|
||||
'Invalid network. Trying to use a testnet address on mainnet'
|
||||
)
|
||||
})
|
||||
it('should catch axios error', async () => {
|
||||
sandbox.stub(bcashSlp.axios, 'get').throws(new Error('test error'))
|
||||
req.params.address =
|
||||
'bitcoincash:qpnty9t0w93fez04h7yzevujpv8pun204qv6yfuahk'
|
||||
const result = await bcashSlp.getUtxos(req, res)
|
||||
assert.include(result.error, 'test error')
|
||||
})
|
||||
})
|
||||
|
||||
describe('#hydrateUTXOS', () => {
|
||||
it('should hydrate slp utxos', async () => {
|
||||
sandbox.stub(bcashSlp, 'getTokenInfo').resolves(mockData.tokenInfo)
|
||||
|
||||
const hydratedUtxos = await bcashSlp.hydrateUTXOS(mockData.utxos)
|
||||
assert.isArray(hydratedUtxos)
|
||||
const hydratedUtxo = hydratedUtxos[0]
|
||||
assert.property(hydratedUtxo, 'version')
|
||||
assert.property(hydratedUtxo, 'height')
|
||||
assert.property(hydratedUtxo, 'value')
|
||||
assert.property(hydratedUtxo, 'script')
|
||||
assert.property(hydratedUtxo, 'address')
|
||||
assert.property(hydratedUtxo, 'coinbase')
|
||||
assert.property(hydratedUtxo, 'hash')
|
||||
assert.property(hydratedUtxo, 'index')
|
||||
assert.property(hydratedUtxo, 'slp')
|
||||
|
||||
assert.property(hydratedUtxo.slp, 'tokenId')
|
||||
assert.property(hydratedUtxo.slp, 'ticker')
|
||||
assert.property(hydratedUtxo.slp, 'name')
|
||||
assert.property(hydratedUtxo.slp, 'uri')
|
||||
assert.property(hydratedUtxo.slp, 'hash')
|
||||
assert.property(hydratedUtxo.slp, 'decimals')
|
||||
assert.property(hydratedUtxo.slp, 'vout')
|
||||
assert.property(hydratedUtxo.slp, 'value')
|
||||
assert.property(hydratedUtxo.slp, 'type')
|
||||
})
|
||||
|
||||
it('should throw error if utxos is not provided', async () => {
|
||||
try {
|
||||
await bcashSlp.hydrateUTXOS()
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (error) {
|
||||
assert.include(error.message, 'UTXOs must be an array of slp utxos')
|
||||
}
|
||||
})
|
||||
it('should handle error', async () => {
|
||||
try {
|
||||
sandbox.stub(bcashSlp, 'getTokenInfo').throws(new Error('test error'))
|
||||
|
||||
await bcashSlp.getTokenInfo(mockData.utxos)
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (error) {
|
||||
assert.include(error.message, 'test error')
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
describe('#getTokenInfo', () => {
|
||||
it('should return SLP info for an token id', async () => {
|
||||
sandbox.stub(bcashSlp.axios, 'get').resolves({ data: mockData.tokenInfo })
|
||||
|
||||
const tokenId =
|
||||
'afd88e9afab110e7b75410417edb5c98798c08aa892cee8d97b44f2e5545a900'
|
||||
const slpInfo = await bcashSlp.getTokenInfo(tokenId)
|
||||
assert.isObject(slpInfo)
|
||||
assert.property(slpInfo, 'tokenId')
|
||||
assert.property(slpInfo, 'ticker')
|
||||
assert.property(slpInfo, 'name')
|
||||
assert.property(slpInfo, 'uri')
|
||||
assert.property(slpInfo, 'hash')
|
||||
assert.property(slpInfo, 'decimals')
|
||||
})
|
||||
it('should throw error if token id is not provided', async () => {
|
||||
try {
|
||||
await bcashSlp.getTokenInfo()
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (error) {
|
||||
assert.include(error.message, 'tokenId must be string')
|
||||
}
|
||||
})
|
||||
it('should catch axios error', async () => {
|
||||
try {
|
||||
sandbox.stub(bcashSlp.axios, 'get').throws(new Error('test error'))
|
||||
const tokenId =
|
||||
'afd88e9afab110e7b75410417edb5c98798c08aa892cee8d97b44f2e5545a900'
|
||||
await bcashSlp.getTokenInfo(tokenId)
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (error) {
|
||||
assert.include(error.message, 'test error')
|
||||
}
|
||||
})
|
||||
})
|
||||
describe('#errorHandler', () => {
|
||||
it('should handle unexpected errors', () => {
|
||||
sandbox.stub(bcashSlp.routeUtils, 'decodeError').returns({ msg: false })
|
||||
|
||||
const result = bcashSlp.errorHandler(new Error('test error'), res)
|
||||
// console.log('result: ', result)
|
||||
assert.equal(res.statusCode, 400, 'HTTP status code 400 expected.')
|
||||
assert.property(result, 'error')
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
This library contains mocking data for running unit tests on the bcash route.
|
||||
*/
|
||||
|
||||
const tokenInfo = {
|
||||
tokenId: 'c7cb019764df3a352d9433749330b4b2eb022d8fbc101e68a6943a7a58a8ee84',
|
||||
ticker: 'PSI',
|
||||
name: 'Psidium',
|
||||
uri: '',
|
||||
hash: '',
|
||||
decimals: 8
|
||||
}
|
||||
|
||||
const utxos = [
|
||||
{
|
||||
version: 2,
|
||||
height: 707135,
|
||||
value: 546,
|
||||
script: '76a91466b2156f71629c89f5bf882cb3920b0e1e4d4fa888ac',
|
||||
address: 'bitcoincash:qpnty9t0w93fez04h7yzevujpv8pun204qv6yfuahk',
|
||||
coinbase: false,
|
||||
hash: '77e514d59c0c866e791d08ddab73a1f7827be5f1ca15c1e05515dac9b271b596',
|
||||
index: 2,
|
||||
slp: {
|
||||
vout: 2,
|
||||
tokenId:
|
||||
'5f2914840d0fd82689bdf0a0f8194ea363b9d0e2bd69b01608e18e1c6a4b9861',
|
||||
value: '9999777700000',
|
||||
type: 'SEND'
|
||||
}
|
||||
},
|
||||
{
|
||||
version: 2,
|
||||
height: 707135,
|
||||
value: 546,
|
||||
script: '76a91466b2156f71629c89f5bf882cb3920b0e1e4d4fa888ac',
|
||||
address: 'bitcoincash:qpnty9t0w93fez04h7yzevujpv8pun204qv6yfuahk',
|
||||
coinbase: false,
|
||||
hash: '350aab06bf9523c062692f62622cb28b18cff9e4aa92be5476143336da217e98',
|
||||
index: 1,
|
||||
slp: {
|
||||
vout: 1,
|
||||
tokenId:
|
||||
'2d860662801067828be3c4f504ce31b2a1a36c2cdbc6d92f6160920f66b0a9ee',
|
||||
value: '1',
|
||||
type: 'SEND'
|
||||
}
|
||||
},
|
||||
{
|
||||
version: 2,
|
||||
height: 687335,
|
||||
value: 546,
|
||||
script: '76a91466b2156f71629c89f5bf882cb3920b0e1e4d4fa888ac',
|
||||
address: 'bitcoincash:qpnty9t0w93fez04h7yzevujpv8pun204qv6yfuahk',
|
||||
coinbase: false,
|
||||
hash: 'b7a0f52a344b1169292c757a36c62dbdaaa4ad684e96837eec732a9a2033dfd1',
|
||||
index: 1,
|
||||
slp: {
|
||||
vout: 1,
|
||||
tokenId:
|
||||
'c7cb019764df3a352d9433749330b4b2eb022d8fbc101e68a6943a7a58a8ee84',
|
||||
value: '100000000',
|
||||
type: 'SEND'
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
module.exports = {
|
||||
tokenInfo,
|
||||
utxos
|
||||
}
|
||||
Reference in New Issue
Block a user