bitcore-lib-zcash/test/opcode.js

166 lines
4.7 KiB
JavaScript
Raw Permalink Normal View History

2014-11-20 13:29:02 -08:00
'use strict';
2014-11-22 12:50:08 -08:00
var _ = require('lodash');
var chai = require('chai');
var should = chai.should();
var expect = chai.expect;
2014-11-20 13:29:02 -08:00
var bitcore = require('..');
var Opcode = bitcore.Opcode;
2014-08-29 19:24:51 -07:00
describe('Opcode', function() {
it('should create a new Opcode', function() {
var opcode = new Opcode(5);
2014-11-20 13:29:02 -08:00
should.exist(opcode);
2014-08-29 19:24:51 -07:00
});
2014-11-28 09:54:19 -08:00
2014-08-29 19:24:51 -07:00
it('should convert to a string with this handy syntax', function() {
Opcode(0).toString().should.equal('OP_0');
Opcode(96).toString().should.equal('OP_16');
Opcode(97).toString().should.equal('OP_NOP');
});
2014-11-28 09:54:19 -08:00
it('should convert to a number with this handy syntax', function() {
Opcode('OP_0').toNumber().should.equal(0);
Opcode('OP_16').toNumber().should.equal(96);
Opcode('OP_NOP').toNumber().should.equal(97);
});
describe('#fromNumber', function() {
it('should work for 0', function() {
Opcode.fromNumber(0).num.should.equal(0);
});
2014-12-11 08:27:42 -08:00
it('should fail for non-number', function() {
Opcode.fromNumber.bind(null, 'a string').should.throw('Invalid Argument');
2014-12-11 08:27:42 -08:00
});
});
2014-12-11 08:27:42 -08:00
describe('#set', function() {
it('should work for object', function() {
Opcode(42).num.should.equal(42);
2014-12-11 08:27:42 -08:00
});
it('should fail for empty-object', function() {
expect(function() {
Opcode();
}).to.throw(TypeError);
2014-12-11 08:27:42 -08:00
});
});
2014-11-28 09:54:19 -08:00
describe('#toNumber', function() {
it('should work for 0', function() {
Opcode.fromNumber(0).toNumber().should.equal(0);
});
});
2014-11-28 09:54:19 -08:00
describe('#buffer', function() {
it('should correctly input/output a buffer', function() {
var buf = new Buffer('a6', 'hex');
Opcode.fromBuffer(buf).toBuffer().should.deep.equal(buf);
});
});
describe('#fromString', function() {
it('should work for OP_0', function() {
Opcode.fromString('OP_0').num.should.equal(0);
});
2014-12-11 08:27:42 -08:00
it('should fail for invalid string', function() {
Opcode.fromString.bind(null, 'OP_SATOSHI').should.throw('Invalid opcodestr');
Opcode.fromString.bind(null, 'BANANA').should.throw('Invalid opcodestr');
2014-12-11 08:27:42 -08:00
});
it('should fail for non-string', function() {
Opcode.fromString.bind(null, 123).should.throw('Invalid Argument');
2014-12-11 08:27:42 -08:00
});
});
2014-11-28 09:54:19 -08:00
describe('#toString', function() {
it('should work for OP_0', function() {
Opcode.fromString('OP_0').toString().should.equal('OP_0');
});
it('should not work for non-opcode', function() {
expect(function(){
Opcode('OP_NOTACODE').toString();
}).to.throw('Opcode does not have a string representation');
});
2014-08-29 19:24:51 -07:00
});
2014-11-28 09:54:19 -08:00
2014-08-29 19:24:51 -07:00
describe('@map', function() {
2015-07-01 08:58:34 -07:00
it('should have a map containing 117 elements', function() {
_.size(Opcode.map).should.equal(117);
2014-08-29 19:24:51 -07:00
});
});
describe('@reverseMap', function() {
it('should exist and have op 185', function() {
should.exist(Opcode.reverseMap);
Opcode.reverseMap[185].should.equal('OP_NOP10');
});
});
2014-11-28 09:54:19 -08:00
var smallints = [
Opcode('OP_0'),
Opcode('OP_1'),
Opcode('OP_2'),
Opcode('OP_3'),
Opcode('OP_4'),
Opcode('OP_5'),
Opcode('OP_6'),
Opcode('OP_7'),
Opcode('OP_8'),
Opcode('OP_9'),
Opcode('OP_10'),
Opcode('OP_11'),
Opcode('OP_12'),
Opcode('OP_13'),
Opcode('OP_14'),
Opcode('OP_15'),
Opcode('OP_16')
];
2014-12-04 05:45:10 -08:00
describe('@smallInt', function() {
var testSmallInt = function(n, op) {
Opcode.smallInt(n).toString().should.equal(op.toString());
};
2016-02-01 07:48:40 -08:00
2014-12-04 05:45:10 -08:00
for (var i = 0; i < smallints.length; i++) {
var op = smallints[i];
it('should work for small int ' + op, testSmallInt.bind(null, i, op));
}
2016-02-01 07:48:40 -08:00
it('with not number', function () {
Opcode.smallInt.bind(null, '2').should.throw('Invalid Argument');
});
it('with n equal -1', function () {
Opcode.smallInt.bind(null, -1).should.throw('Invalid Argument');
});
it('with n equal 17', function () {
Opcode.smallInt.bind(null, 17).should.throw('Invalid Argument');
});
2014-12-04 05:45:10 -08:00
});
2014-11-28 09:54:19 -08:00
describe('@isSmallIntOp', function() {
2014-12-04 05:45:10 -08:00
var testIsSmallInt = function(op) {
Opcode.isSmallIntOp(op).should.equal(true);
2014-11-28 09:54:19 -08:00
};
for (var i = 0; i < smallints.length; i++) {
var op = smallints[i];
2014-12-04 05:45:10 -08:00
it('should work for small int ' + op, testIsSmallInt.bind(null, op));
2014-11-28 09:54:19 -08:00
}
it('should work for non-small ints', function() {
Opcode.isSmallIntOp(Opcode('OP_RETURN')).should.equal(false);
Opcode.isSmallIntOp(Opcode('OP_CHECKSIG')).should.equal(false);
Opcode.isSmallIntOp(Opcode('OP_IF')).should.equal(false);
Opcode.isSmallIntOp(Opcode('OP_NOP')).should.equal(false);
});
});
2015-02-12 07:44:28 -08:00
describe('#inspect', function() {
it('should output opcode by name, hex, and decimal', function() {
Opcode.fromString('OP_NOP').inspect().should.equal('<Opcode: OP_NOP, hex: 61, decimal: 97>');
});
});
2014-08-29 19:24:51 -07:00
});