|
|
@ -1,21 +1,31 @@ |
|
|
|
var should = require('chai').should(); |
|
|
|
var base58check = require('../lib/base58check'); |
|
|
|
var Base58Check = require('../lib/Base58Check'); |
|
|
|
var base58 = require('../lib/base58'); |
|
|
|
|
|
|
|
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); |
|
|
|
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'); |
|
|
|
Base58Check.encode("string") |
|
|
|
}).should.throw('Base58Check: Input must be a buffer'); |
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
@ -23,19 +33,19 @@ describe('Base58check', function() { |
|
|
|
describe('#decode', function() { |
|
|
|
|
|
|
|
it('should decode this encoded value correctly', function() { |
|
|
|
base58check.decode(enc).toString('hex').should.equal(buf.toString('hex')); |
|
|
|
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'); |
|
|
|
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'); |
|
|
|
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() { |
|
|
@ -43,8 +53,47 @@ describe('Base58check', function() { |
|
|
|
buf2[0] = buf2[0] + 1; |
|
|
|
var enc2 = base58.encode(buf2); |
|
|
|
(function() { |
|
|
|
base58check.decode(enc2); |
|
|
|
}).should.throw('base58check: Checksum mismatch'); |
|
|
|
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); |
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|