bitcoinjs-lib/test/integration/_regtest.js

157 lines
3.7 KiB
JavaScript
Raw Normal View History

2018-06-25 08:25:12 +02:00
const assert = require('assert')
const bitcoin = require('../../')
2019-04-07 15:27:16 +02:00
const dhttpCallback = require('dhttp/200')
// use Promises
const dhttp = options => new Promise((resolve, reject) => {
return dhttpCallback(options, (err, data) => {
if (err) return reject(err)
else return resolve(data)
})
})
2018-06-25 08:25:12 +02:00
const APIPASS = process.env.APIPASS || 'satoshi'
2019-04-09 05:09:43 +02:00
const APIURL = process.env.APIURL || 'https://regtest.bitbank.cc/1'
const NETWORK = bitcoin.networks.testnet
2019-04-07 15:27:16 +02:00
function broadcast (txHex) {
return dhttp({
method: 'POST',
url: APIURL + '/t/push',
body: txHex
2019-04-07 15:27:16 +02:00
})
}
2019-04-07 15:27:16 +02:00
function mine (count) {
return dhttp({
method: 'POST',
url: APIURL + '/r/generate?count=' + count + '&key=' + APIPASS
2019-04-07 15:27:16 +02:00
})
}
2019-04-07 15:27:16 +02:00
function height () {
return dhttp({
2018-02-01 02:54:20 +01:00
method: 'GET',
url: APIURL + '/b/best/height'
2019-04-07 15:27:16 +02:00
})
2018-02-01 02:54:20 +01:00
}
function _faucetRequest (address, value) {
return dhttp({
method: 'POST',
url: APIURL + '/r/faucet?address=' + address + '&value=' + value + '&key=' + APIPASS
})
}
2019-04-07 15:27:16 +02:00
async function faucet (address, value) {
let count = 0
let _unspents = []
const sleep = ms => new Promise((resolve, reject) => setTimeout(resolve, ms))
2019-04-08 08:34:12 +02:00
const randInt = (min, max) => min + Math.floor((max - min + 1) * Math.random())
while (_unspents.length === 0) {
2019-04-07 15:27:16 +02:00
if (count > 0) {
if (count >= 5) throw new Error('Missing Inputs')
console.log('Missing Inputs, retry #' + count)
2019-04-08 08:34:12 +02:00
await sleep(randInt(150, 250))
2019-04-07 15:27:16 +02:00
}
const txId = await _faucetRequest(address, value)
.then(
v => v, // Pass success value as is
async err => {
// Bad Request error is fixed by making sure height is >= 432
const currentHeight = await height()
if (err.message === 'Bad Request' && currentHeight < 432) {
await mine(432 - currentHeight)
return _faucetRequest(address, value)
} else if (err.message === 'Bad Request' && currentHeight >= 432) {
return _faucetRequest(address, value)
} else {
throw err
}
}
)
await sleep(randInt(10, 40))
2019-04-07 15:27:16 +02:00
const results = await unspents(address)
2019-04-07 15:27:16 +02:00
_unspents = results.filter(x => x.txId === txId)
count++
}
2019-04-07 15:27:16 +02:00
return _unspents.pop()
}
2019-04-07 15:27:16 +02:00
async function faucetComplex (output, value) {
const keyPair = bitcoin.ECPair.makeRandom({ network: NETWORK })
const p2pkh = bitcoin.payments.p2pkh({ pubkey: keyPair.publicKey, network: NETWORK })
2019-04-07 15:27:16 +02:00
const unspent = await faucet(p2pkh.address, value * 2)
2019-04-07 15:27:16 +02:00
const txvb = new bitcoin.TransactionBuilder(NETWORK)
txvb.addInput(unspent.txId, unspent.vout, null, p2pkh.output)
txvb.addOutput(output, value)
2019-06-13 06:07:00 +02:00
txvb.sign({
prevOutScriptType: 'p2pkh',
vin: 0,
keyPair
})
2019-04-07 15:27:16 +02:00
const txv = txvb.build()
2019-04-07 15:27:16 +02:00
await broadcast(txv.toHex())
2019-04-07 15:27:16 +02:00
return {
txId: txv.getId(),
vout: 0,
value
}
}
2019-04-07 15:27:16 +02:00
function fetch (txId) {
return dhttp({
method: 'GET',
url: APIURL + '/t/' + txId + '/json'
2019-04-07 15:27:16 +02:00
})
}
2019-04-07 15:27:16 +02:00
function unspents (address) {
return dhttp({
method: 'GET',
url: APIURL + '/a/' + address + '/unspents'
2019-04-07 15:27:16 +02:00
})
}
2019-04-07 15:27:16 +02:00
async function verify (txo) {
const tx = await fetch(txo.txId)
2019-04-07 15:27:16 +02:00
const txoActual = tx.outs[txo.vout]
if (txo.address) assert.strictEqual(txoActual.address, txo.address)
if (txo.value) assert.strictEqual(txoActual.value, txo.value)
}
2018-05-22 09:43:25 +02:00
function getAddress (node, network) {
2018-06-27 05:54:47 +02:00
return bitcoin.payments.p2pkh({ pubkey: node.publicKey, network }).address
2018-05-22 09:43:25 +02:00
}
function randomAddress () {
2018-05-22 09:43:25 +02:00
return getAddress(bitcoin.ECPair.makeRandom({
network: bitcoin.networks.testnet
2018-05-22 09:43:25 +02:00
}), bitcoin.networks.testnet)
}
module.exports = {
broadcast,
2019-04-07 15:27:16 +02:00
dhttp,
faucet,
faucetComplex,
fetch,
height,
mine,
network: NETWORK,
unspents,
verify,
randomAddress,
RANDOM_ADDRESS: randomAddress()
}