feat: create b58 string on creation and throw on id mutation

This commit is contained in:
Friedel Ziegelmayer
2016-12-18 09:02:37 +01:00
parent bebb0a7eae
commit 78d96d0b14
2 changed files with 16 additions and 5 deletions

View File

@ -29,6 +29,17 @@ describe('PeerId', () => {
})
})
it('throws on changing the id', (done) => {
PeerId.create((err, id) => {
expect(err).to.not.exist
expect(id.toB58String().length).to.equal(46)
expect(() => {
id.id = new Buffer('hello')
}).to.throw(/immutable/)
done()
})
})
it('recreate an Id from Hex string', () => {
const id = PeerId.createFromHexString(testIdHex)
expect(testIdBytes).to.deep.equal(id.id)