headerchain_test.go 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. // Copyright 2020 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. package core
  17. import (
  18. "errors"
  19. "fmt"
  20. "testing"
  21. "time"
  22. "github.com/ethereum/go-ethereum/consensus"
  23. "github.com/ethereum/go-ethereum/consensus/ethash"
  24. "github.com/ethereum/go-ethereum/core/rawdb"
  25. "github.com/ethereum/go-ethereum/core/types"
  26. "github.com/ethereum/go-ethereum/log"
  27. "github.com/ethereum/go-ethereum/params"
  28. )
  29. func verifyUnbrokenCanonchain(hc *HeaderChain) error {
  30. h := hc.CurrentHeader()
  31. for {
  32. canonHash := rawdb.ReadCanonicalHash(hc.chainDb, h.Number.Uint64())
  33. if exp := h.Hash(); canonHash != exp {
  34. return fmt.Errorf("Canon hash chain broken, block %d got %x, expected %x",
  35. h.Number, canonHash[:8], exp[:8])
  36. }
  37. // Verify that we have the TD
  38. if td := rawdb.ReadTd(hc.chainDb, canonHash, h.Number.Uint64()); td == nil {
  39. return fmt.Errorf("Canon TD missing at block %d", h.Number)
  40. }
  41. if h.Number.Uint64() == 0 {
  42. break
  43. }
  44. h = hc.GetHeader(h.ParentHash, h.Number.Uint64()-1)
  45. }
  46. return nil
  47. }
  48. func testInsert(t *testing.T, hc *HeaderChain, chain []*types.Header, wantStatus WriteStatus, wantErr error) {
  49. t.Helper()
  50. status, err := hc.InsertHeaderChain(chain, time.Now())
  51. if status != wantStatus {
  52. t.Errorf("wrong write status from InsertHeaderChain: got %v, want %v", status, wantStatus)
  53. }
  54. // Always verify that the header chain is unbroken
  55. if err := verifyUnbrokenCanonchain(hc); err != nil {
  56. t.Fatal(err)
  57. }
  58. if !errors.Is(err, wantErr) {
  59. t.Fatalf("unexpected error from InsertHeaderChain: %v", err)
  60. }
  61. }
  62. // This test checks status reporting of InsertHeaderChain.
  63. func TestHeaderInsertion(t *testing.T) {
  64. var (
  65. db = rawdb.NewMemoryDatabase()
  66. genesis = new(Genesis).MustCommit(db)
  67. )
  68. hc, err := NewHeaderChain(db, params.AllEthashProtocolChanges, ethash.NewFaker(), func() bool { return false })
  69. if err != nil {
  70. t.Fatal(err)
  71. }
  72. // chain A: G->A1->A2...A128
  73. chainA := makeHeaderChain(genesis.Header(), 128, ethash.NewFaker(), db, 10)
  74. // chain B: G->A1->B2...B128
  75. chainB := makeHeaderChain(chainA[0], 128, ethash.NewFaker(), db, 10)
  76. log.Root().SetHandler(log.StdoutHandler)
  77. // Inserting 64 headers on an empty chain, expecting
  78. // 1 callbacks, 1 canon-status, 0 sidestatus,
  79. testInsert(t, hc, chainA[:64], CanonStatTy, nil)
  80. // Inserting 64 identical headers, expecting
  81. // 0 callbacks, 0 canon-status, 0 sidestatus,
  82. testInsert(t, hc, chainA[:64], NonStatTy, nil)
  83. // Inserting the same some old, some new headers
  84. // 1 callbacks, 1 canon, 0 side
  85. testInsert(t, hc, chainA[32:96], CanonStatTy, nil)
  86. // Inserting side blocks, but not overtaking the canon chain
  87. testInsert(t, hc, chainB[0:32], SideStatTy, nil)
  88. // Inserting more side blocks, but we don't have the parent
  89. testInsert(t, hc, chainB[34:36], NonStatTy, consensus.ErrUnknownAncestor)
  90. // Inserting more sideblocks, overtaking the canon chain
  91. testInsert(t, hc, chainB[32:97], CanonStatTy, nil)
  92. // Inserting more A-headers, taking back the canonicality
  93. testInsert(t, hc, chainA[90:100], CanonStatTy, nil)
  94. // And B becomes canon again
  95. testInsert(t, hc, chainB[97:107], CanonStatTy, nil)
  96. // And B becomes even longer
  97. testInsert(t, hc, chainB[107:128], CanonStatTy, nil)
  98. }