bitcore/test/test.base58check.js

102 lines
2.6 KiB
JavaScript
Raw Normal View History

var should = require('chai').should();
var Base58Check = require('../lib/Base58Check');
var base58 = require('../lib/base58');
2014-08-14 08:32:47 -07:00
describe('Base58check', function() {
var buf = new Buffer([0, 1, 2, 3, 253, 254, 255]);
var enc = "14HV44ipwoaqfg";
it('should make an instance with "new"', function() {
var b58 = new Base58Check();
should.exist(b58);
});
it('should make an instance without "new"', function() {
var b58 = Base58Check();
should.exist(b58);
});
describe('#encode', function() {
it('should encode the buffer accurately', function() {
Base58Check.encode(buf).should.equal(enc);
});
it('should throw an error when the input is not a buffer', function() {
(function() {
Base58Check.encode("string")
}).should.throw('Base58Check: Input must be a buffer');
});
});
describe('#decode', function() {
it('should decode this encoded value correctly', function() {
Base58Check.decode(enc).toString('hex').should.equal(buf.toString('hex'));
});
it('should throw an error when input is not a string', function() {
(function() {
Base58Check.decode(5);
}).should.throw('Base58Check: Input must be a string');
});
it('should throw an error when input is too short', function() {
(function() {
Base58Check.decode(enc.slice(0, 1));
}).should.throw('Base58Check: Input string too short');
});
it('should throw an error when there is a checksum mismatch', function() {
var buf2 = base58.decode(enc);
buf2[0] = buf2[0] + 1;
var enc2 = base58.encode(buf2);
(function() {
Base58Check.decode(enc2);
}).should.throw('Base58Check: Checksum mismatch');
});
});
describe('#fromBuffer', function() {
it('should not fail', function() {
should.exist(Base58Check().fromBuffer(buf));
});
it('should set buffer', function() {
var b58 = Base58Check().fromBuffer(buf);
b58.buf.toString('hex').should.equal(buf.toString('hex'));
});
});
describe('#fromString', function() {
it('should convert this known string to a buffer', function() {
Base58Check().fromString(enc).toBuffer().toString('hex').should.equal(buf.toString('hex'));
});
});
describe('#toBuffer', function() {
it('should return the buffer', function() {
var b58 = Base58Check(buf);
b58.buf.toString('hex').should.equal(buf.toString('hex'));
});
});
describe('#toString', function() {
it('should return the buffer', function() {
var b58 = Base58Check(buf);
b58.toString().should.equal(enc);
});
});
});