commit
ac6d1918e2
@ -25,6 +25,14 @@ var (
|
|||||||
testCtx = context.Background()
|
testCtx = context.Background()
|
||||||
|
|
||||||
// Fixture data
|
// Fixture data
|
||||||
|
// block one: contract account and slot are created
|
||||||
|
// block two: slot is emptied
|
||||||
|
// block three: slot has a new value added
|
||||||
|
// block four: non-canonical block with non-canonical slot value is added to the database
|
||||||
|
// block five: entire contract is destructed; another non-canonical block is created but it doesn't include an update for our slot
|
||||||
|
// but it links back to the other non-canonical header (this is to test the ability to resolve canonicity by comparing how many
|
||||||
|
// children reference back to a header)
|
||||||
|
// block six: canonical block only, no relevant state changes (check that we still return emptied result at heights where it wasn't emptied)
|
||||||
BlockNumber = big.NewInt(1337)
|
BlockNumber = big.NewInt(1337)
|
||||||
Header = types.Header{Number: BlockNumber}
|
Header = types.Header{Number: BlockNumber}
|
||||||
BlockHash = Header.Hash()
|
BlockHash = Header.Hash()
|
||||||
@ -36,8 +44,13 @@ var (
|
|||||||
BlockNumber4 = BlockNumber.Uint64() + 3
|
BlockNumber4 = BlockNumber.Uint64() + 3
|
||||||
BlockHash5 = crypto.Keccak256Hash([]byte("I"))
|
BlockHash5 = crypto.Keccak256Hash([]byte("I"))
|
||||||
BlockNumber5 = BlockNumber.Uint64() + 4
|
BlockNumber5 = BlockNumber.Uint64() + 4
|
||||||
|
BlockHash6 = crypto.Keccak256Hash([]byte("am"))
|
||||||
|
BlockNumber6 = BlockNumber.Uint64() + 5
|
||||||
BlockParentHash = common.HexToHash("0123456701234567012345670123456701234567012345670123456701234567")
|
BlockParentHash = common.HexToHash("0123456701234567012345670123456701234567012345670123456701234567")
|
||||||
|
|
||||||
|
NonCanonicalHash4 = crypto.Keccak256Hash([]byte("I am a random non canonical hash"))
|
||||||
|
NonCanonicalHash5 = crypto.Keccak256Hash([]byte("I am also a random non canonical hash"))
|
||||||
|
|
||||||
AccountPK, _ = crypto.HexToECDSA("8a1f9a8f95be41cd7ccb6168179afb4504aefe388d1e14474d32c45c72ce7b7a")
|
AccountPK, _ = crypto.HexToECDSA("8a1f9a8f95be41cd7ccb6168179afb4504aefe388d1e14474d32c45c72ce7b7a")
|
||||||
AccountAddress = crypto.PubkeyToAddress(AccountPK.PublicKey) //0x703c4b2bD70c169f5717101CaeE543299Fc946C7
|
AccountAddress = crypto.PubkeyToAddress(AccountPK.PublicKey) //0x703c4b2bD70c169f5717101CaeE543299Fc946C7
|
||||||
AccountLeafKey = crypto.Keccak256Hash(AccountAddress.Bytes())
|
AccountLeafKey = crypto.Keccak256Hash(AccountAddress.Bytes())
|
||||||
@ -57,9 +70,6 @@ var (
|
|||||||
StoragePartialPath = []byte{0, 1, 0, 2, 0, 4}
|
StoragePartialPath = []byte{0, 1, 0, 2, 0, 4}
|
||||||
|
|
||||||
// Encoded data
|
// Encoded data
|
||||||
headerRLP, _ = rlp.EncodeToBytes(&Header)
|
|
||||||
HeaderCID, _ = ipld.RawdataToCid(ipld.MEthStateTrie, headerRLP, multihash.KECCAK_256)
|
|
||||||
|
|
||||||
accountRLP, _ = rlp.EncodeToBytes(&Account)
|
accountRLP, _ = rlp.EncodeToBytes(&Account)
|
||||||
accountAndLeafRLP, _ = rlp.EncodeToBytes(&[]interface{}{AccountLeafKey, accountRLP})
|
accountAndLeafRLP, _ = rlp.EncodeToBytes(&[]interface{}{AccountLeafKey, accountRLP})
|
||||||
AccountCID, _ = ipld.RawdataToCid(ipld.MEthStateTrie, accountAndLeafRLP, multihash.KECCAK_256)
|
AccountCID, _ = ipld.RawdataToCid(ipld.MEthStateTrie, accountAndLeafRLP, multihash.KECCAK_256)
|
||||||
@ -67,6 +77,7 @@ var (
|
|||||||
|
|
||||||
StoredValueRLP, _ = rlp.EncodeToBytes(StoredValue)
|
StoredValueRLP, _ = rlp.EncodeToBytes(StoredValue)
|
||||||
StoredValueRLP2, _ = rlp.EncodeToBytes("something")
|
StoredValueRLP2, _ = rlp.EncodeToBytes("something")
|
||||||
|
NonCanonStoredValueRLP, _ = rlp.EncodeToBytes("something else")
|
||||||
StorageRLP, _ = rlp.EncodeToBytes(&[]interface{}{StoragePartialPath, StoredValueRLP})
|
StorageRLP, _ = rlp.EncodeToBytes(&[]interface{}{StoragePartialPath, StoredValueRLP})
|
||||||
StorageCID, _ = ipld.RawdataToCid(ipld.MEthStorageTrie, StorageRLP, multihash.KECCAK_256)
|
StorageCID, _ = ipld.RawdataToCid(ipld.MEthStorageTrie, StorageRLP, multihash.KECCAK_256)
|
||||||
|
|
||||||
@ -97,12 +108,14 @@ func TestSuite(t *testing.T) {
|
|||||||
}
|
}
|
||||||
require.NoError(t, tx.Commit(testCtx))
|
require.NoError(t, tx.Commit(testCtx))
|
||||||
})
|
})
|
||||||
|
require.NoError(t, insertHeaderCID(pool, BlockHash.String(), BlockParentHash.String(), BlockNumber.Uint64()))
|
||||||
require.NoError(t, insertHeaderCID(pool, BlockHash.String(), BlockNumber.Uint64()))
|
require.NoError(t, insertHeaderCID(pool, BlockHash2.String(), BlockHash.String(), BlockNumber2))
|
||||||
require.NoError(t, insertHeaderCID(pool, BlockHash2.String(), BlockNumber2))
|
require.NoError(t, insertHeaderCID(pool, BlockHash3.String(), BlockHash2.String(), BlockNumber3))
|
||||||
require.NoError(t, insertHeaderCID(pool, BlockHash3.String(), BlockNumber3))
|
require.NoError(t, insertHeaderCID(pool, BlockHash4.String(), BlockHash3.String(), BlockNumber4))
|
||||||
require.NoError(t, insertHeaderCID(pool, BlockHash4.String(), BlockNumber4))
|
require.NoError(t, insertHeaderCID(pool, NonCanonicalHash4.String(), BlockHash3.String(), BlockNumber4))
|
||||||
require.NoError(t, insertHeaderCID(pool, BlockHash5.String(), BlockNumber5))
|
require.NoError(t, insertHeaderCID(pool, BlockHash5.String(), BlockHash4.String(), BlockNumber5))
|
||||||
|
require.NoError(t, insertHeaderCID(pool, NonCanonicalHash5.String(), NonCanonicalHash4.String(), BlockNumber5))
|
||||||
|
require.NoError(t, insertHeaderCID(pool, BlockHash6.String(), BlockHash5.String(), BlockNumber6))
|
||||||
require.NoError(t, insertStateCID(pool, stateModel{
|
require.NoError(t, insertStateCID(pool, stateModel{
|
||||||
BlockNumber: BlockNumber.Uint64(),
|
BlockNumber: BlockNumber.Uint64(),
|
||||||
BlockHash: BlockHash.String(),
|
BlockHash: BlockHash.String(),
|
||||||
@ -115,6 +128,18 @@ func TestSuite(t *testing.T) {
|
|||||||
StorageRoot: Account.Root.String(),
|
StorageRoot: Account.Root.String(),
|
||||||
Removed: false,
|
Removed: false,
|
||||||
}))
|
}))
|
||||||
|
require.NoError(t, insertStateCID(pool, stateModel{
|
||||||
|
BlockNumber: BlockNumber4,
|
||||||
|
BlockHash: NonCanonicalHash4.String(),
|
||||||
|
LeafKey: AccountLeafKey.String(),
|
||||||
|
CID: AccountCID.String(),
|
||||||
|
Diff: true,
|
||||||
|
Balance: big.NewInt(123).Uint64(),
|
||||||
|
Nonce: Account.Nonce,
|
||||||
|
CodeHash: AccountCodeHash.String(),
|
||||||
|
StorageRoot: Account.Root.String(),
|
||||||
|
Removed: false,
|
||||||
|
}))
|
||||||
require.NoError(t, insertStateCID(pool, stateModel{
|
require.NoError(t, insertStateCID(pool, stateModel{
|
||||||
BlockNumber: BlockNumber5,
|
BlockNumber: BlockNumber5,
|
||||||
BlockHash: BlockHash5.String(),
|
BlockHash: BlockHash5.String(),
|
||||||
@ -153,6 +178,16 @@ func TestSuite(t *testing.T) {
|
|||||||
Value: StoredValueRLP2,
|
Value: StoredValueRLP2,
|
||||||
Removed: false,
|
Removed: false,
|
||||||
}))
|
}))
|
||||||
|
require.NoError(t, insertStorageCID(pool, storageModel{
|
||||||
|
BlockNumber: BlockNumber4,
|
||||||
|
BlockHash: NonCanonicalHash4.String(),
|
||||||
|
LeafKey: AccountLeafKey.String(),
|
||||||
|
StorageLeafKey: StorageLeafKey.String(),
|
||||||
|
StorageCID: StorageCID.String(),
|
||||||
|
Diff: true,
|
||||||
|
Value: NonCanonStoredValueRLP,
|
||||||
|
Removed: false,
|
||||||
|
}))
|
||||||
require.NoError(t, insertContractCode(pool))
|
require.NoError(t, insertContractCode(pool))
|
||||||
|
|
||||||
db, err := statedb.NewStateDatabaseWithPool(pool)
|
db, err := statedb.NewStateDatabaseWithPool(pool)
|
||||||
@ -179,6 +214,7 @@ func TestSuite(t *testing.T) {
|
|||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
require.Equal(t, &Account, acct3)
|
require.Equal(t, &Account, acct3)
|
||||||
|
|
||||||
|
// check that we don't get the non-canonical account
|
||||||
acct4, err := db.StateAccount(AccountLeafKey, BlockHash4)
|
acct4, err := db.StateAccount(AccountLeafKey, BlockHash4)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
require.Equal(t, &Account, acct4)
|
require.Equal(t, &Account, acct4)
|
||||||
@ -187,6 +223,10 @@ func TestSuite(t *testing.T) {
|
|||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
require.Nil(t, acct5)
|
require.Nil(t, acct5)
|
||||||
|
|
||||||
|
acct6, err := db.StateAccount(AccountLeafKey, BlockHash6)
|
||||||
|
require.NoError(t, err)
|
||||||
|
require.Nil(t, acct6)
|
||||||
|
|
||||||
val, err := db.StorageValue(AccountLeafKey, StorageLeafKey, BlockHash)
|
val, err := db.StorageValue(AccountLeafKey, StorageLeafKey, BlockHash)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
require.Equal(t, StoredValueRLP, val)
|
require.Equal(t, StoredValueRLP, val)
|
||||||
@ -199,13 +239,19 @@ func TestSuite(t *testing.T) {
|
|||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
require.Equal(t, StoredValueRLP2, val3)
|
require.Equal(t, StoredValueRLP2, val3)
|
||||||
|
|
||||||
|
// this checks that we don't get the non-canonical result
|
||||||
val4, err := db.StorageValue(AccountLeafKey, StorageLeafKey, BlockHash4)
|
val4, err := db.StorageValue(AccountLeafKey, StorageLeafKey, BlockHash4)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
require.Equal(t, StoredValueRLP2, val4)
|
require.Equal(t, StoredValueRLP2, val4)
|
||||||
|
|
||||||
|
// this checks that when the entire account was deleted, we return nil result for storage slot
|
||||||
val5, err := db.StorageValue(AccountLeafKey, StorageLeafKey, BlockHash5)
|
val5, err := db.StorageValue(AccountLeafKey, StorageLeafKey, BlockHash5)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
require.Nil(t, val5)
|
require.Nil(t, val5)
|
||||||
|
|
||||||
|
val6, err := db.StorageValue(AccountLeafKey, StorageLeafKey, BlockHash6)
|
||||||
|
require.NoError(t, err)
|
||||||
|
require.Nil(t, val6)
|
||||||
})
|
})
|
||||||
|
|
||||||
t.Run("StateDB", func(t *testing.T) {
|
t.Run("StateDB", func(t *testing.T) {
|
||||||
@ -257,7 +303,11 @@ func TestSuite(t *testing.T) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func insertHeaderCID(db *pgxpool.Pool, blockHash string, blockNumber uint64) error {
|
func insertHeaderCID(db *pgxpool.Pool, blockHash, parentHash string, blockNumber uint64) error {
|
||||||
|
cid, err := util.Keccak256ToCid(ipld.MEthHeader, common.HexToHash(blockHash).Bytes())
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
sql := `INSERT INTO eth.header_cids (
|
sql := `INSERT INTO eth.header_cids (
|
||||||
block_number,
|
block_number,
|
||||||
block_hash,
|
block_hash,
|
||||||
@ -274,11 +324,11 @@ func insertHeaderCID(db *pgxpool.Pool, blockHash string, blockNumber uint64) err
|
|||||||
timestamp,
|
timestamp,
|
||||||
coinbase
|
coinbase
|
||||||
) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14)`
|
) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14)`
|
||||||
_, err := db.Exec(testCtx, sql,
|
_, err = db.Exec(testCtx, sql,
|
||||||
blockNumber,
|
blockNumber,
|
||||||
blockHash,
|
blockHash,
|
||||||
BlockParentHash.String(),
|
parentHash,
|
||||||
HeaderCID.String(),
|
cid.String(),
|
||||||
0, []string{}, 0,
|
0, []string{}, 0,
|
||||||
Header.Root.String(),
|
Header.Root.String(),
|
||||||
Header.TxHash.String(),
|
Header.TxHash.String(),
|
||||||
|
Loading…
Reference in New Issue
Block a user