-
Notifications
You must be signed in to change notification settings - Fork 680
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# MBM try-runtime support This MR adds support to the try-runtime trait such that the try-runtime-CLI will be able to support MBM testing [here](paritytech/try-runtime-cli#90). It mainly adds two feature-gated hooks to the `SteppedMigration` hook to facilitate testing. These hooks are named `pre_upgrade` and `post_upgrade` and have the same signature and implications as for single-block migrations. ## Integration To make use of this in your Multi-Block-Migration, just implement the two new hooks and test pre- and post-conditions in them: ```rust #[cfg(feature = "try-runtime")] fn pre_upgrade() -> Result<Vec<u8>, frame_support::sp_runtime::TryRuntimeError> { // ... } #[cfg(feature = "try-runtime")] fn post_upgrade(prev: Vec<u8>) -> Result<(), frame_support::sp_runtime::TryRuntimeError> { // ... } ``` You may return an error or panic in these functions to indicate failure. This will then show up in the try-runtime-CLI and can be used in CI for testing. Changes: - Adds `try-runtime` gated methods `pre_upgrade` and `post_upgrade` on `SteppedMigration` - Adds `try-runtime` gated methods `nth_pre_upgrade` and `nth_post_upgrade` on `SteppedMigrations` - Modifies `pallet_migrations` implementation to run pre_upgrade and post_upgrade steps at the appropriate times, and panic in the event of migration failure. --------- Signed-off-by: Oliver Tale-Yazdi <[email protected]> Signed-off-by: georgepisaltu <[email protected]> Co-authored-by: Oliver Tale-Yazdi <[email protected]> Co-authored-by: claravanstaden <[email protected]> Co-authored-by: ggwpez <[email protected]> Co-authored-by: georgepisaltu <[email protected]>
- Loading branch information
1 parent
c350c4c
commit 8b08246
Showing
11 changed files
with
432 additions
and
12 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,79 @@ | ||
title: MBM `try-runtime` support | ||
doc: | ||
- audience: Runtime Dev | ||
description: | | ||
# MBM try-runtime support | ||
|
||
This MR adds support to the try-runtime | ||
trait such that the try-runtime-CLI will be able to support MBM testing [here](https://github.com/paritytech/try-runtime-cli/pull/90). | ||
It mainly adds two feature-gated hooks to the `SteppedMigration` hook to facilitate | ||
testing. These hooks are named `pre_upgrade` and `post_upgrade` and have the | ||
same signature and implications as for single-block migrations. | ||
|
||
## Integration | ||
|
||
To make use of this in your Multi-Block-Migration, just implement the two new hooks and test pre- and post-conditions in them: | ||
|
||
```rust | ||
#[cfg(feature = "try-runtime")] | ||
fn pre_upgrade() -> Result<Vec<u8>, frame_support::sp_runtime::TryRuntimeError> | ||
{ | ||
// ... | ||
} | ||
|
||
#[cfg(feature = "try-runtime")] | ||
fn post_upgrade(prev: Vec<u8>) -> Result<(), frame_support::sp_runtime::TryRuntimeError> { | ||
// ... | ||
} | ||
``` | ||
|
||
You may return an error or panic in these functions to indicate failure. | ||
This will then show up in the try-runtime-CLI and can be used in CI for testing. | ||
|
||
|
||
Changes: | ||
- Adds `try-runtime` gated methods `pre_upgrade` and `post_upgrade` | ||
on `SteppedMigration` | ||
- Adds `try-runtime` gated methods `nth_pre_upgrade` | ||
and `nth_post_upgrade` on `SteppedMigrations` | ||
- Modifies `pallet_migrations` | ||
implementation to run pre_upgrade and post_upgrade steps at the appropriate times, and panic in the event of migration failure. | ||
crates: | ||
- name: asset-hub-rococo-runtime | ||
bump: minor | ||
- name: asset-hub-westend-runtime | ||
bump: minor | ||
- name: bridge-hub-rococo-runtime | ||
bump: minor | ||
- name: bridge-hub-westend-runtime | ||
bump: minor | ||
- name: collectives-westend-runtime | ||
bump: minor | ||
- name: contracts-rococo-runtime | ||
bump: minor | ||
- name: coretime-rococo-runtime | ||
bump: minor | ||
- name: coretime-westend-runtime | ||
bump: minor | ||
- name: people-rococo-runtime | ||
bump: minor | ||
- name: people-westend-runtime | ||
bump: minor | ||
- name: penpal-runtime | ||
bump: minor | ||
- name: polkadot-parachain-bin | ||
bump: minor | ||
- name: rococo-runtime | ||
bump: minor | ||
- name: westend-runtime | ||
bump: minor | ||
- name: frame-executive | ||
bump: minor | ||
- name: pallet-migrations | ||
bump: minor | ||
- name: frame-support | ||
bump: minor | ||
- name: frame-system | ||
bump: minor | ||
- name: frame-try-runtime | ||
bump: minor |
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
Oops, something went wrong.