2017-12-27 23:51:17 +00:00
|
|
|
package integration
|
|
|
|
|
|
|
|
import (
|
2018-07-18 20:59:40 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethclient"
|
|
|
|
"github.com/ethereum/go-ethereum/rpc"
|
2017-12-27 23:51:17 +00:00
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
2018-07-20 16:37:46 +00:00
|
|
|
|
2018-02-08 16:12:08 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/geth"
|
2018-07-18 20:59:40 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/geth/client"
|
2018-07-20 16:37:46 +00:00
|
|
|
vRpc "github.com/vulcanize/vulcanizedb/pkg/geth/converters/rpc"
|
2018-07-18 20:59:40 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/geth/node"
|
2018-02-13 16:31:57 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/test_config"
|
2017-12-27 23:51:17 +00:00
|
|
|
)
|
|
|
|
|
2017-12-28 16:06:13 +00:00
|
|
|
var _ = Describe("Rewards calculations", func() {
|
2017-12-27 23:51:17 +00:00
|
|
|
|
2017-12-28 16:06:13 +00:00
|
|
|
It("calculates a block reward for a real block", func() {
|
2018-07-20 16:37:46 +00:00
|
|
|
rawRpcClient, err := rpc.Dial(test_config.InfuraClient.IPCPath)
|
2018-07-18 20:59:40 +00:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-07-20 16:37:46 +00:00
|
|
|
rpcClient := client.NewRpcClient(rawRpcClient, test_config.InfuraClient.IPCPath)
|
|
|
|
ethClient := ethclient.NewClient(rawRpcClient)
|
|
|
|
blockChainClient := client.NewEthClient(ethClient)
|
|
|
|
node := node.MakeNode(rpcClient)
|
|
|
|
transactionConverter := vRpc.NewRpcTransactionConverter(ethClient)
|
2018-07-18 20:59:40 +00:00
|
|
|
blockChain := geth.NewBlockChain(blockChainClient, node, transactionConverter)
|
|
|
|
block, err := blockChain.GetBlockByNumber(1071819)
|
2018-03-27 21:06:12 +00:00
|
|
|
Expect(err).ToNot(HaveOccurred())
|
2017-12-28 16:06:13 +00:00
|
|
|
Expect(block.Reward).To(Equal(5.31355))
|
|
|
|
})
|
2017-12-27 23:51:17 +00:00
|
|
|
|
2017-12-28 16:06:13 +00:00
|
|
|
It("calculates an uncle reward for a real block", func() {
|
2018-07-20 16:37:46 +00:00
|
|
|
rawRpcClient, err := rpc.Dial(test_config.InfuraClient.IPCPath)
|
2018-07-18 20:59:40 +00:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-07-20 16:37:46 +00:00
|
|
|
rpcClient := client.NewRpcClient(rawRpcClient, test_config.InfuraClient.IPCPath)
|
|
|
|
ethClient := ethclient.NewClient(rawRpcClient)
|
|
|
|
blockChainClient := client.NewEthClient(ethClient)
|
|
|
|
node := node.MakeNode(rpcClient)
|
|
|
|
transactionConverter := vRpc.NewRpcTransactionConverter(ethClient)
|
2018-07-18 20:59:40 +00:00
|
|
|
blockChain := geth.NewBlockChain(blockChainClient, node, transactionConverter)
|
|
|
|
block, err := blockChain.GetBlockByNumber(1071819)
|
2018-03-27 21:06:12 +00:00
|
|
|
Expect(err).ToNot(HaveOccurred())
|
2017-12-28 16:06:13 +00:00
|
|
|
Expect(block.UnclesReward).To(Equal(6.875))
|
2017-12-27 23:51:17 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
})
|