bitcoinjs-lib/test/transaction.spec.ts

289 lines
8.3 KiB
TypeScript
Raw Normal View History

2018-07-23 09:45:01 +02:00
const { describe, it, beforeEach } = require('mocha')
2018-06-25 08:25:12 +02:00
const assert = require('assert')
const bscript = require('../src/script')
2018-06-25 08:25:12 +02:00
const fixtures = require('./fixtures/transaction')
2018-12-27 10:26:08 +01:00
const Transaction = require('..').Transaction
describe('Transaction', () => {
function fromRaw (raw, noWitness) {
const tx = new Transaction()
tx.version = raw.version
tx.locktime = raw.locktime
raw.ins.forEach((txIn, i) => {
const txHash = Buffer.from(txIn.hash, 'hex')
let scriptSig
if (txIn.data) {
2017-04-19 09:39:16 +02:00
scriptSig = Buffer.from(txIn.data, 'hex')
} else if (txIn.script) {
2015-08-20 05:31:29 +02:00
scriptSig = bscript.fromASM(txIn.script)
}
2015-08-20 05:31:29 +02:00
tx.addInput(txHash, txIn.index, txIn.sequence, scriptSig)
2016-11-14 03:40:29 +01:00
if (!noWitness && txIn.witness) {
const witness = txIn.witness.map(x => {
2017-04-19 09:39:16 +02:00
return Buffer.from(x, 'hex')
2016-11-14 03:40:29 +01:00
})
tx.setWitness(i, witness)
}
})
raw.outs.forEach(txOut => {
let script
if (txOut.data) {
2017-04-19 09:39:16 +02:00
script = Buffer.from(txOut.data, 'hex')
} else if (txOut.script) {
2015-08-20 05:31:29 +02:00
script = bscript.fromASM(txOut.script)
}
tx.addOutput(script, txOut.value)
})
return tx
}
describe('fromBuffer/fromHex', () => {
function importExport (f) {
const id = f.id || f.hash
const txHex = f.hex || f.txHex
it('imports ' + f.description + ' (' + id + ')', () => {
const actual = Transaction.fromHex(txHex)
assert.strictEqual(actual.toHex(), txHex)
})
if (f.whex) {
it('imports ' + f.description + ' (' + id + ') as witness', () => {
const actual = Transaction.fromHex(f.whex)
assert.strictEqual(actual.toHex(), f.whex)
})
}
}
fixtures.valid.forEach(importExport)
fixtures.hashForSignature.forEach(importExport)
fixtures.hashForWitnessV0.forEach(importExport)
fixtures.invalid.fromBuffer.forEach(f => {
it('throws on ' + f.exception, () => {
assert.throws(() => {
2014-06-16 16:17:08 +02:00
Transaction.fromHex(f.hex)
}, new RegExp(f.exception))
2014-06-16 16:17:08 +02:00
})
})
it('.version should be interpreted as an int32le', () => {
const txHex = 'ffffffff0000ffffffff'
const tx = Transaction.fromHex(txHex)
assert.strictEqual(-1, tx.version)
assert.strictEqual(0xffffffff, tx.locktime)
})
2014-06-16 16:17:08 +02:00
})
describe('toBuffer/toHex', () => {
fixtures.valid.forEach(f => {
it('exports ' + f.description + ' (' + f.id + ')', () => {
const actual = fromRaw(f.raw, true)
assert.strictEqual(actual.toHex(), f.hex)
2014-06-16 16:17:08 +02:00
})
if (f.whex) {
it('exports ' + f.description + ' (' + f.id + ') as witness', () => {
const wactual = fromRaw(f.raw)
assert.strictEqual(wactual.toHex(), f.whex)
})
}
})
it('accepts target Buffer and offset parameters', () => {
const f = fixtures.valid[0]
const actual = fromRaw(f.raw)
const byteLength = actual.byteLength()
const target = Buffer.alloc(byteLength * 2)
const a = actual.toBuffer(target, 0)
const b = actual.toBuffer(target, byteLength)
assert.strictEqual(a.length, byteLength)
assert.strictEqual(b.length, byteLength)
assert.strictEqual(a.toString('hex'), f.hex)
assert.strictEqual(b.toString('hex'), f.hex)
assert.deepStrictEqual(a, b)
assert.deepStrictEqual(a, target.slice(0, byteLength))
assert.deepStrictEqual(b, target.slice(byteLength))
})
2014-06-16 16:17:08 +02:00
})
describe('hasWitnesses', () => {
fixtures.valid.forEach(f => {
it('detects if the transaction has witnesses: ' + (f.whex ? 'true' : 'false'), () => {
assert.strictEqual(Transaction.fromHex(f.whex ? f.whex : f.hex).hasWitnesses(), !!f.whex)
})
})
})
describe('weight/virtualSize', () => {
it('computes virtual size', () => {
fixtures.valid.forEach(f => {
const transaction = Transaction.fromHex(f.whex ? f.whex : f.hex)
2017-06-20 15:39:47 +02:00
assert.strictEqual(transaction.virtualSize(), f.virtualSize)
})
})
it('computes weight', () => {
fixtures.valid.forEach(f => {
const transaction = Transaction.fromHex(f.whex ? f.whex : f.hex)
2017-06-20 15:39:47 +02:00
assert.strictEqual(transaction.weight(), f.weight)
})
})
})
describe('addInput', () => {
let prevTxHash
beforeEach(() => {
2017-04-19 09:39:16 +02:00
prevTxHash = Buffer.from('ffffffff00ffff000000000000000000000000000000000000000000101010ff', 'hex')
})
it('returns an index', () => {
const tx = new Transaction()
2015-05-07 03:29:20 +02:00
assert.strictEqual(tx.addInput(prevTxHash, 0), 0)
assert.strictEqual(tx.addInput(prevTxHash, 0), 1)
2014-06-16 16:17:08 +02:00
})
2014-05-01 22:25:57 +02:00
it('defaults to empty script, witness and 0xffffffff SEQUENCE number', () => {
const tx = new Transaction()
tx.addInput(prevTxHash, 0)
2015-08-07 08:30:24 +02:00
assert.strictEqual(tx.ins[0].script.length, 0)
assert.strictEqual(tx.ins[0].witness.length, 0)
assert.strictEqual(tx.ins[0].sequence, 0xffffffff)
})
fixtures.invalid.addInput.forEach(f => {
it('throws on ' + f.exception, () => {
const tx = new Transaction()
const hash = Buffer.from(f.hash, 'hex')
assert.throws(() => {
tx.addInput(hash, f.index)
}, new RegExp(f.exception))
})
})
2014-06-16 16:17:08 +02:00
})
2014-03-17 10:49:37 +01:00
describe('addOutput', () => {
it('returns an index', () => {
const tx = new Transaction()
2017-04-19 09:39:16 +02:00
assert.strictEqual(tx.addOutput(Buffer.alloc(0), 0), 0)
assert.strictEqual(tx.addOutput(Buffer.alloc(0), 0), 1)
2014-06-16 16:17:08 +02:00
})
})
2014-03-17 18:32:31 +01:00
describe('clone', () => {
fixtures.valid.forEach(f => {
let actual
let expected
beforeEach(() => {
expected = Transaction.fromHex(f.hex)
actual = expected.clone()
})
it('should have value equality', () => {
assert.deepStrictEqual(actual, expected)
})
it('should not have reference equality', () => {
assert.notStrictEqual(actual, expected)
})
2014-06-16 16:17:08 +02:00
})
})
describe('getHash/getId', () => {
function verify (f) {
it('should return the id for ' + f.id + '(' + f.description + ')', () => {
const tx = Transaction.fromHex(f.whex || f.hex)
assert.strictEqual(tx.getHash().toString('hex'), f.hash)
2015-05-07 03:29:20 +02:00
assert.strictEqual(tx.getId(), f.id)
2014-03-17 18:32:31 +01:00
})
}
fixtures.valid.forEach(verify)
})
describe('isCoinbase', () => {
function verify (f) {
it('should return ' + f.coinbase + ' for ' + f.id + '(' + f.description + ')', () => {
const tx = Transaction.fromHex(f.hex)
assert.strictEqual(tx.isCoinbase(), f.coinbase)
})
}
fixtures.valid.forEach(verify)
})
describe('hashForSignature', () => {
it('does not use Witness serialization', () => {
const randScript = Buffer.from('6a', 'hex')
const tx = new Transaction()
2017-04-19 09:39:16 +02:00
tx.addInput(Buffer.from('0000000000000000000000000000000000000000000000000000000000000000', 'hex'), 0)
tx.addOutput(randScript, 5000000000)
const original = tx.__toBuffer
tx.__toBuffer = (a, b, c) => {
if (c !== false) throw new Error('hashForSignature MUST pass false')
return original.call(this, a, b, c)
}
assert.throws(() => {
tx.__toBuffer(undefined, undefined, true)
}, /hashForSignature MUST pass false/)
// assert hashForSignature does not pass false
assert.doesNotThrow(() => {
tx.hashForSignature(0, randScript, 1)
})
})
fixtures.hashForSignature.forEach(f => {
it('should return ' + f.hash + ' for ' + (f.description ? ('case "' + f.description + '"') : f.script), () => {
const tx = Transaction.fromHex(f.txHex)
const script = bscript.fromASM(f.script)
assert.strictEqual(tx.hashForSignature(f.inIndex, script, f.type).toString('hex'), f.hash)
})
})
})
describe('hashForWitnessV0', () => {
fixtures.hashForWitnessV0.forEach(f => {
it('should return ' + f.hash + ' for ' + (f.description ? ('case "' + f.description + '"') : ''), () => {
const tx = Transaction.fromHex(f.txHex)
const script = bscript.fromASM(f.script)
assert.strictEqual(tx.hashForWitnessV0(f.inIndex, script, f.value, f.type).toString('hex'), f.hash)
})
})
})
2016-11-14 06:13:21 +01:00
describe('setWitness', () => {
it('only accepts a a witness stack (Array of Buffers)', () => {
assert.throws(() => {
2016-11-14 06:13:21 +01:00
(new Transaction()).setWitness(0, 'foobar')
2016-11-25 04:27:48 +01:00
}, /Expected property "1" of type \[Buffer], got String "foobar"/)
2016-11-14 06:13:21 +01:00
})
})
})