184 lines
7.0 KiB
Go
184 lines
7.0 KiB
Go
// Copyright 2018 Vulcanize
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package test_data
|
|
|
|
import (
|
|
"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/crypto"
|
|
"github.com/ethereum/go-ethereum/rlp"
|
|
"github.com/ethereum/go-ethereum/statediff"
|
|
"github.com/vulcanize/vulcanizedb/libraries/shared/storage/utils"
|
|
)
|
|
|
|
var (
|
|
BlockNumber = big.NewInt(rand.Int63())
|
|
BlockNumber2 = big.NewInt(0).Add(BlockNumber, big.NewInt(1))
|
|
BlockHash = "0xfa40fbe2d98d98b3363a778d52f2bcd29d6790b9b3f3cab2b167fd12d3550f73"
|
|
BlockHash2 = "0xaa40fbe2d98d98b3363a778d52f2bcd29d6790b9b3f3cab2b167fd12d3550f72"
|
|
CodeHash = common.Hex2Bytes("0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470")
|
|
NewNonceValue = rand.Uint64()
|
|
NewBalanceValue = rand.Int63()
|
|
ContractRoot = common.HexToHash("0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421")
|
|
StoragePath = common.HexToHash("0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470").Bytes()
|
|
StorageKey = common.HexToHash("0000000000000000000000000000000000000000000000000000000000000001").Bytes()
|
|
SmallStorageValue = common.Hex2Bytes("03")
|
|
SmallStorageValueRlp, _ = rlp.EncodeToBytes(SmallStorageValue)
|
|
storageWithSmallValue = []statediff.StorageDiff{{
|
|
LeafKey: StorageKey,
|
|
NodeValue: SmallStorageValueRlp,
|
|
NodeType: statediff.Leaf,
|
|
Path: StoragePath,
|
|
}}
|
|
LargeStorageValue = common.Hex2Bytes("00191b53778c567b14b50ba0000")
|
|
LargeStorageValueRlp, _ = rlp.EncodeToBytes(LargeStorageValue)
|
|
storageWithLargeValue = []statediff.StorageDiff{{
|
|
LeafKey: StorageKey,
|
|
NodeValue: LargeStorageValueRlp,
|
|
Path: StoragePath,
|
|
NodeType: statediff.Leaf,
|
|
}}
|
|
StorageWithBadValue = statediff.StorageDiff{
|
|
LeafKey: StorageKey,
|
|
NodeValue: []byte{0, 1, 2},
|
|
NodeType: statediff.Leaf,
|
|
Path: StoragePath,
|
|
// this storage value will fail to be decoded as an RLP with the following error message:
|
|
// "input contains more than one value"
|
|
}
|
|
contractAddress = common.HexToAddress("0xaE9BEa628c4Ce503DcFD7E305CaB4e29E7476592")
|
|
ContractLeafKey = crypto.Keccak256Hash(contractAddress[:])
|
|
anotherContractAddress = common.HexToAddress("0xaE9BEa628c4Ce503DcFD7E305CaB4e29E7476593")
|
|
AnotherContractLeafKey = crypto.Keccak256Hash(anotherContractAddress[:])
|
|
|
|
testAccount = state.Account{
|
|
Nonce: NewNonceValue,
|
|
Balance: big.NewInt(NewBalanceValue),
|
|
Root: ContractRoot,
|
|
CodeHash: CodeHash,
|
|
}
|
|
valueBytes, _ = rlp.EncodeToBytes(testAccount)
|
|
CreatedAccountDiffs = []statediff.AccountDiff{
|
|
{
|
|
LeafKey: ContractLeafKey.Bytes(),
|
|
NodeValue: valueBytes,
|
|
Storage: storageWithSmallValue,
|
|
},
|
|
}
|
|
|
|
UpdatedAccountDiffs = []statediff.AccountDiff{{
|
|
LeafKey: AnotherContractLeafKey.Bytes(),
|
|
NodeValue: valueBytes,
|
|
Storage: storageWithLargeValue,
|
|
}}
|
|
UpdatedAccountDiffs2 = []statediff.AccountDiff{{
|
|
LeafKey: AnotherContractLeafKey.Bytes(),
|
|
NodeValue: valueBytes,
|
|
Storage: storageWithSmallValue,
|
|
}}
|
|
|
|
DeletedAccountDiffs = []statediff.AccountDiff{{
|
|
LeafKey: AnotherContractLeafKey.Bytes(),
|
|
NodeValue: valueBytes,
|
|
Storage: storageWithSmallValue,
|
|
}}
|
|
|
|
MockStateDiff = statediff.StateDiff{
|
|
BlockNumber: BlockNumber,
|
|
BlockHash: common.HexToHash(BlockHash),
|
|
CreatedAccounts: CreatedAccountDiffs,
|
|
DeletedAccounts: DeletedAccountDiffs,
|
|
UpdatedAccounts: UpdatedAccountDiffs,
|
|
}
|
|
MockStateDiff2 = statediff.StateDiff{
|
|
BlockNumber: BlockNumber2,
|
|
BlockHash: common.HexToHash(BlockHash2),
|
|
CreatedAccounts: nil,
|
|
DeletedAccounts: nil,
|
|
UpdatedAccounts: UpdatedAccountDiffs2,
|
|
}
|
|
MockStateDiffBytes, _ = rlp.EncodeToBytes(MockStateDiff)
|
|
MockStateDiff2Bytes, _ = rlp.EncodeToBytes(MockStateDiff2)
|
|
|
|
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: BlockNumber,
|
|
Root: common.HexToHash("0x0"),
|
|
TxHash: common.HexToHash("0x0"),
|
|
ReceiptHash: common.HexToHash("0x0"),
|
|
}
|
|
MockHeader2 = types.Header{
|
|
Time: 0,
|
|
Number: BlockNumber2,
|
|
Root: common.HexToHash("0x1"),
|
|
TxHash: common.HexToHash("0x1"),
|
|
ReceiptHash: common.HexToHash("0x1"),
|
|
}
|
|
MockBlock = types.NewBlock(&MockHeader, MockTransactions, nil, MockReceipts)
|
|
MockBlock2 = types.NewBlock(&MockHeader2, MockTransactions, nil, MockReceipts)
|
|
MockBlockRlp, _ = rlp.EncodeToBytes(MockBlock)
|
|
MockBlockRlp2, _ = rlp.EncodeToBytes(MockBlock2)
|
|
|
|
MockStatediffPayload = statediff.Payload{
|
|
BlockRlp: MockBlockRlp,
|
|
StateDiffRlp: MockStateDiffBytes,
|
|
}
|
|
MockStatediffPayload2 = statediff.Payload{
|
|
BlockRlp: MockBlockRlp2,
|
|
StateDiffRlp: MockStateDiff2Bytes,
|
|
}
|
|
|
|
CreatedExpectedStorageDiff = utils.StorageDiffInput{
|
|
HashedAddress: common.BytesToHash(ContractLeafKey[:]),
|
|
BlockHash: common.HexToHash(BlockHash),
|
|
BlockHeight: int(BlockNumber.Int64()),
|
|
StorageKey: common.BytesToHash(StorageKey),
|
|
StorageValue: common.BytesToHash(SmallStorageValue),
|
|
}
|
|
UpdatedExpectedStorageDiff = utils.StorageDiffInput{
|
|
HashedAddress: common.BytesToHash(AnotherContractLeafKey[:]),
|
|
BlockHash: common.HexToHash(BlockHash),
|
|
BlockHeight: int(BlockNumber.Int64()),
|
|
StorageKey: common.BytesToHash(StorageKey),
|
|
StorageValue: common.BytesToHash(LargeStorageValue),
|
|
}
|
|
UpdatedExpectedStorageDiff2 = utils.StorageDiffInput{
|
|
HashedAddress: common.BytesToHash(AnotherContractLeafKey[:]),
|
|
BlockHash: common.HexToHash(BlockHash2),
|
|
BlockHeight: int(BlockNumber2.Int64()),
|
|
StorageKey: common.BytesToHash(StorageKey),
|
|
StorageValue: common.BytesToHash(SmallStorageValue),
|
|
}
|
|
DeletedExpectedStorageDiff = utils.StorageDiffInput{
|
|
HashedAddress: common.BytesToHash(AnotherContractLeafKey[:]),
|
|
BlockHash: common.HexToHash(BlockHash),
|
|
BlockHeight: int(BlockNumber.Int64()),
|
|
StorageKey: common.BytesToHash(StorageKey),
|
|
StorageValue: common.BytesToHash(SmallStorageValue),
|
|
}
|
|
)
|