-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add coordinated zetaclient restart (#3252)
* feat: add coordinated zetaclient restart feedback updates * add test coverage * add genesis and import/export logic * add basic zetaclient implementation * complete e2e test logic * zetaclient test coverage * make generate * updates
- Loading branch information
Showing
55 changed files
with
2,740 additions
and
341 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
package e2etests | ||
|
||
import ( | ||
"time" | ||
|
||
"github.com/stretchr/testify/require" | ||
|
||
"github.com/zeta-chain/node/e2e/runner" | ||
"github.com/zeta-chain/node/e2e/utils" | ||
observertypes "github.com/zeta-chain/node/x/observer/types" | ||
) | ||
|
||
const ( | ||
startTimestampMetricName = "zetaclient_last_start_timestamp_seconds" | ||
) | ||
|
||
// TestOperationalFlags tests the functionality of operations flags. | ||
func TestOperationalFlags(r *runner.E2ERunner, _ []string) { | ||
_, err := r.Clients.Zetacore.Observer.OperationalFlags( | ||
r.Ctx, | ||
&observertypes.QueryOperationalFlagsRequest{}, | ||
) | ||
require.NoError(r, err) | ||
|
||
currentHeight, err := r.Clients.Zetacore.GetBlockHeight(r.Ctx) | ||
require.NoError(r, err) | ||
|
||
// schedule a restart for 5 blocks in the future | ||
restartHeight := currentHeight + 5 | ||
updateMsg := observertypes.NewMsgUpdateOperationalFlags( | ||
r.ZetaTxServer.MustGetAccountAddressFromName(utils.OperationalPolicyName), | ||
observertypes.OperationalFlags{ | ||
RestartHeight: restartHeight, | ||
}, | ||
) | ||
|
||
_, err = r.ZetaTxServer.BroadcastTx(utils.OperationalPolicyName, updateMsg) | ||
require.NoError(r, err) | ||
|
||
operationalFlagsRes, err := r.Clients.Zetacore.Observer.OperationalFlags( | ||
r.Ctx, | ||
&observertypes.QueryOperationalFlagsRequest{}, | ||
) | ||
require.NoError(r, err) | ||
require.Equal(r, restartHeight, operationalFlagsRes.OperationalFlags.RestartHeight) | ||
|
||
originalStartTime, err := r.Clients.ZetaclientMetrics.FetchGauge(startTimestampMetricName) | ||
require.NoError(r, err, "fetching zetaclient metric name") | ||
|
||
// wait for height above restart height | ||
// wait for a few extra block to account for shutdown and startup time | ||
require.Eventually(r, func() bool { | ||
height, err := r.Clients.Zetacore.GetBlockHeight(r.Ctx) | ||
require.NoError(r, err) | ||
return height > restartHeight+3 | ||
}, time.Minute, time.Second) | ||
|
||
currentStartTime, err := r.Clients.ZetaclientMetrics.FetchGauge(startTimestampMetricName) | ||
require.NoError(r, err) | ||
|
||
require.Greater(r, currentStartTime, originalStartTime+1) | ||
} |
Oops, something went wrong.