2015-10-12 15:58:51 +00:00
|
|
|
package eth
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math/big"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/ethereum/go-ethereum/core"
|
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
|
|
"github.com/ethereum/go-ethereum/core/vm"
|
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMipmapUpgrade(t *testing.T) {
|
|
|
|
db, _ := ethdb.NewMemDatabase()
|
|
|
|
addr := common.BytesToAddress([]byte("jeff"))
|
|
|
|
genesis := core.WriteGenesisBlockForTesting(db)
|
|
|
|
|
2015-10-13 09:04:25 +00:00
|
|
|
chain, receipts := core.GenerateChain(genesis, db, 10, func(i int, gen *core.BlockGen) {
|
2015-10-12 15:58:51 +00:00
|
|
|
var receipts types.Receipts
|
|
|
|
switch i {
|
|
|
|
case 1:
|
|
|
|
receipt := types.NewReceipt(nil, new(big.Int))
|
2015-10-13 09:04:25 +00:00
|
|
|
receipt.Logs = vm.Logs{&vm.Log{Address: addr}}
|
2015-10-12 15:58:51 +00:00
|
|
|
gen.AddUncheckedReceipt(receipt)
|
|
|
|
receipts = types.Receipts{receipt}
|
|
|
|
case 2:
|
|
|
|
receipt := types.NewReceipt(nil, new(big.Int))
|
2015-10-13 09:04:25 +00:00
|
|
|
receipt.Logs = vm.Logs{&vm.Log{Address: addr}}
|
2015-10-12 15:58:51 +00:00
|
|
|
gen.AddUncheckedReceipt(receipt)
|
|
|
|
receipts = types.Receipts{receipt}
|
|
|
|
}
|
|
|
|
|
|
|
|
// store the receipts
|
2015-10-22 12:43:21 +00:00
|
|
|
err := core.WriteReceipts(db, receipts)
|
2015-10-12 15:58:51 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
})
|
2015-10-13 09:04:25 +00:00
|
|
|
for i, block := range chain {
|
2015-10-12 15:58:51 +00:00
|
|
|
core.WriteBlock(db, block)
|
|
|
|
if err := core.WriteCanonicalHash(db, block.Hash(), block.NumberU64()); err != nil {
|
|
|
|
t.Fatalf("failed to insert block number: %v", err)
|
|
|
|
}
|
|
|
|
if err := core.WriteHeadBlockHash(db, block.Hash()); err != nil {
|
|
|
|
t.Fatalf("failed to insert block number: %v", err)
|
|
|
|
}
|
2015-10-22 12:43:21 +00:00
|
|
|
if err := core.WriteBlockReceipts(db, block.Hash(), receipts[i]); err != nil {
|
2015-10-12 15:58:51 +00:00
|
|
|
t.Fatal("error writing block receipts:", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
err := addMipmapBloomBins(db)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
bloom := core.GetMipmapBloom(db, 1, core.MIPMapLevels[0])
|
|
|
|
if (bloom == types.Bloom{}) {
|
|
|
|
t.Error("got empty bloom filter")
|
|
|
|
}
|
|
|
|
|
|
|
|
data, _ := db.Get([]byte("setting-mipmap-version"))
|
|
|
|
if len(data) == 0 {
|
|
|
|
t.Error("setting-mipmap-version not written to database")
|
|
|
|
}
|
|
|
|
}
|