mirror of
https://github.com/Permissionless-Software-Foundation/bch-js.git
synced 2026-09-21 16:51:59 -07:00
feat(util): Removing util.validateAddress functions
This commit is contained in:
@@ -3,13 +3,13 @@
|
||||
rest.bitcoin.com.
|
||||
*/
|
||||
|
||||
import chai from 'chai'
|
||||
import BCHJS from '../../../../src/bch-js.js'
|
||||
// import chai from 'chai'
|
||||
// import BCHJS from '../../../../src/bch-js.js'
|
||||
|
||||
// Inspect utility used for debugging.
|
||||
import util from 'util'
|
||||
const assert = chai.assert
|
||||
const bchjs = new BCHJS()
|
||||
// const assert = chai.assert
|
||||
// const bchjs = new BCHJS()
|
||||
util.inspect.defaultOptions = {
|
||||
showHidden: true,
|
||||
colors: true,
|
||||
@@ -20,82 +20,6 @@ describe('#util', () => {
|
||||
beforeEach(async () => {
|
||||
if (process.env.IS_USING_FREE_TIER) await sleep(1500)
|
||||
})
|
||||
|
||||
describe('#validateAddress', () => {
|
||||
it('should return false for testnet addr on mainnet', async () => {
|
||||
const address = 'bchtest:qqqk4y6lsl5da64sg5qc3xezmplyu5kmpyz2ysaa5y'
|
||||
|
||||
const result = await bchjs.Util.validateAddress(address)
|
||||
// console.log(`result: ${JSON.stringify(result, null, 2)}`)
|
||||
|
||||
assert.hasAllKeys(result, ['isvalid'])
|
||||
assert.equal(result.isvalid, false)
|
||||
})
|
||||
|
||||
it('should return false for bad address', async () => {
|
||||
const address = 'bitcoincash:qp4k8fjtgunhdr7yq30ha4peu'
|
||||
|
||||
const result = await bchjs.Util.validateAddress(address)
|
||||
// console.log(`result: ${JSON.stringify(result, null, 2)}`)
|
||||
|
||||
assert.hasAllKeys(result, ['isvalid'])
|
||||
assert.equal(result.isvalid, false)
|
||||
})
|
||||
|
||||
it('should validate valid address', async () => {
|
||||
const address = 'bitcoincash:qp4k8fjtgunhdr7yq30ha4peuwupzan2vcnwrmpy0z'
|
||||
|
||||
const result = await bchjs.Util.validateAddress(address)
|
||||
// console.log(`result: ${JSON.stringify(result, null, 2)}`)
|
||||
|
||||
assert.hasAnyKeys(result, [
|
||||
'isvalid',
|
||||
'address',
|
||||
'scriptPubKey',
|
||||
// "ismine",
|
||||
// "iswatchonly",
|
||||
'isscript'
|
||||
])
|
||||
assert.equal(result.isvalid, true)
|
||||
})
|
||||
|
||||
it('should validate an array of addresses', async () => {
|
||||
const address = [
|
||||
'bitcoincash:qp4k8fjtgunhdr7yq30ha4peuwupzan2vcnwrmpy0z',
|
||||
'bitcoincash:qp4k8fjtgunhdr7yq30ha4peuwupzan2vcnwrmpy0z'
|
||||
]
|
||||
|
||||
const result = await bchjs.Util.validateAddress(address)
|
||||
// console.log(`result: ${JSON.stringify(result, null, 2)}`)
|
||||
|
||||
assert.isArray(result)
|
||||
assert.hasAnyKeys(result[0], [
|
||||
'isvalid',
|
||||
'address',
|
||||
'scriptPubKey',
|
||||
// "ismine",
|
||||
// "iswatchonly",
|
||||
'isscript'
|
||||
])
|
||||
})
|
||||
|
||||
it('should throw error on array size rate limit', async () => {
|
||||
try {
|
||||
const dataMock =
|
||||
'bitcoincash:qp4k8fjtgunhdr7yq30ha4peuwupzan2vcnwrmpy0z'
|
||||
const data = []
|
||||
for (let i = 0; i < 25; i++) data.push(dataMock)
|
||||
|
||||
const result = await bchjs.Util.validateAddress(data)
|
||||
|
||||
console.log(`result: ${util.inspect(result)}`)
|
||||
assert.equal(true, false, 'Unexpected result!')
|
||||
} catch (err) {
|
||||
assert.hasAnyKeys(err, ['error'])
|
||||
assert.include(err.error, 'Array too large')
|
||||
}
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
function sleep (ms) {
|
||||
|
||||
Reference in New Issue
Block a user