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