bitcoinjs-lib/test/script.js

96 lines
2.5 KiB
JavaScript
Raw Normal View History

2015-02-23 00:36:57 +01:00
/* global describe, it */
/* eslint-disable no-new */
var assert = require('assert')
2014-05-28 11:36:33 +02:00
var opcodes = require('../src/opcodes')
2014-04-21 13:51:27 +02:00
var Script = require('../src/script')
2014-04-21 13:51:27 +02:00
2014-05-18 11:47:39 +02:00
var fixtures = require('./fixtures/script.json')
2014-05-09 04:56:35 +02:00
2015-02-23 00:36:57 +01:00
describe('Script', function () {
describe('constructor', function () {
it('accepts valid parameters', function () {
var buffer = new Buffer([1])
var chunks = [1]
var script = new Script(buffer, chunks)
assert.equal(script.buffer, buffer)
assert.equal(script.chunks, chunks)
2014-03-17 09:13:49 +01:00
})
2015-02-23 00:36:57 +01:00
it('throws an error when input is not an array', function () {
assert.throws(function () {
new Script({})
}, /Expected Buffer, got/)
})
})
2015-02-23 00:36:57 +01:00
describe('fromASM/toASM', function () {
fixtures.valid.forEach(function (f) {
if (!f.asm) return
2015-02-23 00:36:57 +01:00
it('decodes/encodes ' + f.description, function () {
var script = Script.fromASM(f.asm)
assert.equal(script.toASM(), f.asm)
assert.equal(script.toHex(), f.hex)
2014-06-25 07:44:15 +02:00
})
})
})
2015-02-23 00:36:57 +01:00
describe('fromHex/toHex', function () {
fixtures.valid.forEach(function (f) {
it('decodes/encodes ' + f.description, function () {
var script = Script.fromHex(f.hex)
assert.equal(script.toASM(), f.asm)
assert.equal(script.toHex(), f.hex)
})
})
})
2015-02-23 00:36:57 +01:00
describe('getHash', function () {
fixtures.valid.forEach(function (f) {
it('produces a HASH160 of ' + f.description, function () {
var script = Script.fromHex(f.hex)
assert.equal(script.getHash().toString('hex'), f.hash)
})
})
})
2015-02-23 00:36:57 +01:00
describe('fromChunks', function () {
it('should match expected behaviour', function () {
2014-05-28 11:36:33 +02:00
var hash = new Buffer(32)
2014-06-12 12:58:56 +02:00
hash.fill(0)
2014-05-28 11:36:33 +02:00
var script = Script.fromChunks([
opcodes.OP_HASH160,
hash,
opcodes.OP_EQUAL
])
2014-06-12 12:58:56 +02:00
assert.equal(script.toHex(), 'a920000000000000000000000000000000000000000000000000000000000000000087')
2014-05-28 11:36:33 +02:00
})
})
2015-02-23 00:36:57 +01:00
describe('without', function () {
2014-05-28 11:36:33 +02:00
var hex = 'a914e8c300c87986efa94c37c0519929019ef86eb5b487'
var script = Script.fromHex(hex)
2015-02-23 00:36:57 +01:00
it('should return a script without the given value', function () {
2014-05-28 11:36:33 +02:00
var subScript = script.without(opcodes.OP_HASH160)
assert.equal(subScript.toHex(), '14e8c300c87986efa94c37c0519929019ef86eb5b487')
})
2015-02-23 00:36:57 +01:00
it('shouldnt mutate the original script', function () {
2014-05-28 11:36:33 +02:00
var subScript = script.without(opcodes.OP_EQUAL)
assert.notEqual(subScript.toHex(), hex)
assert.equal(script.toHex(), hex)
})
})
})