bitcoinjs-lib/test/block.spec.ts

158 lines
4.2 KiB
TypeScript
Raw Normal View History

2018-07-23 09:45:01 +02:00
const { describe, it, beforeEach } = require('mocha')
2018-06-25 08:25:12 +02:00
const assert = require('assert')
2018-12-27 09:49:53 +01:00
const Block = require('..').Block
2014-10-16 06:30:57 +02:00
2018-06-25 08:25:12 +02:00
const fixtures = require('./fixtures/block')
2014-10-16 06:30:57 +02:00
describe('Block', () => {
describe('version', () => {
it('should be interpreted as an int32le', () => {
const blockHex = 'ffffffff0000000000000000000000000000000000000000000000000000000000000000414141414141414141414141414141414141414141414141414141414141414101000000020000000300000000'
const block = Block.fromHex(blockHex)
assert.strictEqual(-1, block.version)
assert.strictEqual(1, block.timestamp)
})
})
describe('calculateTarget', () => {
fixtures.targets.forEach(f => {
it('returns ' + f.expected + ' for 0x' + f.bits, () => {
const bits = parseInt(f.bits, 16)
assert.strictEqual(Block.calculateTarget(bits).toString('hex'), f.expected)
})
})
})
describe('fromBuffer/fromHex', () => {
fixtures.valid.forEach(f => {
it('imports ' + f.description, () => {
const block = Block.fromHex(f.hex)
2014-10-16 06:30:57 +02:00
2015-05-07 03:29:20 +02:00
assert.strictEqual(block.version, f.version)
assert.strictEqual(block.prevHash.toString('hex'), f.prevHash)
assert.strictEqual(block.merkleRoot.toString('hex'), f.merkleRoot)
2018-12-27 10:26:08 +01:00
if (block.witnessCommit) {
assert.strictEqual(block.witnessCommit.toString('hex'), f.witnessCommit)
}
2015-05-07 03:29:20 +02:00
assert.strictEqual(block.timestamp, f.timestamp)
assert.strictEqual(block.bits, f.bits)
assert.strictEqual(block.nonce, f.nonce)
assert.strictEqual(!block.transactions, f.hex.length === 160)
2014-10-16 06:30:57 +02:00
})
})
fixtures.invalid.forEach(f => {
it('throws on ' + f.exception, () => {
assert.throws(() => {
2014-10-16 06:30:57 +02:00
Block.fromHex(f.hex)
}, new RegExp(f.exception))
})
})
})
describe('toBuffer/toHex', () => {
fixtures.valid.forEach(f => {
let block
2014-10-16 06:30:57 +02:00
beforeEach(() => {
2014-10-16 06:30:57 +02:00
block = Block.fromHex(f.hex)
})
it('exports ' + f.description, () => {
2017-04-18 03:56:35 +02:00
assert.strictEqual(block.toHex(true), f.hex.slice(0, 160))
2015-05-07 03:29:20 +02:00
assert.strictEqual(block.toHex(), f.hex)
2014-10-16 06:30:57 +02:00
})
})
})
describe('getHash/getId', () => {
fixtures.valid.forEach(f => {
let block
2014-10-16 06:30:57 +02:00
beforeEach(() => {
2014-10-16 06:30:57 +02:00
block = Block.fromHex(f.hex)
})
it('returns ' + f.id + ' for ' + f.description, () => {
2015-05-07 03:29:20 +02:00
assert.strictEqual(block.getHash().toString('hex'), f.hash)
assert.strictEqual(block.getId(), f.id)
2014-10-16 06:30:57 +02:00
})
})
})
2014-10-29 02:12:12 +01:00
describe('getUTCDate', () => {
fixtures.valid.forEach(f => {
let block
2014-10-29 02:12:12 +01:00
beforeEach(() => {
2014-10-29 02:12:12 +01:00
block = Block.fromHex(f.hex)
})
it('returns UTC date of ' + f.id, () => {
const utcDate = block.getUTCDate().getTime()
2014-10-29 02:12:12 +01:00
2015-05-07 03:29:20 +02:00
assert.strictEqual(utcDate, f.timestamp * 1e3)
2014-10-29 02:12:12 +01:00
})
})
})
2015-12-08 08:51:35 +01:00
describe('calculateMerkleRoot', () => {
it('should throw on zero-length transaction array', () => {
assert.throws(() => {
2016-05-04 16:42:05 +02:00
Block.calculateMerkleRoot([])
}, /Cannot compute merkle root for zero transactions/)
})
fixtures.valid.forEach(f => {
2016-05-04 16:42:05 +02:00
if (f.hex.length === 160) return
let block
2016-05-04 16:42:05 +02:00
beforeEach(() => {
2016-05-04 16:42:05 +02:00
block = Block.fromHex(f.hex)
})
it('returns ' + f.merkleRoot + ' for ' + f.id, () => {
2016-05-04 16:42:05 +02:00
assert.strictEqual(Block.calculateMerkleRoot(block.transactions).toString('hex'), f.merkleRoot)
})
2018-12-27 10:26:08 +01:00
if (f.witnessCommit) {
it('returns witness commit ' + f.witnessCommit + ' for ' + f.id, () => {
2018-12-27 10:26:08 +01:00
assert.strictEqual(Block.calculateMerkleRoot(block.transactions, true).toString('hex'), f.witnessCommit)
})
}
2016-05-04 16:42:05 +02:00
})
})
describe('checkTxRoots', () => {
fixtures.valid.forEach(f => {
2016-05-04 16:42:05 +02:00
if (f.hex.length === 160) return
let block
2016-05-04 16:42:05 +02:00
beforeEach(() => {
2016-05-04 16:42:05 +02:00
block = Block.fromHex(f.hex)
})
it('returns ' + f.valid + ' for ' + f.id, () => {
assert.strictEqual(block.checkTxRoots(), true)
2016-05-04 16:42:05 +02:00
})
})
})
describe('checkProofOfWork', () => {
fixtures.valid.forEach(f => {
let block
2015-12-08 08:51:35 +01:00
beforeEach(() => {
2015-12-08 08:51:35 +01:00
block = Block.fromHex(f.hex)
})
it('returns ' + f.valid + ' for ' + f.id, () => {
assert.strictEqual(block.checkProofOfWork(), f.valid)
2015-12-08 08:51:35 +01:00
})
})
})
2014-10-16 06:30:57 +02:00
})