2019-04-30 17:48:31 +00:00
|
|
|
// VulcanizeDB
|
|
|
|
// Copyright © 2019 Vulcanize
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2019-06-06 17:55:59 +00:00
|
|
|
package helpers
|
2019-04-30 17:48:31 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"math/big"
|
|
|
|
"math/rand"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/ethereum/go-ethereum/core/state"
|
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
|
|
"github.com/ethereum/go-ethereum/rlp"
|
|
|
|
"github.com/ethereum/go-ethereum/statediff"
|
|
|
|
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/ipfs"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Test variables
|
|
|
|
var (
|
2019-05-17 04:08:53 +00:00
|
|
|
BlockNumber = big.NewInt(rand.Int63())
|
2019-04-30 17:48:31 +00:00
|
|
|
BlockHash = "0xfa40fbe2d98d98b3363a778d52f2bcd29d6790b9b3f3cab2b167fd12d3550f73"
|
|
|
|
CodeHash = common.Hex2Bytes("0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470")
|
|
|
|
NewNonceValue = rand.Uint64()
|
|
|
|
NewBalanceValue = rand.Int63()
|
|
|
|
ContractRoot = common.HexToHash("0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421")
|
|
|
|
StoragePath = common.HexToHash("0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470").Bytes()
|
|
|
|
StorageKey = common.HexToHash("0000000000000000000000000000000000000000000000000000000000000001").Bytes()
|
|
|
|
StorageValue = common.Hex2Bytes("0x03")
|
|
|
|
storage = []statediff.StorageDiff{{
|
|
|
|
Key: StorageKey,
|
|
|
|
Value: StorageValue,
|
|
|
|
Path: StoragePath,
|
|
|
|
Proof: [][]byte{},
|
|
|
|
}}
|
|
|
|
emptyStorage = make([]statediff.StorageDiff, 0)
|
|
|
|
address = common.HexToAddress("0xaE9BEa628c4Ce503DcFD7E305CaB4e29E7476592")
|
2019-05-21 19:27:24 +00:00
|
|
|
ContractLeafKey = ipfs.AddressToKey(address)
|
2019-04-30 17:48:31 +00:00
|
|
|
anotherAddress = common.HexToAddress("0xaE9BEa628c4Ce503DcFD7E305CaB4e29E7476593")
|
2019-05-21 19:27:24 +00:00
|
|
|
AnotherContractLeafKey = ipfs.AddressToKey(anotherAddress)
|
2019-04-30 17:48:31 +00:00
|
|
|
testAccount = state.Account{
|
|
|
|
Nonce: NewNonceValue,
|
|
|
|
Balance: big.NewInt(NewBalanceValue),
|
|
|
|
Root: ContractRoot,
|
|
|
|
CodeHash: CodeHash,
|
|
|
|
}
|
|
|
|
valueBytes, _ = rlp.EncodeToBytes(testAccount)
|
2019-05-17 04:08:53 +00:00
|
|
|
CreatedAccountDiffs = []statediff.AccountDiff{
|
|
|
|
{
|
2019-04-30 17:48:31 +00:00
|
|
|
Key: ContractLeafKey.Bytes(),
|
|
|
|
Value: valueBytes,
|
|
|
|
Storage: storage,
|
|
|
|
},
|
2019-05-17 04:08:53 +00:00
|
|
|
{
|
2019-04-30 17:48:31 +00:00
|
|
|
Key: AnotherContractLeafKey.Bytes(),
|
|
|
|
Value: valueBytes,
|
|
|
|
Storage: emptyStorage,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-05-17 04:08:53 +00:00
|
|
|
UpdatedAccountDiffs = []statediff.AccountDiff{{
|
2019-04-30 17:48:31 +00:00
|
|
|
Key: ContractLeafKey.Bytes(),
|
|
|
|
Value: valueBytes,
|
|
|
|
Storage: storage,
|
|
|
|
}}
|
|
|
|
|
2019-05-17 04:08:53 +00:00
|
|
|
DeletedAccountDiffs = []statediff.AccountDiff{{
|
2019-04-30 17:48:31 +00:00
|
|
|
Key: ContractLeafKey.Bytes(),
|
|
|
|
Value: valueBytes,
|
|
|
|
Storage: storage,
|
|
|
|
}}
|
|
|
|
|
|
|
|
MockStateDiff = statediff.StateDiff{
|
|
|
|
BlockNumber: BlockNumber,
|
|
|
|
BlockHash: common.HexToHash(BlockHash),
|
|
|
|
CreatedAccounts: CreatedAccountDiffs,
|
|
|
|
DeletedAccounts: DeletedAccountDiffs,
|
|
|
|
UpdatedAccounts: UpdatedAccountDiffs,
|
|
|
|
}
|
2019-05-17 04:08:53 +00:00
|
|
|
MockStateDiffBytes, _ = rlp.EncodeToBytes(MockStateDiff)
|
2019-04-30 17:48:31 +00:00
|
|
|
|
|
|
|
mockTransaction1 = types.NewTransaction(0, common.HexToAddress("0x0"), big.NewInt(1000), 50, big.NewInt(100), nil)
|
|
|
|
mockTransaction2 = types.NewTransaction(1, common.HexToAddress("0x1"), big.NewInt(2000), 100, big.NewInt(200), nil)
|
|
|
|
MockTransactions = types.Transactions{mockTransaction1, mockTransaction2}
|
|
|
|
|
|
|
|
mockReceipt1 = types.NewReceipt(common.HexToHash("0x0").Bytes(), false, 50)
|
|
|
|
mockReceipt2 = types.NewReceipt(common.HexToHash("0x1").Bytes(), false, 100)
|
|
|
|
MockReceipts = types.Receipts{mockReceipt1, mockReceipt2}
|
|
|
|
|
|
|
|
MockHeader = types.Header{
|
|
|
|
Time: 0,
|
|
|
|
Number: big.NewInt(1),
|
|
|
|
Root: common.HexToHash("0x0"),
|
|
|
|
TxHash: common.HexToHash("0x0"),
|
|
|
|
ReceiptHash: common.HexToHash("0x0"),
|
|
|
|
}
|
|
|
|
MockBlock = types.NewBlock(&MockHeader, MockTransactions, nil, MockReceipts)
|
|
|
|
MockBlockRlp, _ = rlp.EncodeToBytes(MockBlock)
|
|
|
|
|
|
|
|
MockStatediffPayload = statediff.Payload{
|
|
|
|
BlockRlp: MockBlockRlp,
|
2019-05-17 04:08:53 +00:00
|
|
|
StateDiffRlp: MockStateDiffBytes,
|
2019-04-30 17:48:31 +00:00
|
|
|
Err: nil,
|
|
|
|
}
|
|
|
|
|
|
|
|
EmptyStatediffPayload = statediff.Payload{
|
|
|
|
BlockRlp: []byte{},
|
|
|
|
StateDiffRlp: []byte{},
|
|
|
|
Err: nil,
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrStatediffPayload = statediff.Payload{
|
|
|
|
BlockRlp: []byte{},
|
|
|
|
StateDiffRlp: []byte{},
|
|
|
|
Err: errors.New("mock error"),
|
|
|
|
}
|
|
|
|
|
|
|
|
MockIPLDPayload = ipfs.IPLDPayload{}
|
|
|
|
|
|
|
|
MockCIDPayload = ipfs.CIDPayload{
|
|
|
|
BlockNumber: "1",
|
2019-05-17 04:08:53 +00:00
|
|
|
BlockHash: common.HexToHash("0x0"),
|
2019-04-30 17:48:31 +00:00
|
|
|
HeaderCID: "mockHeaderCID",
|
|
|
|
TransactionCIDs: map[common.Hash]*ipfs.TrxMetaData{
|
|
|
|
common.HexToHash("0x0"): {
|
2019-05-21 19:27:24 +00:00
|
|
|
CID: "mockTrxCID1",
|
|
|
|
Dst: "mockTo1",
|
|
|
|
Src: "mockFrom1",
|
2019-04-30 17:48:31 +00:00
|
|
|
},
|
|
|
|
common.HexToHash("0x1"): {
|
2019-05-21 19:27:24 +00:00
|
|
|
CID: "mockTrxCID2",
|
|
|
|
Dst: "mockTo2",
|
|
|
|
Src: "mockFrom2",
|
2019-04-30 17:48:31 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
ReceiptCIDs: map[common.Hash]*ipfs.ReceiptMetaData{
|
|
|
|
common.HexToHash("0x0"): {
|
|
|
|
CID: "mockReceiptCID1",
|
|
|
|
Topic0s: []string{"mockTopic1"},
|
|
|
|
},
|
|
|
|
common.HexToHash("0x1"): {
|
|
|
|
CID: "mockReceiptCID2",
|
|
|
|
Topic0s: []string{"mockTopic1", "mockTopic2"},
|
|
|
|
},
|
|
|
|
},
|
2019-05-17 04:08:53 +00:00
|
|
|
StateNodeCIDs: map[common.Hash]ipfs.StateNodeCID{
|
|
|
|
common.HexToHash("0x0"): {
|
|
|
|
CID: "mockStateCID1",
|
|
|
|
Leaf: true,
|
|
|
|
},
|
|
|
|
common.HexToHash("0x1"): {
|
|
|
|
CID: "mockStateCID2",
|
|
|
|
Leaf: true,
|
|
|
|
},
|
2019-04-30 17:48:31 +00:00
|
|
|
},
|
2019-05-17 04:08:53 +00:00
|
|
|
StorageNodeCIDs: map[common.Hash][]ipfs.StorageNodeCID{
|
2019-04-30 17:48:31 +00:00
|
|
|
common.HexToHash("0x0"): {
|
2019-05-17 04:08:53 +00:00
|
|
|
{
|
|
|
|
CID: "mockStorageCID1",
|
2019-06-06 03:50:12 +00:00
|
|
|
Key: "0x0",
|
2019-05-17 04:08:53 +00:00
|
|
|
Leaf: true,
|
|
|
|
},
|
2019-04-30 17:48:31 +00:00
|
|
|
},
|
|
|
|
common.HexToHash("0x1"): {
|
2019-05-17 04:08:53 +00:00
|
|
|
{
|
|
|
|
CID: "mockStorageCID2",
|
2019-06-06 03:50:12 +00:00
|
|
|
Key: "0x1",
|
2019-05-17 04:08:53 +00:00
|
|
|
Leaf: true,
|
|
|
|
},
|
2019-04-30 17:48:31 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
)
|