github.com/halybang/go-ethereum@v1.0.5-0.20180325041310-3b262bc1367c/light/odr_test.go (about) 1 // Copyright 2016 The go-ethereum Authors 2 // This file is part of the go-ethereum library. 3 // 4 // The go-ethereum library is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU Lesser General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // The go-ethereum library is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU Lesser General Public License for more details. 13 // 14 // You should have received a copy of the GNU Lesser General Public License 15 // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. 16 17 package light 18 19 import ( 20 "bytes" 21 "context" 22 "errors" 23 "math/big" 24 "testing" 25 "time" 26 27 "github.com/wanchain/go-wanchain/common" 28 "github.com/wanchain/go-wanchain/common/math" 29 "github.com/wanchain/go-wanchain/consensus/ethash" 30 "github.com/wanchain/go-wanchain/core" 31 "github.com/wanchain/go-wanchain/core/state" 32 "github.com/wanchain/go-wanchain/core/types" 33 "github.com/wanchain/go-wanchain/core/vm" 34 "github.com/wanchain/go-wanchain/crypto" 35 "github.com/wanchain/go-wanchain/ethdb" 36 "github.com/wanchain/go-wanchain/params" 37 "github.com/wanchain/go-wanchain/rlp" 38 "github.com/wanchain/go-wanchain/trie" 39 ) 40 41 var ( 42 testBankKey, _ = crypto.HexToECDSA("f1572f76b75b40a7da72d6f2ee7fda3d1189c2d28f0a2f096347055abe344d7f") 43 testBankAddress = crypto.PubkeyToAddress(testBankKey.PublicKey) 44 testBankFunds = big.NewInt(100000000) 45 46 acc1Key, _ = crypto.HexToECDSA("8a1f9a8f95be41cd7ccb6168179afb4504aefe388d1e14474d32c45c72ce7b7a") 47 acc2Key, _ = crypto.HexToECDSA("49a7b37aa6f6645917e7b807e9d1c00d4fa71f18343b0d4122a4d2df64dd6fee") 48 acc1Addr = crypto.PubkeyToAddress(acc1Key.PublicKey) 49 acc2Addr = crypto.PubkeyToAddress(acc2Key.PublicKey) 50 51 testContractCode = common.Hex2Bytes("606060405260cc8060106000396000f360606040526000357c01000000000000000000000000000000000000000000000000000000009004806360cd2685146041578063c16431b914606b57603f565b005b6055600480803590602001909190505060a9565b6040518082815260200191505060405180910390f35b60886004808035906020019091908035906020019091905050608a565b005b80600060005083606481101560025790900160005b50819055505b5050565b6000600060005082606481101560025790900160005b5054905060c7565b91905056") 52 testContractAddr common.Address 53 54 bigTxGas = new(big.Int).SetUint64(params.TxGas) 55 ) 56 57 type testOdr struct { 58 OdrBackend 59 sdb, ldb ethdb.Database 60 disable bool 61 } 62 63 func (odr *testOdr) Database() ethdb.Database { 64 return odr.ldb 65 } 66 67 var ErrOdrDisabled = errors.New("ODR disabled") 68 69 func (odr *testOdr) Retrieve(ctx context.Context, req OdrRequest) error { 70 if odr.disable { 71 return ErrOdrDisabled 72 } 73 switch req := req.(type) { 74 case *BlockRequest: 75 req.Rlp = core.GetBodyRLP(odr.sdb, req.Hash, core.GetBlockNumber(odr.sdb, req.Hash)) 76 case *ReceiptsRequest: 77 req.Receipts = core.GetBlockReceipts(odr.sdb, req.Hash, core.GetBlockNumber(odr.sdb, req.Hash)) 78 case *TrieRequest: 79 t, _ := trie.New(req.Id.Root, odr.sdb) 80 req.Proof = t.Prove(req.Key) 81 case *CodeRequest: 82 req.Data, _ = odr.sdb.Get(req.Hash[:]) 83 } 84 req.StoreResult(odr.ldb) 85 return nil 86 } 87 88 type odrTestFn func(ctx context.Context, db ethdb.Database, bc *core.BlockChain, lc *LightChain, bhash common.Hash) ([]byte, error) 89 90 func TestOdrGetBlockLes1(t *testing.T) { testChainOdr(t, 1, odrGetBlock) } 91 92 func odrGetBlock(ctx context.Context, db ethdb.Database, bc *core.BlockChain, lc *LightChain, bhash common.Hash) ([]byte, error) { 93 var block *types.Block 94 if bc != nil { 95 block = bc.GetBlockByHash(bhash) 96 } else { 97 block, _ = lc.GetBlockByHash(ctx, bhash) 98 } 99 if block == nil { 100 return nil, nil 101 } 102 rlp, _ := rlp.EncodeToBytes(block) 103 return rlp, nil 104 } 105 106 func TestOdrGetReceiptsLes1(t *testing.T) { testChainOdr(t, 1, odrGetReceipts) } 107 108 func odrGetReceipts(ctx context.Context, db ethdb.Database, bc *core.BlockChain, lc *LightChain, bhash common.Hash) ([]byte, error) { 109 var receipts types.Receipts 110 if bc != nil { 111 receipts = core.GetBlockReceipts(db, bhash, core.GetBlockNumber(db, bhash)) 112 } else { 113 receipts, _ = GetBlockReceipts(ctx, lc.Odr(), bhash, core.GetBlockNumber(db, bhash)) 114 } 115 if receipts == nil { 116 return nil, nil 117 } 118 rlp, _ := rlp.EncodeToBytes(receipts) 119 return rlp, nil 120 } 121 122 func TestOdrAccountsLes1(t *testing.T) { testChainOdr(t, 1, odrAccounts) } 123 124 func odrAccounts(ctx context.Context, db ethdb.Database, bc *core.BlockChain, lc *LightChain, bhash common.Hash) ([]byte, error) { 125 dummyAddr := common.HexToAddress("1234567812345678123456781234567812345678") 126 acc := []common.Address{testBankAddress, acc1Addr, acc2Addr, dummyAddr} 127 128 var st *state.StateDB 129 if bc == nil { 130 header := lc.GetHeaderByHash(bhash) 131 st = NewState(ctx, header, lc.Odr()) 132 } else { 133 header := bc.GetHeaderByHash(bhash) 134 st, _ = state.New(header.Root, state.NewDatabase(db)) 135 } 136 137 var res []byte 138 for _, addr := range acc { 139 bal := st.GetBalance(addr) 140 rlp, _ := rlp.EncodeToBytes(bal) 141 res = append(res, rlp...) 142 } 143 return res, st.Error() 144 } 145 146 func TestOdrContractCallLes1(t *testing.T) { testChainOdr(t, 1, odrContractCall) } 147 148 type callmsg struct { 149 types.Message 150 } 151 152 func (callmsg) CheckNonce() bool { return false } 153 154 func odrContractCall(ctx context.Context, db ethdb.Database, bc *core.BlockChain, lc *LightChain, bhash common.Hash) ([]byte, error) { 155 data := common.Hex2Bytes("60CD26850000000000000000000000000000000000000000000000000000000000000000") 156 config := params.TestChainConfig 157 158 var res []byte 159 for i := 0; i < 3; i++ { 160 data[35] = byte(i) 161 162 var ( 163 st *state.StateDB 164 header *types.Header 165 chain core.ChainContext 166 ) 167 if bc == nil { 168 chain = lc 169 header = lc.GetHeaderByHash(bhash) 170 st = NewState(ctx, header, lc.Odr()) 171 } else { 172 chain = bc 173 header = bc.GetHeaderByHash(bhash) 174 st, _ = state.New(header.Root, state.NewDatabase(db)) 175 } 176 177 // Perform read-only call. 178 st.SetBalance(testBankAddress, math.MaxBig256) 179 msg := callmsg{types.NewMessage(testBankAddress, &testContractAddr, 0, new(big.Int), big.NewInt(1000000), new(big.Int), data, false)} 180 context := core.NewEVMContext(msg, header, chain, nil) 181 vmenv := vm.NewEVM(context, st, config, vm.Config{}) 182 gp := new(core.GasPool).AddGas(math.MaxBig256) 183 ret, _, _, _ := core.ApplyMessage(vmenv, msg, gp) 184 res = append(res, ret...) 185 if st.Error() != nil { 186 return res, st.Error() 187 } 188 } 189 return res, nil 190 } 191 192 func testChainGen(i int, block *core.BlockGen) { 193 signer := types.HomesteadSigner{} 194 switch i { 195 case 0: 196 // In block 1, the test bank sends account #1 some ether. 197 tx, _ := types.SignTx(types.NewTransaction(block.TxNonce(testBankAddress), acc1Addr, big.NewInt(10000), bigTxGas, nil, nil), signer, testBankKey) 198 block.AddTx(tx) 199 case 1: 200 // In block 2, the test bank sends some more ether to account #1. 201 // acc1Addr passes it on to account #2. 202 // acc1Addr creates a test contract. 203 tx1, _ := types.SignTx(types.NewTransaction(block.TxNonce(testBankAddress), acc1Addr, big.NewInt(1000), bigTxGas, nil, nil), signer, testBankKey) 204 nonce := block.TxNonce(acc1Addr) 205 tx2, _ := types.SignTx(types.NewTransaction(nonce, acc2Addr, big.NewInt(1000), bigTxGas, nil, nil), signer, acc1Key) 206 nonce++ 207 tx3, _ := types.SignTx(types.NewContractCreation(nonce, big.NewInt(0), big.NewInt(1000000), big.NewInt(0), testContractCode), signer, acc1Key) 208 testContractAddr = crypto.CreateAddress(acc1Addr, nonce) 209 block.AddTx(tx1) 210 block.AddTx(tx2) 211 block.AddTx(tx3) 212 case 2: 213 // Block 3 is empty but was mined by account #2. 214 block.SetCoinbase(acc2Addr) 215 block.SetExtra([]byte("yeehaw")) 216 data := common.Hex2Bytes("C16431B900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001") 217 tx, _ := types.SignTx(types.NewTransaction(block.TxNonce(testBankAddress), testContractAddr, big.NewInt(0), big.NewInt(100000), nil, data), signer, testBankKey) 218 block.AddTx(tx) 219 case 3: 220 // Block 4 includes blocks 2 and 3 as uncle headers (with modified extra data). 221 //b2 := block.PrevBlock(1).Header() 222 //b2.Extra = []byte("foo") 223 //block.AddUncle(b2) 224 //b3 := block.PrevBlock(2).Header() 225 //b3.Extra = []byte("foo") 226 //block.AddUncle(b3) 227 data := common.Hex2Bytes("C16431B900000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002") 228 tx, _ := types.SignTx(types.NewTransaction(block.TxNonce(testBankAddress), testContractAddr, big.NewInt(0), big.NewInt(100000), nil, data), signer, testBankKey) 229 block.AddTx(tx) 230 } 231 } 232 233 func testChainOdr(t *testing.T, protocol int, fn odrTestFn) { 234 var ( 235 sdb, _ = ethdb.NewMemDatabase() 236 ldb, _ = ethdb.NewMemDatabase() 237 gspec = core.DefaultPPOWTestingGenesisBlock() 238 genesis = gspec.MustCommit(sdb) 239 ) 240 gspec.MustCommit(ldb) 241 // Assemble the test environment 242 engine := ethash.NewFullFaker(sdb) 243 blockchain, _ := core.NewBlockChain(sdb, params.TestChainConfig, engine, vm.Config{}) 244 chainEnv := core.NewChainEnv(params.TestChainConfig, gspec, engine, blockchain, sdb) 245 246 gchain, _ := chainEnv.GenerateChain(genesis, 4, testChainGen) 247 if _, err := blockchain.InsertChain(gchain); err != nil { 248 t.Fatal(err) 249 } 250 251 odr := &testOdr{sdb: sdb, ldb: ldb} 252 xdb, _ := ethdb.NewMemDatabase() 253 lightchain, err := NewLightChain(odr, params.TestChainConfig, ethash.NewFullFaker(xdb)) 254 if err != nil { 255 t.Fatal(err) 256 } 257 headers := make([]*types.Header, len(gchain)) 258 for i, block := range gchain { 259 headers[i] = block.Header() 260 } 261 if _, err := lightchain.InsertHeaderChain(headers, 1); err != nil { 262 t.Fatal(err) 263 } 264 265 test := func(expFail int) { 266 for i := uint64(0); i <= blockchain.CurrentHeader().Number.Uint64(); i++ { 267 bhash := core.GetCanonicalHash(sdb, i) 268 b1, err := fn(NoOdr, sdb, blockchain, nil, bhash) 269 if err != nil { 270 t.Fatalf("error in full-node test for block %d: %v", i, err) 271 } 272 273 ctx, cancel := context.WithTimeout(context.Background(), 200*time.Millisecond) 274 defer cancel() 275 276 exp := i < uint64(expFail) 277 b2, err := fn(ctx, ldb, nil, lightchain, bhash) 278 if err != nil && exp { 279 t.Errorf("error in ODR test for block %d: %v", i, err) 280 } 281 282 eq := bytes.Equal(b1, b2) 283 if exp && !eq { 284 t.Errorf("ODR test output for block %d doesn't match full node", i) 285 } 286 } 287 } 288 289 // expect retrievals to fail (except genesis block) without a les peer 290 t.Log("checking without ODR") 291 odr.disable = true 292 test(1) 293 294 // expect all retrievals to pass with ODR enabled 295 t.Log("checking with ODR") 296 odr.disable = false 297 test(len(gchain)) 298 299 // still expect all retrievals to pass, now data should be cached locally 300 t.Log("checking without ODR, should be cached") 301 odr.disable = true 302 test(len(gchain)) 303 }