2018-07-17 21:23:07 +00:00
|
|
|
package history_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
"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("Header validator", func() {
|
2018-07-20 16:37:46 +00:00
|
|
|
It("attempts to create every header in the validation window", func() {
|
|
|
|
headerRepository := fakes.NewMockHeaderRepository()
|
|
|
|
headerRepository.SetMissingBlockNumbers([]int64{})
|
|
|
|
blockChain := fakes.NewMockBlockChain()
|
|
|
|
blockChain.SetLastBlock(big.NewInt(3))
|
2018-08-14 21:59:41 +00:00
|
|
|
validator := history.NewHeaderValidator(blockChain, headerRepository, 2)
|
2018-07-17 21:23:07 +00:00
|
|
|
|
|
|
|
validator.ValidateHeaders()
|
|
|
|
|
2018-07-20 16:37:46 +00:00
|
|
|
headerRepository.AssertCreateOrUpdateHeaderCallCountAndPassedBlockNumbers(3, []int64{1, 2, 3})
|
2018-07-17 21:23:07 +00:00
|
|
|
})
|
|
|
|
})
|