2018-07-17 21:23:07 +00:00
|
|
|
package history_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/fakes"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/history"
|
2018-07-20 16:37:46 +00:00
|
|
|
"math/big"
|
2018-07-17 21:23:07 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var _ = Describe("Blocks validator", func() {
|
|
|
|
|
|
|
|
It("calls create or update for all blocks within the window", func() {
|
2018-07-20 16:37:46 +00:00
|
|
|
blockChain := fakes.NewMockBlockChain()
|
|
|
|
blockChain.SetLastBlock(big.NewInt(7))
|
|
|
|
blocksRepository := fakes.NewMockBlockRepository()
|
|
|
|
validator := history.NewBlockValidator(blockChain, blocksRepository, 2)
|
2018-07-17 21:23:07 +00:00
|
|
|
|
|
|
|
window := validator.ValidateBlocks()
|
|
|
|
|
|
|
|
Expect(window).To(Equal(history.ValidationWindow{LowerBound: 5, UpperBound: 7}))
|
2018-07-20 16:37:46 +00:00
|
|
|
blocksRepository.AssertCreateOrUpdateBlockCallCountEquals(3)
|
2018-07-17 21:23:07 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
It("returns the number of largest block", func() {
|
2018-07-20 16:37:46 +00:00
|
|
|
blockChain := fakes.NewMockBlockChain()
|
|
|
|
blockChain.SetLastBlock(big.NewInt(3))
|
|
|
|
maxBlockNumber := blockChain.LastBlock()
|
2018-07-17 21:23:07 +00:00
|
|
|
|
|
|
|
Expect(maxBlockNumber.Int64()).To(Equal(int64(3)))
|
|
|
|
})
|
|
|
|
})
|