bitcoinjs-lib/test/script.js

372 lines
11 KiB
JavaScript
Raw Normal View History

2015-02-23 00:36:57 +01:00
/* global describe, it */
var assert = require('assert')
var bcrypto = require('../src/crypto')
var bscript = require('../src/script')
var ops = require('../src/opcodes')
2015-08-20 05:31:29 +02:00
var fixtures = require('./fixtures/script.json')
2015-08-20 05:31:29 +02:00
describe('script', function () {
// TODO
2015-02-23 00:36:57 +01:00
describe.skip('isCanonicalPubKey', function () {})
describe.skip('isCanonicalSignature', function () {})
2015-08-14 03:16:17 +02:00
describe('fromASM/toASM', function () {
fixtures.valid.forEach(function (f) {
if (f.scriptSig) {
it('encodes/decodes ' + f.scriptSig, function () {
var scriptSig = bscript.fromASM(f.scriptSig)
2015-08-14 03:16:17 +02:00
assert.strictEqual(bscript.toASM(scriptSig), f.scriptSig)
2015-08-14 03:16:17 +02:00
})
}
if (f.scriptPubKey) {
it('encodes/decodes ' + f.scriptPubKey, function () {
var scriptPubKey = bscript.fromASM(f.scriptPubKey)
2015-08-14 03:16:17 +02:00
assert.strictEqual(bscript.toASM(scriptPubKey), f.scriptPubKey)
2015-08-14 03:16:17 +02:00
})
}
})
})
describe('compile', function () {
fixtures.valid.forEach(function (f) {
if (f.scriptSig) {
it('compiles ' + f.scriptSig, function () {
var scriptSig = bscript.fromASM(f.scriptSig)
2015-08-14 03:16:17 +02:00
assert.strictEqual(bscript.compile(scriptSig).toString('hex'), f.scriptSigHex)
2015-08-14 03:16:17 +02:00
})
}
if (f.scriptPubKey) {
it('compiles ' + f.scriptPubKey, function () {
var scriptPubKey = bscript.fromASM(f.scriptPubKey)
2015-08-14 03:16:17 +02:00
assert.strictEqual(bscript.compile(scriptPubKey).toString('hex'), f.scriptPubKeyHex)
2015-08-14 03:16:17 +02:00
})
}
})
})
describe('decompile', function () {
fixtures.valid.forEach(function (f) {
if (f.scriptSigHex) {
it('decompiles ' + f.scriptSig, function () {
var chunks = bscript.decompile(new Buffer(f.scriptSigHex, 'hex'))
2015-08-14 03:16:17 +02:00
assert.strictEqual(bscript.toASM(chunks), f.scriptSig)
2015-08-14 03:16:17 +02:00
})
}
if (f.scriptPubKeyHex) {
it('decompiles ' + f.scriptPubKey, function () {
var chunks = bscript.decompile(new Buffer(f.scriptPubKeyHex, 'hex'))
2015-08-14 03:16:17 +02:00
assert.strictEqual(bscript.toASM(chunks), f.scriptPubKey)
2015-08-14 03:16:17 +02:00
})
}
})
fixtures.invalid.decompile.forEach(function (f) {
it('decompiles ' + f.hex + ' to [] because of "' + f.description + '"', function () {
var chunks = bscript.decompile(new Buffer(f.hex, 'hex'))
2015-08-14 03:16:17 +02:00
assert.strictEqual(chunks.length, 0)
})
})
})
2015-02-23 00:36:57 +01:00
describe('classifyInput', function () {
fixtures.valid.forEach(function (f) {
if (!f.scriptSig) return
2015-02-23 00:36:57 +01:00
it('classifies ' + f.scriptSig + ' as ' + f.type, function () {
var scriptSig = bscript.fromASM(f.scriptSig)
var type = bscript.classifyInput(scriptSig)
2015-05-07 03:29:20 +02:00
assert.strictEqual(type, f.type)
})
})
2015-02-23 00:36:57 +01:00
fixtures.valid.forEach(function (f) {
if (!f.scriptSig) return
if (!f.typeIncomplete) return
2015-02-23 00:36:57 +01:00
it('classifies incomplete ' + f.scriptSig + ' as ' + f.typeIncomplete, function () {
var scriptSig = bscript.fromASM(f.scriptSig)
var type = bscript.classifyInput(scriptSig, true)
2015-05-07 03:29:20 +02:00
assert.strictEqual(type, f.typeIncomplete)
})
})
})
2015-02-23 00:36:57 +01:00
describe('classifyOutput', function () {
fixtures.valid.forEach(function (f) {
if (!f.scriptPubKey) return
2015-02-23 00:36:57 +01:00
it('classifies ' + f.scriptPubKey + ' as ' + f.type, function () {
var scriptPubKey = bscript.fromASM(f.scriptPubKey)
var type = bscript.classifyOutput(scriptPubKey)
2015-05-07 03:29:20 +02:00
assert.strictEqual(type, f.type)
})
})
2014-11-28 02:50:37 +01:00
})
2015-02-23 00:36:57 +01:00
;['PubKey', 'PubKeyHash', 'ScriptHash', 'Multisig', 'NullData'].forEach(function (type) {
2015-02-15 11:21:01 +01:00
var inputFnName = 'is' + type + 'Input'
var outputFnName = 'is' + type + 'Output'
var inputFn = bscript[inputFnName]
var outputFn = bscript[outputFnName]
2015-02-23 00:36:57 +01:00
describe('is' + type + 'Input', function () {
fixtures.valid.forEach(function (f) {
2014-11-28 02:50:37 +01:00
var expected = type.toLowerCase() === f.type
if (inputFn && f.scriptSig) {
var scriptSig = bscript.fromASM(f.scriptSig)
2014-11-28 02:50:37 +01:00
it('returns ' + expected + ' for ' + f.scriptSig, function () {
2015-08-20 05:31:29 +02:00
assert.strictEqual(inputFn(scriptSig), expected)
2014-11-28 02:50:37 +01:00
})
if (f.typeIncomplete) {
var expectedIncomplete = type.toLowerCase() === f.typeIncomplete
2015-02-23 00:36:57 +01:00
it('returns ' + expected + ' for ' + f.scriptSig, function () {
2015-08-20 05:31:29 +02:00
assert.strictEqual(inputFn(scriptSig, true), expectedIncomplete)
})
}
2014-11-28 02:50:37 +01:00
}
})
2015-02-15 11:21:01 +01:00
if (!(inputFnName in fixtures.invalid)) return
2015-02-23 00:36:57 +01:00
fixtures.invalid[inputFnName].forEach(function (f) {
it('returns false for ' + f.description + ' (' + (f.scriptSig || f.scriptSigHex) + ')', function () {
var scriptSig
if (f.scriptSig) {
scriptSig = bscript.fromASM(f.scriptSig)
} else {
scriptSig = new Buffer(f.scriptSigHex, 'hex')
}
2015-02-15 11:21:01 +01:00
assert.strictEqual(inputFn(scriptSig), false)
})
2015-02-15 11:21:01 +01:00
})
2014-11-28 02:50:37 +01:00
})
2015-02-23 00:36:57 +01:00
describe('is' + type + 'Output', function () {
fixtures.valid.forEach(function (f) {
2014-11-28 02:50:37 +01:00
var expected = type.toLowerCase() === f.type
2014-11-28 02:50:37 +01:00
if (outputFn && f.scriptPubKey) {
2015-02-23 00:36:57 +01:00
it('returns ' + expected + ' for ' + f.scriptPubKey, function () {
var scriptPubKey = bscript.fromASM(f.scriptPubKey)
2014-11-28 02:50:37 +01:00
2015-08-20 05:31:29 +02:00
assert.strictEqual(outputFn(scriptPubKey), expected)
2014-11-28 02:50:37 +01:00
})
}
})
2015-02-15 11:21:01 +01:00
if (!(outputFnName in fixtures.invalid)) return
2015-02-23 00:36:57 +01:00
fixtures.invalid[outputFnName].forEach(function (f) {
it('returns false for ' + f.description + ' (' + (f.scriptPubKey || f.scriptPubKeyHex) + ')', function () {
var scriptPubKey
2015-02-15 11:21:01 +01:00
if (f.scriptPubKey) {
scriptPubKey = bscript.fromASM(f.scriptPubKey)
} else {
scriptPubKey = new Buffer(f.scriptPubKeyHex, 'hex')
}
assert.strictEqual(outputFn(scriptPubKey), false)
})
2015-02-15 11:21:01 +01:00
})
})
})
2015-02-23 00:36:57 +01:00
describe('pubKeyInput', function () {
fixtures.valid.forEach(function (f) {
if (f.type !== 'pubkey') return
2015-02-23 00:36:57 +01:00
it('returns ' + f.scriptSig, function () {
2014-11-28 02:50:37 +01:00
var signature = new Buffer(f.signature, 'hex')
var scriptSig = bscript.pubKeyInput(signature)
assert.strictEqual(bscript.toASM(scriptSig), f.scriptSig)
})
2014-11-28 02:50:37 +01:00
})
})
2015-02-23 00:36:57 +01:00
describe('pubKeyOutput', function () {
fixtures.valid.forEach(function (f) {
2014-11-28 02:50:37 +01:00
if (f.type !== 'pubkey') return
2015-02-23 00:36:57 +01:00
it('returns ' + f.scriptPubKey, function () {
2015-03-02 06:48:36 +01:00
var pubKey = new Buffer(f.pubKey, 'hex')
var scriptPubKey = bscript.pubKeyOutput(pubKey)
2015-08-18 02:17:04 +02:00
assert.strictEqual(bscript.toASM(scriptPubKey), f.scriptPubKey)
})
})
})
2015-02-23 00:36:57 +01:00
describe('pubKeyHashInput', function () {
fixtures.valid.forEach(function (f) {
if (f.type !== 'pubkeyhash') return
2015-03-02 06:48:36 +01:00
var pubKey = new Buffer(f.pubKey, 'hex')
2015-02-23 00:36:57 +01:00
it('returns ' + f.scriptSig, function () {
2014-11-28 02:50:37 +01:00
var signature = new Buffer(f.signature, 'hex')
var scriptSig = bscript.pubKeyHashInput(signature, pubKey)
assert.strictEqual(bscript.toASM(scriptSig), f.scriptSig)
2014-06-14 15:30:34 +02:00
})
2014-11-28 02:50:37 +01:00
})
})
2015-02-23 00:36:57 +01:00
describe('pubKeyHashOutput', function () {
fixtures.valid.forEach(function (f) {
2014-11-28 02:50:37 +01:00
if (f.type !== 'pubkeyhash') return
2015-03-02 06:48:36 +01:00
var pubKey = new Buffer(f.pubKey, 'hex')
var pubKeyHash = bcrypto.hash160(pubKey)
2014-11-28 02:50:37 +01:00
2015-02-23 00:36:57 +01:00
it('returns ' + f.scriptPubKey, function () {
var scriptPubKey = bscript.pubKeyHashOutput(pubKeyHash)
assert.strictEqual(bscript.toASM(scriptPubKey), f.scriptPubKey)
2014-06-14 15:30:34 +02:00
})
})
2015-08-18 01:18:23 +02:00
fixtures.invalid.pubKeyHashOutput.forEach(function (f) {
var hash = new Buffer(f.hash, 'hex')
it('throws on ' + f.exception, function () {
assert.throws(function () {
bscript.pubKeyHashOutput(hash)
2015-08-18 01:18:23 +02:00
}, new RegExp(f.exception))
})
})
2014-06-14 15:30:34 +02:00
})
2015-02-23 00:36:57 +01:00
describe('multisigInput', function () {
fixtures.valid.forEach(function (f) {
if (f.type !== 'multisig') return
2015-02-23 00:36:57 +01:00
it('returns ' + f.scriptSig, function () {
var signatures = f.signatures.map(function (signature) {
return signature ? new Buffer(signature, 'hex') : ops.OP_0
2014-11-28 02:50:37 +01:00
})
var scriptSig = bscript.multisigInput(signatures)
assert.strictEqual(bscript.toASM(scriptSig), f.scriptSig)
2014-11-28 02:50:37 +01:00
})
})
2015-02-23 00:36:57 +01:00
fixtures.invalid.multisigInput.forEach(function (f) {
var scriptPubKey = bscript.fromASM(f.scriptPubKey)
2014-06-14 15:30:34 +02:00
2015-02-23 00:36:57 +01:00
it('throws on ' + f.exception, function () {
var signatures = f.signatures.map(function (signature) {
return signature ? new Buffer(signature, 'hex') : ops.OP_0
2014-06-14 15:30:34 +02:00
})
2015-02-23 00:36:57 +01:00
assert.throws(function () {
bscript.multisigInput(signatures, scriptPubKey)
2014-11-28 02:50:37 +01:00
}, new RegExp(f.exception))
2014-06-14 15:30:34 +02:00
})
})
2014-11-28 02:50:37 +01:00
})
2015-02-23 00:36:57 +01:00
describe('multisigOutput', function () {
fixtures.valid.forEach(function (f) {
2014-11-28 02:50:37 +01:00
if (f.type !== 'multisig') return
2015-03-02 06:48:36 +01:00
var pubKeys = f.pubKeys.map(function (p) { return new Buffer(p, 'hex') })
var scriptPubKey = bscript.multisigOutput(pubKeys.length, pubKeys)
2014-06-14 15:30:34 +02:00
2015-02-23 00:36:57 +01:00
it('returns ' + f.scriptPubKey, function () {
assert.strictEqual(bscript.toASM(scriptPubKey), f.scriptPubKey)
2014-11-28 02:50:37 +01:00
})
})
2015-02-23 00:36:57 +01:00
fixtures.invalid.multisigOutput.forEach(function (f) {
2015-03-02 06:48:36 +01:00
var pubKeys = f.pubKeys.map(function (p) {
return new Buffer(p, 'hex')
})
2014-11-28 02:50:37 +01:00
2015-02-23 00:36:57 +01:00
it('throws on ' + f.exception, function () {
assert.throws(function () {
bscript.multisigOutput(f.m, pubKeys)
2014-11-28 02:50:37 +01:00
}, new RegExp(f.exception))
})
})
})
2015-02-23 00:36:57 +01:00
describe('scriptHashInput', function () {
fixtures.valid.forEach(function (f) {
if (f.type !== 'scripthash') return
var redeemScript = bscript.fromASM(f.redeemScript)
var redeemScriptSig = bscript.fromASM(f.redeemScriptSig)
2015-02-23 00:36:57 +01:00
it('returns ' + f.scriptSig, function () {
var scriptSig = bscript.scriptHashInput(redeemScriptSig, redeemScript)
2014-06-14 15:30:34 +02:00
if (f.scriptSig) {
assert.strictEqual(bscript.toASM(scriptSig), f.scriptSig)
} else {
2015-08-18 02:17:04 +02:00
assert.strictEqual(scriptSig.toString('hex'), f.scriptSigHex)
}
2014-06-14 15:30:34 +02:00
})
2014-11-28 02:50:37 +01:00
})
})
2014-06-14 15:30:34 +02:00
2015-02-23 00:36:57 +01:00
describe('scriptHashOutput', function () {
fixtures.valid.forEach(function (f) {
2014-11-28 02:50:37 +01:00
if (f.type !== 'scripthash') return
if (!f.scriptPubKey) return
2014-11-28 02:50:37 +01:00
2015-02-23 00:36:57 +01:00
it('returns ' + f.scriptPubKey, function () {
var redeemScript = bscript.fromASM(f.redeemScript)
var scriptPubKey = bscript.scriptHashOutput(bcrypto.hash160(redeemScript))
2014-11-28 02:50:37 +01:00
assert.strictEqual(bscript.toASM(scriptPubKey), f.scriptPubKey)
2014-06-14 15:30:34 +02:00
})
})
2015-08-18 01:18:23 +02:00
fixtures.invalid.scriptHashOutput.forEach(function (f) {
var hash = new Buffer(f.hash, 'hex')
it('throws on ' + f.exception, function () {
assert.throws(function () {
bscript.scriptHashOutput(hash)
2015-08-18 01:18:23 +02:00
}, new RegExp(f.exception))
})
})
})
2015-02-23 00:36:57 +01:00
describe('nullDataOutput', function () {
fixtures.valid.forEach(function (f) {
if (f.type !== 'nulldata') return
var data = new Buffer(f.data, 'hex')
var scriptPubKey = bscript.nullDataOutput(data)
2015-02-23 00:36:57 +01:00
it('returns ' + f.scriptPubKey, function () {
assert.strictEqual(bscript.toASM(scriptPubKey), f.scriptPubKey)
})
})
})
})