Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

API Tests for runBlockchain #336

Merged
merged 3 commits into from
Sep 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ restore_node_modules: &restore_node_modules
name: Restore node_modules cache
keys:
- v1-node-{{ .Branch }}-{{ checksum "package.json" }}
- v1-node-{{ .Branch }}-
- v1-node-
- v1-node-{{ checksum "package.json" }}
jobs:
install:
<<: *defaults
Expand Down
4 changes: 4 additions & 0 deletions lib/fakeBlockChain.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,9 @@ module.exports = {

delBlock: function (hash, cb) {
cb(null)
},

iterator: function (name, onBlock, cb) {
cb(null)
}
}
5 changes: 3 additions & 2 deletions lib/runBlockchain.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,9 @@ module.exports = function (blockchain, cb) {
}, function (err, results) {
if (err) {
// remove invalid block
console.log('Invalid block error:', err)
blockchain.delBlock(block.header.hash(), cb)
blockchain.delBlock(block.header.hash(), function () {
cb(err)
})
} else {
// set as new head block
headBlock = block
Expand Down
99 changes: 99 additions & 0 deletions tests/api/runBlockchain.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
const tape = require('tape')
const Levelup = require('levelup')
const Memdown = require('memdown')
const { promisify } = require('util')
const Blockchain = require('ethereumjs-blockchain')
const Block = require('ethereumjs-block')
const util = require('ethereumjs-util')
const runBlockchain = require('../../lib/runBlockchain')
const StateManager = require('../../lib/stateManager')

tape('runBlockchain', (t) => {
const blockchainDB = new Levelup('', { db: Memdown })
const blockchain = new Blockchain({ db: blockchainDB })
const vm = { stateManager: new StateManager(), blockchain }

const putGenesisP = promisify(blockchain.putGenesis.bind(blockchain))
const putBlockP = promisify(blockchain.putBlock.bind(blockchain))
const getHeadP = promisify(blockchain.getHead.bind(blockchain))
const runBlockchainP = promisify(runBlockchain.bind(vm))

t.test('should run without a blockchain parameter', async (st) => {
await runBlockchainP()
st.end()
})

t.test('should run without blocks', async (st) => {
await runBlockchainP(blockchain)
st.end()
})

t.test('should run with genesis block', async (st) => {
const genesis = createGenesis()

await putGenesisP(genesis)
st.ok(blockchain.meta.genesis, 'genesis should be set for blockchain')

await runBlockchainP(blockchain)
st.end()
})

t.test('should run with valid and invalid blocks', async (st) => {
// Produce error on the third time runBlock is called
let runBlockInvocations = 0
vm.runBlock = (opts, cb) => {
runBlockInvocations++
if (runBlockInvocations === 3) {
return cb(new Error('test'), {})
}
cb(null, {})
}

const genesis = createGenesis()
await putGenesisP(genesis)

const b1 = createBlock(genesis, 1)
const b2 = createBlock(b1, 2)
const b3 = createBlock(b2, 3)

blockchain.validate = false

await putBlockP(b1)
await putBlockP(b2)
await putBlockP(b3)

let head = await getHeadP()
st.deepEqual(head.hash(), b3.hash(), 'block3 should be the current head')

try {
await runBlockchainP(blockchain)
st.fail('should have returned error')
} catch (e) {
st.equal(e.message, 'test')

head = await getHeadP()
st.deepEqual(head.hash(), b2.hash(), 'should have removed invalid block from head')

st.end()
}
})
})

function createGenesis () {
const genesis = new Block()
genesis.setGenesisParams()
return genesis
}

function createBlock (parent = null, n = 0) {
if (parent === null) {
return createGenesis()
}

const b = new Block()
b.header.number = util.toBuffer(n)
b.header.parentHash = parent.hash()
b.header.difficulty = '0xfffffff'

return b
}