Roy Crihfield
ebc2eb37e7
* refactor packages, flags, subscriptions * DRY refactor builder tests * use mockgen to generate mocks * update README * MODE=statediff no longer needed for unit tests * simplify func names, clean up metrics * move write params to service field * sql indexer: confirm quit after ipld cache reset prevents negative waitgroup panic * don't let TotalDifficulty become nil * use forked plugeth, plugeth-utils for now
97 lines
3.1 KiB
Go
97 lines
3.1 KiB
Go
// VulcanizeDB
|
|
// Copyright © 2022 Vulcanize
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// This program 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 Affero General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/cerc-io/plugeth-statediff/indexer/database/file"
|
|
"github.com/cerc-io/plugeth-statediff/indexer/database/sql"
|
|
"github.com/cerc-io/plugeth-statediff/indexer/interfaces"
|
|
"github.com/cerc-io/plugeth-statediff/indexer/ipld"
|
|
"github.com/cerc-io/plugeth-statediff/indexer/mocks"
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
"github.com/ethereum/go-ethereum/params"
|
|
"github.com/ipfs/go-cid"
|
|
"github.com/multiformats/go-multihash"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
var (
|
|
LegacyConfig = params.MainnetChainConfig
|
|
legacyData = mocks.NewLegacyData(LegacyConfig)
|
|
mockLegacyBlock *types.Block
|
|
legacyHeaderCID cid.Cid
|
|
)
|
|
|
|
func SetupLegacyTestData(t *testing.T, ind interfaces.StateDiffIndexer) {
|
|
mockLegacyBlock = legacyData.MockBlock
|
|
legacyHeaderCID, _ = ipld.RawdataToCid(ipld.MEthHeader, legacyData.MockHeaderRlp, multihash.KECCAK_256)
|
|
|
|
var tx interfaces.Batch
|
|
tx, err = ind.PushBlock(
|
|
mockLegacyBlock,
|
|
legacyData.MockReceipts,
|
|
legacyData.MockBlock.Difficulty())
|
|
require.NoError(t, err)
|
|
|
|
defer func() {
|
|
if err := tx.Submit(err); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}()
|
|
for _, node := range legacyData.StateDiffs {
|
|
err = ind.PushStateNode(tx, node, mockLegacyBlock.Hash().String())
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
if batchTx, ok := tx.(*sql.BatchTx); ok {
|
|
require.Equal(t, legacyData.BlockNumber.String(), batchTx.BlockNumber)
|
|
} else if batchTx, ok := tx.(*file.BatchTx); ok {
|
|
require.Equal(t, legacyData.BlockNumber.String(), batchTx.BlockNumber)
|
|
}
|
|
}
|
|
|
|
func TestLegacyIndexer(t *testing.T, db sql.Database) {
|
|
pgStr := `SELECT cid, cast(td AS TEXT), cast(reward AS TEXT), block_hash, coinbase
|
|
FROM eth.header_cids
|
|
WHERE block_number = $1`
|
|
// check header was properly indexed
|
|
type res struct {
|
|
CID string
|
|
TD string
|
|
Reward string
|
|
BlockHash string `db:"block_hash"`
|
|
Coinbase string `db:"coinbase"`
|
|
}
|
|
header := new(res)
|
|
err = db.QueryRow(context.Background(), pgStr, legacyData.BlockNumber.Uint64()).Scan(
|
|
&header.CID,
|
|
&header.TD,
|
|
&header.Reward,
|
|
&header.BlockHash,
|
|
&header.Coinbase)
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, legacyHeaderCID.String(), header.CID)
|
|
require.Equal(t, legacyData.MockBlock.Difficulty().String(), header.TD)
|
|
require.Equal(t, "5000000000000011250", header.Reward)
|
|
require.Equal(t, legacyData.MockHeader.Coinbase.String(), header.Coinbase)
|
|
require.Nil(t, legacyData.MockHeader.BaseFee)
|
|
}
|