Making sure integration tests work

This commit is contained in:
Chris Troutner
2021-03-29 13:08:55 -07:00
parent a2ab88adab
commit 6f8c00bab9
3 changed files with 26 additions and 19 deletions
+1 -1
View File
@@ -181,7 +181,7 @@ class Encryption {
publicKey: 'not found'
})
} catch (err) {
console.log('Error in encryption.js/getPublicKey().', err)
// console.log('Error in encryption.js/getPublicKey().', err)
wlogger.error('Error in encryption.js/getPublicKey().', err)
return _this.errorHandler(err, res)
+5 -2
View File
@@ -956,7 +956,10 @@ class Blockchain {
try {
// Validate input parameter
const blockhash = req.body.blockhash
const verbosity = req.body.verbosity || 1 // default
let verbosity = req.body.verbosity
// Default to a value of 1 if another verbosity level is not defined.
if (!verbosity && verbosity !== 0) verbosity = 1
if (!blockhash || blockhash === '') {
res.status(400)
@@ -976,7 +979,7 @@ class Blockchain {
} catch (err) {
// Write out error to error log.
// logger.error(`Error in rawtransactions/decodeRawTransaction: `, err)
wlogger.error('Error in blockchain.ts/getMempoolEntrySingle().', err)
wlogger.error('Error in blockchain.js/getBlock()', err)
return _this.errorHandler(err, res)
}
+20 -16
View File
@@ -1823,7 +1823,8 @@ describe('#BlockchainRouter', () => {
assert.equal(result.length, 2)
})
})
describe('getBlock()', () => {
describe('#getBlock()', () => {
it('returns proper error when downstream service stalls', async () => {
// Mock the timeout error.
sandbox.stub(uut.axios, 'request').throws({ code: 'ECONNABORTED' })
@@ -1841,6 +1842,7 @@ describe('#BlockchainRouter', () => {
'Error message expected'
)
})
it('returns proper error when downstream service is down', async () => {
// Mock the timeout error.
sandbox.stub(uut.axios, 'request').throws({ code: 'ECONNREFUSED' })
@@ -1857,6 +1859,7 @@ describe('#BlockchainRouter', () => {
'Error message expected'
)
})
it('should throw 400 if blockhash is empty', async () => {
const result = await uut.getBlock(req, res)
// console.log(`result: ${util.inspect(result)}`)
@@ -1864,15 +1867,17 @@ describe('#BlockchainRouter', () => {
assert.hasAllKeys(result, ['error'])
assert.include(result.error, 'blockhash can not be empty')
})
it('return block info with verbosity 0', async () => {
it('should return block info with verbosity 0', async () => {
// Mock the RPC call for unit tests.
if (process.env.TEST === 'unit') {
sandbox
.stub(uut.axios, 'request')
.resolves({ data: { result: mockData.mockBlockInfo.verbosity0 } })
}
req.body.blockhash =
'000000000000000002a5fe0bdd6e3f04342a975c0f55e57f97e73bb90041676b'
'0000000000000000008e8d83cba6d45a9314bc2ef4538d4e0577c6bed8593536'
req.body.verbosity = 0
const result = await uut.getBlock(req, res)
@@ -1880,15 +1885,17 @@ describe('#BlockchainRouter', () => {
assert.isString(result)
})
it('return block info with verbosity 1', async () => {
it('should return block info with verbosity 1', async () => {
// Mock the RPC call for unit tests.
if (process.env.TEST === 'unit') {
sandbox
.stub(uut.axios, 'request')
.resolves({ data: { result: mockData.mockBlockInfo.verbosity1 } })
}
req.body.blockhash =
'000000000000000002a5fe0bdd6e3f04342a975c0f55e57f97e73bb90041676b'
'0000000000000000008e8d83cba6d45a9314bc2ef4538d4e0577c6bed8593536'
req.body.verbosity = 1
const result = await uut.getBlock(req, res)
@@ -1901,8 +1908,6 @@ describe('#BlockchainRouter', () => {
'confirmations property expected'
)
assert.property(result, 'size', 'size property expected')
assert.property(result, 'strippedsize', 'strippedsize property expected')
assert.property(result, 'weight', 'weight property expected')
assert.property(result, 'height', 'height property expected')
assert.property(result, 'version', 'version property expected')
assert.property(result, 'versionHex', 'versionHex property expected')
@@ -1927,16 +1932,17 @@ describe('#BlockchainRouter', () => {
)
})
it('return block info with verbosity 2', async () => {
it('should return block info with verbosity 2', async () => {
// Mock the RPC call for unit tests.
if (process.env.TEST === 'unit') {
sandbox
.stub(uut.axios, 'request')
.resolves({ data: { result: mockData.mockBlockInfo.verbosity1 } })
}
req.body.blockhash =
'000000000000000002a5fe0bdd6e3f04342a975c0f55e57f97e73bb90041676b'
req.body.verbosity = 1
'0000000000000000008e8d83cba6d45a9314bc2ef4538d4e0577c6bed8593536'
req.body.verbosity = 2
const result = await uut.getBlock(req, res)
// console.log(`result: ${JSON.stringify(result, null, 2)}`)
@@ -1948,8 +1954,6 @@ describe('#BlockchainRouter', () => {
'confirmations property expected'
)
assert.property(result, 'size', 'size property expected')
assert.property(result, 'strippedsize', 'strippedsize property expected')
assert.property(result, 'weight', 'weight property expected')
assert.property(result, 'height', 'height property expected')
assert.property(result, 'version', 'version property expected')
assert.property(result, 'versionHex', 'versionHex property expected')
@@ -1973,15 +1977,17 @@ describe('#BlockchainRouter', () => {
'nextblockhash property expected'
)
})
it('return block info without verbosity especified', async () => {
it('should return block info without verbosity especified', async () => {
// Mock the RPC call for unit tests.
if (process.env.TEST === 'unit') {
sandbox
.stub(uut.axios, 'request')
.resolves({ data: { result: mockData.mockBlockInfo.verbosity1 } })
}
req.body.blockhash =
'000000000000000002a5fe0bdd6e3f04342a975c0f55e57f97e73bb90041676b'
'0000000000000000008e8d83cba6d45a9314bc2ef4538d4e0577c6bed8593536'
const result = await uut.getBlock(req, res)
// console.log(`result: ${JSON.stringify(result, null, 2)}`)
@@ -1993,8 +1999,6 @@ describe('#BlockchainRouter', () => {
'confirmations property expected'
)
assert.property(result, 'size', 'size property expected')
assert.property(result, 'strippedsize', 'strippedsize property expected')
assert.property(result, 'weight', 'weight property expected')
assert.property(result, 'height', 'height property expected')
assert.property(result, 'version', 'version property expected')
assert.property(result, 'versionHex', 'versionHex property expected')