-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #886 from CosmWasm/move-ensure-from-older-version
Add `ensure_from_older_version`
- Loading branch information
Showing
7 changed files
with
113 additions
and
6 deletions.
There are no files selected for viewing
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
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,100 @@ | ||
use crate::{get_contract_version, set_contract_version}; | ||
use cosmwasm_std::{StdError, StdResult, Storage}; | ||
use semver::Version; | ||
|
||
/// This function not only validates that the right contract and version can be migrated, but also | ||
/// updates the contract version from the original (stored) version to the new version. | ||
/// It returns the original version for the convenience of doing external checks. | ||
pub fn ensure_from_older_version( | ||
storage: &mut dyn Storage, | ||
name: &str, | ||
new_version: &str, | ||
) -> StdResult<Version> { | ||
let version: Version = new_version.parse().map_err(from_semver)?; | ||
let stored = get_contract_version(storage)?; | ||
let storage_version: Version = stored.version.parse().map_err(from_semver)?; | ||
|
||
if name != stored.contract { | ||
let msg = format!("Cannot migrate from {} to {}", stored.contract, name); | ||
return Err(StdError::generic_err(msg)); | ||
} | ||
|
||
if storage_version > version { | ||
let msg = format!( | ||
"Cannot migrate from newer version ({}) to older ({})", | ||
stored.version, new_version | ||
); | ||
return Err(StdError::generic_err(msg)); | ||
} | ||
if storage_version < version { | ||
// we don't need to save anything if migrating from the same version | ||
set_contract_version(storage, name, new_version)?; | ||
} | ||
|
||
Ok(storage_version) | ||
} | ||
|
||
fn from_semver(err: semver::Error) -> StdError { | ||
StdError::generic_err(format!("Semver: {err}")) | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
use super::*; | ||
use cosmwasm_std::testing::MockStorage; | ||
|
||
#[test] | ||
fn accepts_identical_version() { | ||
let mut storage = MockStorage::new(); | ||
set_contract_version(&mut storage, "demo", "0.1.2").unwrap(); | ||
// ensure this matches | ||
ensure_from_older_version(&mut storage, "demo", "0.1.2").unwrap(); | ||
} | ||
|
||
#[test] | ||
fn accepts_and_updates_on_newer_version() { | ||
let mut storage = MockStorage::new(); | ||
set_contract_version(&mut storage, "demo", "0.4.0").unwrap(); | ||
// ensure this matches | ||
let original_version = ensure_from_older_version(&mut storage, "demo", "0.4.2").unwrap(); | ||
|
||
// check the original version is returned | ||
assert_eq!(original_version.to_string(), "0.4.0".to_string()); | ||
|
||
// check the version is updated | ||
let stored = get_contract_version(&storage).unwrap(); | ||
assert_eq!(stored.contract, "demo".to_string()); | ||
assert_eq!(stored.version, "0.4.2".to_string()); | ||
} | ||
|
||
#[test] | ||
fn errors_on_name_mismatch() { | ||
let mut storage = MockStorage::new(); | ||
set_contract_version(&mut storage, "demo", "0.1.2").unwrap(); | ||
// ensure this matches | ||
let err = ensure_from_older_version(&mut storage, "cw20-base", "0.1.2").unwrap_err(); | ||
assert!(err.to_string().contains("cw20-base"), "{}", err); | ||
assert!(err.to_string().contains("demo"), "{}", err); | ||
} | ||
|
||
#[test] | ||
fn errors_on_older_version() { | ||
let mut storage = MockStorage::new(); | ||
set_contract_version(&mut storage, "demo", "0.10.2").unwrap(); | ||
// ensure this matches | ||
let err = ensure_from_older_version(&mut storage, "demo", "0.9.7").unwrap_err(); | ||
assert!(err.to_string().contains("0.10.2"), "{}", err); | ||
assert!(err.to_string().contains("0.9.7"), "{}", err); | ||
} | ||
|
||
#[test] | ||
fn errors_on_broken_version() { | ||
let mut storage = MockStorage::new(); | ||
let err = ensure_from_older_version(&mut storage, "demo", "0.a.7").unwrap_err(); | ||
assert!( | ||
err.to_string().contains("unexpected character 'a'"), | ||
"{}", | ||
err | ||
); | ||
} | ||
} |