2017-10-24 14:24:07 +00:00
|
|
|
package integration_test
|
|
|
|
|
|
|
|
import (
|
2018-02-02 21:53:16 +00:00
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
2018-02-13 16:31:57 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore/inmemory"
|
2018-01-06 20:31:53 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/geth"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/history"
|
2018-02-13 16:31:57 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/test_config"
|
2017-10-24 14:24:07 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var _ = Describe("Reading from the Geth blockchain", func() {
|
|
|
|
|
2018-01-05 17:55:00 +00:00
|
|
|
var blockchain *geth.Blockchain
|
2018-02-12 16:54:05 +00:00
|
|
|
var inMemory *inmemory.InMemory
|
2017-11-03 13:54:32 +00:00
|
|
|
|
|
|
|
BeforeEach(func() {
|
2018-02-13 16:31:57 +00:00
|
|
|
blockchain = geth.NewBlockchain(test_config.TestClientConfig.IPCPath)
|
2018-02-12 16:54:05 +00:00
|
|
|
inMemory = inmemory.NewInMemory()
|
2017-11-03 13:54:32 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
It("reads two blocks", func(done Done) {
|
2018-02-12 16:54:05 +00:00
|
|
|
blocks := &inmemory.BlockRepository{InMemory: inMemory}
|
|
|
|
validator := history.NewBlockValidator(blockchain, blocks, 2)
|
2018-01-05 17:55:00 +00:00
|
|
|
validator.ValidateBlocks()
|
2018-02-12 16:54:05 +00:00
|
|
|
Expect(blocks.BlockCount()).To(Equal(2))
|
2017-10-24 14:24:07 +00:00
|
|
|
close(done)
|
2017-12-04 18:54:33 +00:00
|
|
|
}, 15)
|
2017-10-24 14:24:07 +00:00
|
|
|
|
2017-11-06 20:36:12 +00:00
|
|
|
It("retrieves the genesis block and first block", func(done Done) {
|
|
|
|
genesisBlock := blockchain.GetBlockByNumber(int64(0))
|
|
|
|
firstBlock := blockchain.GetBlockByNumber(int64(1))
|
2017-12-20 20:06:22 +00:00
|
|
|
lastBlockNumber := blockchain.LastBlock()
|
2017-11-06 20:36:12 +00:00
|
|
|
|
|
|
|
Expect(genesisBlock.Number).To(Equal(int64(0)))
|
|
|
|
Expect(firstBlock.Number).To(Equal(int64(1)))
|
2017-12-20 20:06:22 +00:00
|
|
|
Expect(lastBlockNumber.Int64()).To(BeNumerically(">", 0))
|
2017-11-06 20:36:12 +00:00
|
|
|
close(done)
|
2017-12-04 18:54:33 +00:00
|
|
|
}, 15)
|
2017-11-06 20:36:12 +00:00
|
|
|
|
2017-12-07 19:32:16 +00:00
|
|
|
It("retrieves the node info", func(done Done) {
|
|
|
|
node := blockchain.Node()
|
|
|
|
devNetworkNodeId := float64(1)
|
|
|
|
|
2018-03-07 21:29:21 +00:00
|
|
|
Expect(node.GenesisBlock).ToNot(BeNil())
|
2018-02-13 16:31:57 +00:00
|
|
|
Expect(node.NetworkID).To(Equal(devNetworkNodeId))
|
|
|
|
Expect(len(node.ID)).To(Equal(128))
|
2018-01-10 21:54:36 +00:00
|
|
|
Expect(node.ClientName).To(ContainSubstring("Geth"))
|
2017-12-07 19:32:16 +00:00
|
|
|
|
|
|
|
close(done)
|
|
|
|
}, 15)
|
|
|
|
|
2017-10-24 14:24:07 +00:00
|
|
|
})
|