Skip to content

Commit

Permalink
Added cli option to enable genesis-transformation: disabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
bermuell committed Dec 1, 2023
1 parent a6db3dc commit ac352d4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
7 changes: 3 additions & 4 deletions tests/e2e/actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -582,10 +582,9 @@ func (tr *TestConfig) startConsumerChain(
log.Fatal(err, "\n", string(bz))
}

// Hack to deal with deprecated consumer genesis exports
// TODO: needs better case identification
if tr.consumerVersion != "" {
log.Printf("Transforming consumer genesis for a newer version: %s\n", tr.consumerVersion)
// only needed when consumer is running v3.2.x and later
if tr.transformGenesis {
log.Printf("@@@@ Transforming consumer genesis for a newer version: %s\n", tr.consumerVersion)
log.Printf("Original ccv genesis: %s\n", string(bz))

file, err := os.Create("consumer_genesis.json")
Expand Down
7 changes: 4 additions & 3 deletions tests/e2e/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,10 @@ type TestConfig struct {
timeOffset time.Duration

// consumer version the provider should be tested against
consumerVersion string
providerVersion string
name string
consumerVersion string
providerVersion string
transformGenesis bool
name string
}

// Initialize initializes the TestConfig instance by setting the runningChains field to an empty map.
Expand Down
8 changes: 6 additions & 2 deletions tests/e2e/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ var (
var (
useConsumerVersion = flag.String("consumer-version", "", "ICS tag to specify the consumer version to test the provider against")
useProviderVersion = flag.String("provider-version", "", "ICS tag to specify the provider version to test the consumer against")
transformGenesis = flag.Bool("transform-genesis", false, "do consumer genesis transformation for newer clients. Needed when provider chain is on an older version")
)

var (
Expand Down Expand Up @@ -285,7 +286,7 @@ func main() {
if err := parseArguments(); err != nil {
flag.Usage()
log.Fatalf("Error parsing command arguments %s\n", err)
}
}

if *useConsumerVersion != "" && *useProviderVersion != "" {
log.Fatalf("consumer-version & provider-version specified! Note: for compatibility tests current checked out version can only be tested against a different provider or consumer version")
Expand All @@ -302,11 +303,14 @@ func main() {

// Run sets up docker container and executes the steps in the test run.
// Docker containers are torn down after the test run is complete.
func (tr *TestConfig) Run(steps []Step, localSdkPath string, useGaia bool, gaiaTag string, consumerVersion string, providerVersion string) {
func (tr *TestConfig) Run(steps []Step, localSdkPath string, useGaia bool, gaiaTag string, consumerVersion string, providerVersion string, transformGenesis bool) {
tr.SetDockerConfig(localSdkPath, useGaia, gaiaTag, consumerVersion, providerVersion)
tr.SetCometMockConfig(*useCometmock)
tr.SetRelayerConfig(*useGorelayer)

// Hack to disable genesis transformation... do it smarter
tr.transformGenesis = transformGenesis

tr.validateStringLiterals()
tr.startDocker()
tr.executeSteps(steps)
Expand Down

0 comments on commit ac352d4

Please sign in to comment.