256 lines
6.9 KiB
Go
256 lines
6.9 KiB
Go
// VulcanizeDB
|
|
// Copyright © 2019 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 sql_test
|
|
|
|
import (
|
|
"context"
|
|
"math/big"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/cerc-io/plugeth-statediff/indexer/database/sql"
|
|
"github.com/cerc-io/plugeth-statediff/indexer/database/sql/postgres"
|
|
"github.com/cerc-io/plugeth-statediff/indexer/mocks"
|
|
"github.com/cerc-io/plugeth-statediff/indexer/test"
|
|
)
|
|
|
|
var defaultPgConfig postgres.Config
|
|
|
|
func init() {
|
|
var err error
|
|
defaultPgConfig, err = postgres.TestConfig.WithEnv()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func setupPGXIndexer(t *testing.T, config postgres.Config) {
|
|
db, err = postgres.SetupPGXDB(config)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
ind, err = sql.NewStateDiffIndexer(context.Background(), mocks.TestChainConfig, db, true)
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
func setupPGX(t *testing.T) {
|
|
setupPGXWithConfig(t, defaultPgConfig)
|
|
}
|
|
|
|
func setupPGXWithConfig(t *testing.T, config postgres.Config) {
|
|
setupPGXIndexer(t, config)
|
|
test.SetupTestData(t, ind)
|
|
}
|
|
|
|
func setupPGXNonCanonical(t *testing.T) {
|
|
setupPGXIndexer(t, defaultPgConfig)
|
|
test.SetupTestDataNonCanonical(t, ind)
|
|
}
|
|
|
|
// Test indexer for a canonical block
|
|
func TestPGXIndexer(t *testing.T) {
|
|
t.Run("Publish and index header IPLDs in a single tx", func(t *testing.T) {
|
|
setupPGX(t)
|
|
defer tearDown(t)
|
|
defer checkTxClosure(t, 1, 0, 1)
|
|
|
|
test.DoTestPublishAndIndexHeaderIPLDs(t, db)
|
|
})
|
|
|
|
t.Run("Publish and index transaction IPLDs in a single tx", func(t *testing.T) {
|
|
setupPGX(t)
|
|
defer tearDown(t)
|
|
defer checkTxClosure(t, 1, 0, 1)
|
|
|
|
test.DoTestPublishAndIndexTransactionIPLDs(t, db)
|
|
})
|
|
|
|
t.Run("Publish and index log IPLDs for multiple receipt of a specific block", func(t *testing.T) {
|
|
setupPGX(t)
|
|
defer tearDown(t)
|
|
defer checkTxClosure(t, 1, 0, 1)
|
|
|
|
test.DoTestPublishAndIndexLogIPLDs(t, db)
|
|
})
|
|
|
|
t.Run("Publish and index receipt IPLDs in a single tx", func(t *testing.T) {
|
|
setupPGX(t)
|
|
defer tearDown(t)
|
|
defer checkTxClosure(t, 1, 0, 1)
|
|
|
|
test.DoTestPublishAndIndexReceiptIPLDs(t, db)
|
|
})
|
|
|
|
t.Run("Publish and index state IPLDs in a single tx", func(t *testing.T) {
|
|
setupPGX(t)
|
|
defer tearDown(t)
|
|
defer checkTxClosure(t, 1, 0, 1)
|
|
|
|
test.DoTestPublishAndIndexStateIPLDs(t, db)
|
|
})
|
|
|
|
t.Run("Publish and index storage IPLDs in a single tx", func(t *testing.T) {
|
|
setupPGX(t)
|
|
defer tearDown(t)
|
|
defer checkTxClosure(t, 1, 0, 1)
|
|
|
|
test.DoTestPublishAndIndexStorageIPLDs(t, db)
|
|
})
|
|
|
|
t.Run("Publish and index with CopyFrom enabled.", func(t *testing.T) {
|
|
config := defaultPgConfig
|
|
config.CopyFrom = true
|
|
|
|
setupPGXWithConfig(t, config)
|
|
defer tearDown(t)
|
|
defer checkTxClosure(t, 1, 0, 1)
|
|
|
|
test.DoTestPublishAndIndexStateIPLDs(t, db)
|
|
test.DoTestPublishAndIndexStorageIPLDs(t, db)
|
|
test.DoTestPublishAndIndexReceiptIPLDs(t, db)
|
|
test.DoTestPublishAndIndexLogIPLDs(t, db)
|
|
})
|
|
}
|
|
|
|
// Test indexer for a canonical + a non-canonical block at London height + a non-canonical block at London height + 1
|
|
func TestPGXIndexerNonCanonical(t *testing.T) {
|
|
t.Run("Publish and index header", func(t *testing.T) {
|
|
setupPGXNonCanonical(t)
|
|
defer tearDown(t)
|
|
defer checkTxClosure(t, 1, 0, 1)
|
|
|
|
test.TestPublishAndIndexHeaderNonCanonical(t, db)
|
|
})
|
|
|
|
t.Run("Publish and index transactions", func(t *testing.T) {
|
|
setupPGXNonCanonical(t)
|
|
defer tearDown(t)
|
|
defer checkTxClosure(t, 1, 0, 1)
|
|
|
|
test.DoTestPublishAndIndexTransactionsNonCanonical(t, db)
|
|
})
|
|
|
|
t.Run("Publish and index receipts", func(t *testing.T) {
|
|
setupPGXNonCanonical(t)
|
|
defer tearDown(t)
|
|
defer checkTxClosure(t, 1, 0, 1)
|
|
|
|
test.DoTestPublishAndIndexReceiptsNonCanonical(t, db)
|
|
})
|
|
|
|
t.Run("Publish and index logs", func(t *testing.T) {
|
|
setupPGXNonCanonical(t)
|
|
defer tearDown(t)
|
|
defer checkTxClosure(t, 1, 0, 1)
|
|
|
|
test.DoTestPublishAndIndexLogsNonCanonical(t, db)
|
|
})
|
|
|
|
t.Run("Publish and index state nodes", func(t *testing.T) {
|
|
setupPGXNonCanonical(t)
|
|
defer tearDown(t)
|
|
defer checkTxClosure(t, 1, 0, 1)
|
|
|
|
test.DoTestPublishAndIndexStateNonCanonical(t, db)
|
|
})
|
|
|
|
t.Run("Publish and index storage nodes", func(t *testing.T) {
|
|
setupPGXNonCanonical(t)
|
|
defer tearDown(t)
|
|
defer checkTxClosure(t, 1, 0, 1)
|
|
|
|
test.DoTestPublishAndIndexStorageNonCanonical(t, db)
|
|
})
|
|
}
|
|
|
|
func TestPGXWatchAddressMethods(t *testing.T) {
|
|
setupPGXIndexer(t, defaultPgConfig)
|
|
defer tearDown(t)
|
|
defer checkTxClosure(t, 1, 0, 1)
|
|
|
|
t.Run("Load watched addresses (empty table)", func(t *testing.T) {
|
|
test.TestLoadEmptyWatchedAddresses(t, ind)
|
|
})
|
|
|
|
t.Run("Insert watched addresses", func(t *testing.T) {
|
|
args := mocks.GetInsertWatchedAddressesArgs()
|
|
err = ind.InsertWatchedAddresses(args, big.NewInt(int64(mocks.WatchedAt1)))
|
|
require.NoError(t, err)
|
|
|
|
test.TestInsertWatchedAddresses(t, db)
|
|
})
|
|
|
|
t.Run("Insert watched addresses (some already watched)", func(t *testing.T) {
|
|
args := mocks.GetInsertAlreadyWatchedAddressesArgs()
|
|
err = ind.InsertWatchedAddresses(args, big.NewInt(int64(mocks.WatchedAt2)))
|
|
require.NoError(t, err)
|
|
|
|
test.TestInsertAlreadyWatchedAddresses(t, db)
|
|
})
|
|
|
|
t.Run("Remove watched addresses", func(t *testing.T) {
|
|
args := mocks.GetRemoveWatchedAddressesArgs()
|
|
err = ind.RemoveWatchedAddresses(args)
|
|
require.NoError(t, err)
|
|
|
|
test.TestRemoveWatchedAddresses(t, db)
|
|
})
|
|
|
|
t.Run("Remove watched addresses (some non-watched)", func(t *testing.T) {
|
|
args := mocks.GetRemoveNonWatchedAddressesArgs()
|
|
err = ind.RemoveWatchedAddresses(args)
|
|
require.NoError(t, err)
|
|
|
|
test.TestRemoveNonWatchedAddresses(t, db)
|
|
})
|
|
|
|
t.Run("Set watched addresses", func(t *testing.T) {
|
|
args := mocks.GetSetWatchedAddressesArgs()
|
|
err = ind.SetWatchedAddresses(args, big.NewInt(int64(mocks.WatchedAt2)))
|
|
require.NoError(t, err)
|
|
|
|
test.TestSetWatchedAddresses(t, db)
|
|
})
|
|
|
|
t.Run("Set watched addresses (some already watched)", func(t *testing.T) {
|
|
args := mocks.GetSetAlreadyWatchedAddressesArgs()
|
|
err = ind.SetWatchedAddresses(args, big.NewInt(int64(mocks.WatchedAt3)))
|
|
require.NoError(t, err)
|
|
|
|
test.TestSetAlreadyWatchedAddresses(t, db)
|
|
})
|
|
|
|
t.Run("Load watched addresses", func(t *testing.T) {
|
|
test.TestLoadWatchedAddresses(t, ind)
|
|
})
|
|
|
|
t.Run("Clear watched addresses", func(t *testing.T) {
|
|
err = ind.ClearWatchedAddresses()
|
|
require.NoError(t, err)
|
|
|
|
test.TestClearWatchedAddresses(t, db)
|
|
})
|
|
|
|
t.Run("Clear watched addresses (empty table)", func(t *testing.T) {
|
|
err = ind.ClearWatchedAddresses()
|
|
require.NoError(t, err)
|
|
|
|
test.TestClearEmptyWatchedAddresses(t, db)
|
|
})
|
|
}
|