2016-11-09 01:01:56 +00:00
|
|
|
// Copyright 2016 The go-ethereum Authors
|
|
|
|
// This file is part of the go-ethereum library.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// The go-ethereum library 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 Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-10-14 03:51:29 +00:00
|
|
|
package les
|
|
|
|
|
|
|
|
import (
|
2017-03-22 17:20:33 +00:00
|
|
|
"context"
|
2016-10-14 03:51:29 +00:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2018-05-07 11:35:06 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/rawdb"
|
2016-10-14 03:51:29 +00:00
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
|
|
|
"github.com/ethereum/go-ethereum/light"
|
|
|
|
)
|
|
|
|
|
all: on-chain oracle checkpoint syncing (#19543)
* all: implement simple checkpoint syncing
cmd, les, node: remove callback mechanism
cmd, node: remove callback definition
les: simplify the registrar
les: expose checkpoint rpc services in the light client
les, light: don't store untrusted receipt
cmd, contracts, les: discard stale checkpoint
cmd, contracts/registrar: loose restriction of registeration
cmd, contracts: add replay-protection
all: off-chain multi-signature contract
params: deploy checkpoint contract for rinkeby
cmd/registrar: add raw signing mode for registrar
cmd/registrar, contracts/registrar, les: fixed messages
* cmd/registrar, contracts/registrar: fix lints
* accounts/abi/bind, les: address comments
* cmd, contracts, les, light, params: minor checkpoint sync cleanups
* cmd, eth, les, light: move checkpoint config to config file
* cmd, eth, les, params: address comments
* eth, les, params: address comments
* cmd: polish up the checkpoint admin CLI
* cmd, contracts, params: deploy new version contract
* cmd/checkpoint-admin: add another flag for clef mode signing
* cmd, contracts, les: rename and regen checkpoint oracle with abigen
2019-06-28 07:34:02 +00:00
|
|
|
var testBankSecureTrieKey = secAddr(bankAddr)
|
2016-10-14 03:51:29 +00:00
|
|
|
|
|
|
|
func secAddr(addr common.Address) []byte {
|
|
|
|
return crypto.Keccak256(addr[:])
|
|
|
|
}
|
|
|
|
|
|
|
|
type accessTestFn func(db ethdb.Database, bhash common.Hash, number uint64) light.OdrRequest
|
|
|
|
|
2017-10-24 13:19:09 +00:00
|
|
|
func TestBlockAccessLes2(t *testing.T) { testAccess(t, 2, tfBlockAccess) }
|
2019-08-21 09:29:34 +00:00
|
|
|
func TestBlockAccessLes3(t *testing.T) { testAccess(t, 3, tfBlockAccess) }
|
2021-02-12 19:48:18 +00:00
|
|
|
func TestBlockAccessLes4(t *testing.T) { testAccess(t, 4, tfBlockAccess) }
|
2017-10-24 13:19:09 +00:00
|
|
|
|
2016-10-14 03:51:29 +00:00
|
|
|
func tfBlockAccess(db ethdb.Database, bhash common.Hash, number uint64) light.OdrRequest {
|
|
|
|
return &light.BlockRequest{Hash: bhash, Number: number}
|
|
|
|
}
|
|
|
|
|
2017-10-24 13:19:09 +00:00
|
|
|
func TestReceiptsAccessLes2(t *testing.T) { testAccess(t, 2, tfReceiptsAccess) }
|
2019-08-21 09:29:34 +00:00
|
|
|
func TestReceiptsAccessLes3(t *testing.T) { testAccess(t, 3, tfReceiptsAccess) }
|
2021-02-12 19:48:18 +00:00
|
|
|
func TestReceiptsAccessLes4(t *testing.T) { testAccess(t, 4, tfReceiptsAccess) }
|
2017-10-24 13:19:09 +00:00
|
|
|
|
2016-10-14 03:51:29 +00:00
|
|
|
func tfReceiptsAccess(db ethdb.Database, bhash common.Hash, number uint64) light.OdrRequest {
|
|
|
|
return &light.ReceiptsRequest{Hash: bhash, Number: number}
|
|
|
|
}
|
|
|
|
|
2017-10-24 13:19:09 +00:00
|
|
|
func TestTrieEntryAccessLes2(t *testing.T) { testAccess(t, 2, tfTrieEntryAccess) }
|
2019-08-21 09:29:34 +00:00
|
|
|
func TestTrieEntryAccessLes3(t *testing.T) { testAccess(t, 3, tfTrieEntryAccess) }
|
2021-02-12 19:48:18 +00:00
|
|
|
func TestTrieEntryAccessLes4(t *testing.T) { testAccess(t, 4, tfTrieEntryAccess) }
|
2017-10-24 13:19:09 +00:00
|
|
|
|
2016-10-14 03:51:29 +00:00
|
|
|
func tfTrieEntryAccess(db ethdb.Database, bhash common.Hash, number uint64) light.OdrRequest {
|
2018-05-07 11:35:06 +00:00
|
|
|
if number := rawdb.ReadHeaderNumber(db, bhash); number != nil {
|
|
|
|
return &light.TrieRequest{Id: light.StateTrieID(rawdb.ReadHeader(db, bhash, *number)), Key: testBankSecureTrieKey}
|
|
|
|
}
|
|
|
|
return nil
|
2016-10-14 03:51:29 +00:00
|
|
|
}
|
|
|
|
|
2017-10-24 13:19:09 +00:00
|
|
|
func TestCodeAccessLes2(t *testing.T) { testAccess(t, 2, tfCodeAccess) }
|
2019-08-21 09:29:34 +00:00
|
|
|
func TestCodeAccessLes3(t *testing.T) { testAccess(t, 3, tfCodeAccess) }
|
2021-02-12 19:48:18 +00:00
|
|
|
func TestCodeAccessLes4(t *testing.T) { testAccess(t, 4, tfCodeAccess) }
|
2017-10-24 13:19:09 +00:00
|
|
|
|
2018-05-07 11:35:06 +00:00
|
|
|
func tfCodeAccess(db ethdb.Database, bhash common.Hash, num uint64) light.OdrRequest {
|
|
|
|
number := rawdb.ReadHeaderNumber(db, bhash)
|
|
|
|
if number != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
header := rawdb.ReadHeader(db, bhash, *number)
|
2016-11-09 00:20:49 +00:00
|
|
|
if header.Number.Uint64() < testContractDeployed {
|
2016-10-14 03:51:29 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
sti := light.StateTrieID(header)
|
2017-06-27 13:57:06 +00:00
|
|
|
ci := light.StorageTrieID(sti, crypto.Keccak256Hash(testContractAddr[:]), common.Hash{})
|
2016-10-14 03:51:29 +00:00
|
|
|
return &light.CodeRequest{Id: ci, Hash: crypto.Keccak256Hash(testContractCodeDeployed)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func testAccess(t *testing.T, protocol int, fn accessTestFn) {
|
|
|
|
// Assemble the test environment
|
2020-07-13 09:02:54 +00:00
|
|
|
server, client, tearDown := newClientServerEnv(t, 4, protocol, nil, nil, 0, false, true, true)
|
2018-08-28 07:08:16 +00:00
|
|
|
defer tearDown()
|
2016-10-14 03:51:29 +00:00
|
|
|
|
2019-11-02 12:02:35 +00:00
|
|
|
// Ensure the client has synced all necessary data.
|
|
|
|
clientHead := client.handler.backend.blockchain.CurrentHeader()
|
|
|
|
if clientHead.Number.Uint64() != 4 {
|
|
|
|
t.Fatalf("Failed to sync the chain with server, head: %v", clientHead.Number.Uint64())
|
|
|
|
}
|
|
|
|
|
2016-10-14 03:51:29 +00:00
|
|
|
test := func(expFail uint64) {
|
2019-08-21 09:29:34 +00:00
|
|
|
for i := uint64(0); i <= server.handler.blockchain.CurrentHeader().Number.Uint64(); i++ {
|
2018-08-28 07:08:16 +00:00
|
|
|
bhash := rawdb.ReadCanonicalHash(server.db, i)
|
|
|
|
if req := fn(client.db, bhash, i); req != nil {
|
2017-03-22 17:20:33 +00:00
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 200*time.Millisecond)
|
2019-08-21 09:29:34 +00:00
|
|
|
err := client.handler.backend.odr.Retrieve(ctx, req)
|
|
|
|
cancel()
|
|
|
|
|
2016-10-14 03:51:29 +00:00
|
|
|
got := err == nil
|
|
|
|
exp := i < expFail
|
|
|
|
if exp && !got {
|
|
|
|
t.Errorf("object retrieval failed")
|
|
|
|
}
|
|
|
|
if !exp && got {
|
|
|
|
t.Errorf("unexpected object retrieval success")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
test(5)
|
|
|
|
}
|