24fc6358d6
* Set starting slot and improve error gap capturing * Set starting slot and improve error gap capturing * Tests + Significant Refactor The code for historical processing has been significantly refactored to use a context to signify a shutdown. There have also been many tests added for historical and knownGaps processing. * Update MhKeys in test * Update correct values * Update Max Retry Genesis is not working as expected. * Ensure we release locks properly * Add ordered testing * Include system tests * Update workflow calls * Add secrets * Add required secrets * update path * Try using the absolute path * Remove volumes at the end. * Update system-tests.yml * Update system-tests.yml * Update test err * Update and test the shutdown * rename ethcl --> eth-beacon * Try forcing /bin/bash for docker-compose * Update system-tests.yml * Update system-tests.yml * Update system-tests.yml * Update system-tests.yml * Update system-tests.yml * Update system-tests.yml * Use single quote cron * Dont run generic on schedule
70 lines
2.2 KiB
Go
70 lines
2.2 KiB
Go
package beaconclient_test
|
|
|
|
import (
|
|
"os"
|
|
"strconv"
|
|
"time"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
//. "github.com/onsi/gomega"
|
|
"github.com/vulcanize/ipld-eth-beacon-indexer/pkg/beaconclient"
|
|
)
|
|
|
|
var (
|
|
prodConfig = Config{
|
|
protocol: os.Getenv("bc_protocol"),
|
|
address: os.Getenv("bc_address"),
|
|
port: getEnvInt(os.Getenv("bc_port")),
|
|
dbHost: os.Getenv("db_host"),
|
|
dbPort: getEnvInt(os.Getenv("db_port")),
|
|
dbName: os.Getenv("db_name"),
|
|
dbUser: os.Getenv("db_user"),
|
|
dbPassword: os.Getenv("db_password"),
|
|
dbDriver: os.Getenv("db_driver"),
|
|
knownGapsTableIncrement: 100000000,
|
|
bcUniqueIdentifier: 100,
|
|
checkDb: false,
|
|
}
|
|
)
|
|
var _ = Describe("Systemvalidation", Label("system"), func() {
|
|
Describe("Run the application against a running lighthouse node", func() {
|
|
Context("When we receive head messages", func() {
|
|
It("We should process the messages successfully", func() {
|
|
bc := setUpTest(prodConfig, "10000000000")
|
|
processProdHeadBlocks(bc, 3, 0, 0, 0)
|
|
})
|
|
})
|
|
Context("When we have historical and knownGaps slots to process", Label("system-batch"), func() {
|
|
It("Should process them successfully", func() {
|
|
bc := setUpTest(prodConfig, "10000000000")
|
|
//known Gaps
|
|
BeaconNodeTester.writeEventToKnownGaps(bc, 100, 101)
|
|
BeaconNodeTester.runKnownGapsProcess(bc, 2, 2, 0, 0, 0)
|
|
|
|
// Historical
|
|
BeaconNodeTester.writeEventToHistoricProcess(bc, 2375703, 2375703, 10)
|
|
BeaconNodeTester.runHistoricalProcess(bc, 2, 3, 0, 0, 0)
|
|
|
|
time.Sleep(2 * time.Second)
|
|
validatePopularBatchBlocks(bc)
|
|
})
|
|
})
|
|
})
|
|
})
|
|
|
|
// Wrapper function to get int env variables.
|
|
func getEnvInt(envVar string) int {
|
|
val, err := strconv.Atoi(envVar)
|
|
if err != nil {
|
|
return 0
|
|
}
|
|
return val
|
|
}
|
|
|
|
// Start head tracking and wait for the expected results.
|
|
func processProdHeadBlocks(bc *beaconclient.BeaconClient, expectedInserts, expectedReorgs, expectedKnownGaps, expectedKnownGapsReprocessError uint64) {
|
|
go bc.CaptureHead()
|
|
time.Sleep(1 * time.Second)
|
|
validateMetrics(bc, expectedInserts, expectedReorgs, expectedKnownGaps, expectedKnownGapsReprocessError)
|
|
}
|