mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 10:31:03 +00:00
Introduce upgrade go-ahead and upgrade restriction signals (#3371)
* Introduce upgrade goahead and upgrade restriction signals * Explicit encoding indicies for exposed enums * typo: abscent -> absent * Prune cooldowns as well * Please hunspell
This commit is contained in:
@@ -701,7 +701,8 @@ impl<T: Config> Pallet<T> {
|
||||
weight += <paras::Pallet<T>>::schedule_code_upgrade(
|
||||
receipt.descriptor.para_id,
|
||||
new_code,
|
||||
relay_parent_number + config.validation_upgrade_delay,
|
||||
relay_parent_number,
|
||||
&config,
|
||||
);
|
||||
}
|
||||
|
||||
@@ -2120,9 +2121,19 @@ mod tests {
|
||||
BackingKind::Threshold,
|
||||
));
|
||||
|
||||
Paras::schedule_code_upgrade(chain_a, vec![1, 2, 3, 4].into(), 10);
|
||||
{
|
||||
let cfg = Configuration::config();
|
||||
let expected_at = 10 + cfg.validation_upgrade_delay;
|
||||
assert_eq!(expected_at, 10);
|
||||
Paras::schedule_code_upgrade(
|
||||
chain_a,
|
||||
vec![1, 2, 3, 4].into(),
|
||||
expected_at,
|
||||
&cfg,
|
||||
);
|
||||
|
||||
assert_eq!(Paras::last_code_upgrade(chain_a, true), Some(10));
|
||||
assert_eq!(Paras::last_code_upgrade(chain_a, true), Some(expected_at));
|
||||
}
|
||||
|
||||
assert_eq!(
|
||||
ParaInclusion::process_candidates(
|
||||
|
||||
@@ -28,7 +28,8 @@ use frame_support::pallet_prelude::*;
|
||||
use frame_system::pallet_prelude::*;
|
||||
use parity_scale_codec::{Decode, Encode};
|
||||
use primitives::v1::{
|
||||
ConsensusLog, HeadData, Id as ParaId, SessionIndex, ValidationCode, ValidationCodeHash,
|
||||
ConsensusLog, HeadData, Id as ParaId, SessionIndex, UpgradeGoAhead, UpgradeRestriction,
|
||||
ValidationCode, ValidationCodeHash,
|
||||
};
|
||||
use sp_core::RuntimeDebug;
|
||||
use sp_runtime::{traits::One, DispatchResult, SaturatedConversion};
|
||||
@@ -374,6 +375,47 @@ pub mod pallet {
|
||||
pub(super) type FutureCodeHash<T: Config> =
|
||||
StorageMap<_, Twox64Concat, ParaId, ValidationCodeHash>;
|
||||
|
||||
/// This is used by the relay-chain to communicate to a parachain a go-ahead with in the upgrade procedure.
|
||||
///
|
||||
/// This value is absent when there are no upgrades scheduled or during the time the relay chain
|
||||
/// performs the checks. It is set at the first relay-chain block when the corresponding parachain
|
||||
/// can switch its upgrade function. As soon as the parachain's block is included, the value
|
||||
/// gets reset to `None`.
|
||||
///
|
||||
/// NOTE that this field is used by parachains via merkle storage proofs, therefore changing
|
||||
/// the format will require migration of parachains.
|
||||
#[pallet::storage]
|
||||
pub(super) type UpgradeGoAheadSignal<T: Config> =
|
||||
StorageMap<_, Twox64Concat, ParaId, UpgradeGoAhead>;
|
||||
|
||||
/// This is used by the relay-chain to communicate that there are restrictions for performing
|
||||
/// an upgrade for this parachain.
|
||||
///
|
||||
/// This may be a because the parachain waits for the upgrade cooldown to expire. Another
|
||||
/// potential use case is when we want to perform some maintenance (such as storage migration)
|
||||
/// we could restrict upgrades to make the process simpler.
|
||||
///
|
||||
/// NOTE that this field is used by parachains via merkle storage proofs, therefore changing
|
||||
/// the format will require migration of parachains.
|
||||
#[pallet::storage]
|
||||
pub(super) type UpgradeRestrictionSignal<T: Config> =
|
||||
StorageMap<_, Twox64Concat, ParaId, UpgradeRestriction>;
|
||||
|
||||
/// The list of parachains that are awaiting for their upgrade restriction to cooldown.
|
||||
///
|
||||
/// Ordered ascending by block number.
|
||||
#[pallet::storage]
|
||||
pub(super) type UpgradeCooldowns<T: Config> =
|
||||
StorageValue<_, Vec<(ParaId, T::BlockNumber)>, ValueQuery>;
|
||||
|
||||
/// The list of upcoming code upgrades. Each item is a pair of which para performs a code
|
||||
/// upgrade and at which relay-chain block it is expected at.
|
||||
///
|
||||
/// Ordered ascending by block number.
|
||||
#[pallet::storage]
|
||||
pub(super) type UpcomingUpgrades<T: Config> =
|
||||
StorageValue<_, Vec<(ParaId, T::BlockNumber)>, ValueQuery>;
|
||||
|
||||
/// The actions to perform during the start of a specific session index.
|
||||
#[pallet::storage]
|
||||
#[pallet::getter(fn actions_queue)]
|
||||
@@ -478,16 +520,17 @@ pub mod pallet {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
/// Schedule a code upgrade for block `expected_at`.
|
||||
/// Schedule an upgrade as if it was scheduled in the given relay parent block.
|
||||
#[pallet::weight(0)]
|
||||
pub fn force_schedule_code_upgrade(
|
||||
origin: OriginFor<T>,
|
||||
para: ParaId,
|
||||
new_code: ValidationCode,
|
||||
expected_at: T::BlockNumber,
|
||||
relay_parent_number: T::BlockNumber,
|
||||
) -> DispatchResult {
|
||||
ensure_root(origin)?;
|
||||
Self::schedule_code_upgrade(para, new_code, expected_at);
|
||||
let config = configuration::Pallet::<T>::config();
|
||||
Self::schedule_code_upgrade(para, new_code, relay_parent_number, &config);
|
||||
Self::deposit_event(Event::CodeUpgradeScheduled(para));
|
||||
Ok(())
|
||||
}
|
||||
@@ -527,7 +570,8 @@ pub mod pallet {
|
||||
impl<T: Config> Pallet<T> {
|
||||
/// Called by the initializer to initialize the configuration pallet.
|
||||
pub(crate) fn initializer_initialize(now: T::BlockNumber) -> Weight {
|
||||
Self::prune_old_code(now)
|
||||
let weight = Self::prune_old_code(now);
|
||||
weight + Self::process_scheduled_upgrade_changes(now)
|
||||
}
|
||||
|
||||
/// Called by the initializer to finalize the configuration pallet.
|
||||
@@ -618,6 +662,8 @@ impl<T: Config> Pallet<T> {
|
||||
|
||||
<Self as Store>::Heads::remove(¶);
|
||||
<Self as Store>::FutureCodeUpgrades::remove(¶);
|
||||
<Self as Store>::UpgradeGoAheadSignal::remove(¶);
|
||||
<Self as Store>::UpgradeRestrictionSignal::remove(¶);
|
||||
ParaLifecycles::<T>::remove(¶);
|
||||
let removed_future_code_hash = <Self as Store>::FutureCodeHash::take(¶);
|
||||
if let Some(removed_future_code_hash) = removed_future_code_hash {
|
||||
@@ -634,6 +680,27 @@ impl<T: Config> Pallet<T> {
|
||||
}
|
||||
}
|
||||
|
||||
if !outgoing.is_empty() {
|
||||
// Filter offboarded parachains from the upcoming upgrades and upgrade cooldowns list.
|
||||
//
|
||||
// We do it after the offboarding to get away with only a single read/write per list.
|
||||
//
|
||||
// NOTE both of those iterates over the list and the outgoing. We do not expect either
|
||||
// of these to be large. Thus should be fine.
|
||||
<Self as Store>::UpcomingUpgrades::mutate(|upcoming_upgrades| {
|
||||
*upcoming_upgrades = sp_std::mem::take(upcoming_upgrades)
|
||||
.into_iter()
|
||||
.filter(|&(ref para, _)| !outgoing.contains(para))
|
||||
.collect();
|
||||
});
|
||||
<Self as Store>::UpgradeCooldowns::mutate(|upgrade_cooldowns| {
|
||||
*upgrade_cooldowns = sp_std::mem::take(upgrade_cooldowns)
|
||||
.into_iter()
|
||||
.filter(|&(ref para, _)| !outgoing.contains(para))
|
||||
.collect();
|
||||
});
|
||||
}
|
||||
|
||||
// Place the new parachains set in storage.
|
||||
<Self as Store>::Parachains::set(parachains);
|
||||
|
||||
@@ -727,6 +794,33 @@ impl<T: Config> Pallet<T> {
|
||||
T::DbWeight::get().reads_writes(1 + pruning_tasks_done, 2 * pruning_tasks_done)
|
||||
}
|
||||
|
||||
/// Process the timers related to upgrades. Specifically, the upgrade go ahead signals toggle
|
||||
/// and the upgrade cooldown restrictions.
|
||||
///
|
||||
/// Takes the current block number and returns the weight consumed.
|
||||
fn process_scheduled_upgrade_changes(now: T::BlockNumber) -> Weight {
|
||||
let upgrades_signaled = <Self as Store>::UpcomingUpgrades::mutate(
|
||||
|upcoming_upgrades: &mut Vec<(ParaId, T::BlockNumber)>| {
|
||||
let num = upcoming_upgrades.iter().take_while(|&(_, at)| at <= &now).count();
|
||||
for (para, _) in upcoming_upgrades.drain(..num) {
|
||||
<Self as Store>::UpgradeGoAheadSignal::insert(¶, UpgradeGoAhead::GoAhead);
|
||||
}
|
||||
num
|
||||
},
|
||||
);
|
||||
let cooldowns_expired = <Self as Store>::UpgradeCooldowns::mutate(
|
||||
|upgrade_cooldowns: &mut Vec<(ParaId, T::BlockNumber)>| {
|
||||
let num = upgrade_cooldowns.iter().take_while(|&(_, at)| at <= &now).count();
|
||||
for (para, _) in upgrade_cooldowns.drain(..num) {
|
||||
<Self as Store>::UpgradeRestrictionSignal::remove(¶);
|
||||
}
|
||||
num
|
||||
},
|
||||
);
|
||||
|
||||
T::DbWeight::get().reads_writes(2, upgrades_signaled as u64 + cooldowns_expired as u64)
|
||||
}
|
||||
|
||||
/// Verify that `schedule_para_initialize` can be called successfully.
|
||||
///
|
||||
/// Returns false if para is already registered in the system.
|
||||
@@ -830,14 +924,37 @@ impl<T: Config> Pallet<T> {
|
||||
pub(crate) fn schedule_code_upgrade(
|
||||
id: ParaId,
|
||||
new_code: ValidationCode,
|
||||
expected_at: T::BlockNumber,
|
||||
relay_parent_number: T::BlockNumber,
|
||||
cfg: &configuration::HostConfiguration<T::BlockNumber>,
|
||||
) -> Weight {
|
||||
<Self as Store>::FutureCodeUpgrades::mutate(&id, |up| {
|
||||
if up.is_some() {
|
||||
T::DbWeight::get().reads_writes(1, 0)
|
||||
} else {
|
||||
let expected_at = relay_parent_number + cfg.validation_upgrade_delay;
|
||||
let next_possible_upgrade_at =
|
||||
relay_parent_number + cfg.validation_upgrade_frequency;
|
||||
|
||||
*up = Some(expected_at);
|
||||
|
||||
<Self as Store>::UpcomingUpgrades::mutate(|upcoming_upgrades| {
|
||||
let insert_idx = upcoming_upgrades
|
||||
.binary_search_by_key(&expected_at, |&(_, b)| b)
|
||||
.unwrap_or_else(|idx| idx);
|
||||
upcoming_upgrades.insert(insert_idx, (id, expected_at));
|
||||
});
|
||||
|
||||
// From the moment of signalling of the upgrade until the cooldown expires, the
|
||||
// parachain is disallowed to make further upgrades. Therefore set the upgrade
|
||||
// permission signal to disallowed and activate the cooldown timer.
|
||||
<Self as Store>::UpgradeRestrictionSignal::insert(&id, UpgradeRestriction::Present);
|
||||
<Self as Store>::UpgradeCooldowns::mutate(|upgrade_cooldowns| {
|
||||
let insert_idx = upgrade_cooldowns
|
||||
.binary_search_by_key(&next_possible_upgrade_at, |&(_, b)| b)
|
||||
.unwrap_or_else(|idx| idx);
|
||||
upgrade_cooldowns.insert(insert_idx, (id, next_possible_upgrade_at));
|
||||
});
|
||||
|
||||
let new_code_hash = new_code.hash();
|
||||
let expected_at_u32 = expected_at.saturated_into();
|
||||
let log = ConsensusLog::ParaScheduleUpgradeCode(id, new_code_hash, expected_at_u32);
|
||||
@@ -845,14 +962,14 @@ impl<T: Config> Pallet<T> {
|
||||
|
||||
let (reads, writes) = Self::increase_code_ref(&new_code_hash, &new_code);
|
||||
FutureCodeHash::<T>::insert(&id, new_code_hash);
|
||||
T::DbWeight::get().reads_writes(1 + reads, 2 + writes)
|
||||
T::DbWeight::get().reads_writes(2 + reads, 3 + writes)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
/// Note that a para has progressed to a new head, where the new head was executed in the context
|
||||
/// of a relay-chain block with given number. This will apply pending code upgrades based
|
||||
/// on the block number provided.
|
||||
/// on the relay-parent block number provided.
|
||||
pub(crate) fn note_new_head(
|
||||
id: ParaId,
|
||||
new_head: HeadData,
|
||||
@@ -863,6 +980,7 @@ impl<T: Config> Pallet<T> {
|
||||
if let Some(expected_at) = <Self as Store>::FutureCodeUpgrades::get(&id) {
|
||||
if expected_at <= execution_context {
|
||||
<Self as Store>::FutureCodeUpgrades::remove(&id);
|
||||
<Self as Store>::UpgradeGoAheadSignal::remove(&id);
|
||||
|
||||
// Both should always be `Some` in this case, since a code upgrade is scheduled.
|
||||
let new_code_hash = FutureCodeHash::<T>::take(&id).unwrap_or_default();
|
||||
@@ -1025,7 +1143,7 @@ mod tests {
|
||||
|
||||
use crate::{
|
||||
configuration::HostConfiguration,
|
||||
mock::{new_test_ext, MockGenesisConfig, Paras, ParasShared, System},
|
||||
mock::{new_test_ext, Configuration, MockGenesisConfig, Paras, ParasShared, System},
|
||||
};
|
||||
|
||||
fn run_to_block(to: BlockNumber, new_session: Option<Vec<BlockNumber>>) {
|
||||
@@ -1332,6 +1450,7 @@ mod tests {
|
||||
fn code_upgrade_applied_after_delay() {
|
||||
let code_retention_period = 10;
|
||||
let validation_upgrade_delay = 5;
|
||||
let validation_upgrade_frequency = 10;
|
||||
|
||||
let original_code = ValidationCode(vec![1, 2, 3]);
|
||||
let paras = vec![(
|
||||
@@ -1349,6 +1468,7 @@ mod tests {
|
||||
config: HostConfiguration {
|
||||
code_retention_period,
|
||||
validation_upgrade_delay,
|
||||
validation_upgrade_frequency,
|
||||
..Default::default()
|
||||
},
|
||||
..Default::default()
|
||||
@@ -1368,12 +1488,23 @@ mod tests {
|
||||
let expected_at = {
|
||||
// this parablock is in the context of block 1.
|
||||
let expected_at = 1 + validation_upgrade_delay;
|
||||
Paras::schedule_code_upgrade(para_id, new_code.clone(), expected_at);
|
||||
let next_possible_upgrade_at = 1 + validation_upgrade_frequency;
|
||||
Paras::schedule_code_upgrade(
|
||||
para_id,
|
||||
new_code.clone(),
|
||||
1,
|
||||
&Configuration::config(),
|
||||
);
|
||||
Paras::note_new_head(para_id, Default::default(), 1);
|
||||
|
||||
assert!(Paras::past_code_meta(¶_id).most_recent_change().is_none());
|
||||
assert_eq!(<Paras as Store>::FutureCodeUpgrades::get(¶_id), Some(expected_at));
|
||||
assert_eq!(<Paras as Store>::FutureCodeHash::get(¶_id), Some(new_code.hash()));
|
||||
assert_eq!(<Paras as Store>::UpcomingUpgrades::get(), vec![(para_id, expected_at)]);
|
||||
assert_eq!(
|
||||
<Paras as Store>::UpgradeCooldowns::get(),
|
||||
vec![(para_id, next_possible_upgrade_at)]
|
||||
);
|
||||
assert_eq!(Paras::current_code(¶_id), Some(original_code.clone()));
|
||||
check_code_is_stored(&original_code);
|
||||
check_code_is_stored(&new_code);
|
||||
@@ -1391,6 +1522,10 @@ mod tests {
|
||||
assert!(Paras::past_code_meta(¶_id).most_recent_change().is_none());
|
||||
assert_eq!(<Paras as Store>::FutureCodeUpgrades::get(¶_id), Some(expected_at));
|
||||
assert_eq!(<Paras as Store>::FutureCodeHash::get(¶_id), Some(new_code.hash()));
|
||||
assert_eq!(
|
||||
<Paras as Store>::UpgradeGoAheadSignal::get(¶_id),
|
||||
Some(UpgradeGoAhead::GoAhead)
|
||||
);
|
||||
assert_eq!(Paras::current_code(¶_id), Some(original_code.clone()));
|
||||
check_code_is_stored(&original_code);
|
||||
check_code_is_stored(&new_code);
|
||||
@@ -1410,6 +1545,7 @@ mod tests {
|
||||
);
|
||||
assert!(<Paras as Store>::FutureCodeUpgrades::get(¶_id).is_none());
|
||||
assert!(<Paras as Store>::FutureCodeHash::get(¶_id).is_none());
|
||||
assert!(<Paras as Store>::UpgradeGoAheadSignal::get(¶_id).is_none());
|
||||
assert_eq!(Paras::current_code(¶_id), Some(new_code.clone()));
|
||||
check_code_is_stored(&original_code);
|
||||
check_code_is_stored(&new_code);
|
||||
@@ -1421,6 +1557,7 @@ mod tests {
|
||||
fn code_upgrade_applied_after_delay_even_when_late() {
|
||||
let code_retention_period = 10;
|
||||
let validation_upgrade_delay = 5;
|
||||
let validation_upgrade_frequency = 10;
|
||||
|
||||
let original_code = ValidationCode(vec![1, 2, 3]);
|
||||
let paras = vec![(
|
||||
@@ -1438,6 +1575,7 @@ mod tests {
|
||||
config: HostConfiguration {
|
||||
code_retention_period,
|
||||
validation_upgrade_delay,
|
||||
validation_upgrade_frequency,
|
||||
..Default::default()
|
||||
},
|
||||
..Default::default()
|
||||
@@ -1455,12 +1593,24 @@ mod tests {
|
||||
let expected_at = {
|
||||
// this parablock is in the context of block 1.
|
||||
let expected_at = 1 + validation_upgrade_delay;
|
||||
Paras::schedule_code_upgrade(para_id, new_code.clone(), expected_at);
|
||||
let next_possible_upgrade_at = 1 + validation_upgrade_frequency;
|
||||
Paras::schedule_code_upgrade(
|
||||
para_id,
|
||||
new_code.clone(),
|
||||
1,
|
||||
&Configuration::config(),
|
||||
);
|
||||
Paras::note_new_head(para_id, Default::default(), 1);
|
||||
|
||||
assert!(Paras::past_code_meta(¶_id).most_recent_change().is_none());
|
||||
assert_eq!(<Paras as Store>::FutureCodeUpgrades::get(¶_id), Some(expected_at));
|
||||
assert_eq!(<Paras as Store>::FutureCodeHash::get(¶_id), Some(new_code.hash()));
|
||||
assert_eq!(<Paras as Store>::UpcomingUpgrades::get(), vec![(para_id, expected_at)]);
|
||||
assert_eq!(
|
||||
<Paras as Store>::UpgradeCooldowns::get(),
|
||||
vec![(para_id, next_possible_upgrade_at)]
|
||||
);
|
||||
assert!(<Paras as Store>::UpgradeGoAheadSignal::get(¶_id).is_none());
|
||||
assert_eq!(Paras::current_code(¶_id), Some(original_code.clone()));
|
||||
|
||||
expected_at
|
||||
@@ -1471,6 +1621,12 @@ mod tests {
|
||||
// the candidate is in the context of the first descendant of `expected_at`, and triggers
|
||||
// the upgrade.
|
||||
{
|
||||
// The signal should be set to go-ahead until the new head is actually processed.
|
||||
assert_eq!(
|
||||
<Paras as Store>::UpgradeGoAheadSignal::get(¶_id),
|
||||
Some(UpgradeGoAhead::GoAhead),
|
||||
);
|
||||
|
||||
Paras::note_new_head(para_id, Default::default(), expected_at + 4);
|
||||
|
||||
assert_eq!(Paras::past_code_meta(¶_id).most_recent_change(), Some(expected_at),);
|
||||
@@ -1502,6 +1658,7 @@ mod tests {
|
||||
);
|
||||
assert!(<Paras as Store>::FutureCodeUpgrades::get(¶_id).is_none());
|
||||
assert!(<Paras as Store>::FutureCodeHash::get(¶_id).is_none());
|
||||
assert!(<Paras as Store>::UpgradeGoAheadSignal::get(¶_id).is_none());
|
||||
assert_eq!(Paras::current_code(¶_id), Some(new_code.clone()));
|
||||
}
|
||||
});
|
||||
@@ -1510,6 +1667,7 @@ mod tests {
|
||||
#[test]
|
||||
fn submit_code_change_when_not_allowed_is_err() {
|
||||
let code_retention_period = 10;
|
||||
let validation_upgrade_delay = 7;
|
||||
|
||||
let paras = vec![(
|
||||
0u32.into(),
|
||||
@@ -1523,7 +1681,11 @@ mod tests {
|
||||
let genesis_config = MockGenesisConfig {
|
||||
paras: GenesisConfig { paras, ..Default::default() },
|
||||
configuration: crate::configuration::GenesisConfig {
|
||||
config: HostConfiguration { code_retention_period, ..Default::default() },
|
||||
config: HostConfiguration {
|
||||
code_retention_period,
|
||||
validation_upgrade_delay,
|
||||
..Default::default()
|
||||
},
|
||||
..Default::default()
|
||||
},
|
||||
..Default::default()
|
||||
@@ -1535,14 +1697,22 @@ mod tests {
|
||||
let newer_code = ValidationCode(vec![4, 5, 6, 7]);
|
||||
|
||||
run_to_block(1, None);
|
||||
|
||||
Paras::schedule_code_upgrade(para_id, new_code.clone(), 8);
|
||||
assert_eq!(<Paras as Store>::FutureCodeUpgrades::get(¶_id), Some(8));
|
||||
Paras::schedule_code_upgrade(para_id, new_code.clone(), 1, &Configuration::config());
|
||||
assert_eq!(
|
||||
<Paras as Store>::FutureCodeUpgrades::get(¶_id),
|
||||
Some(1 + validation_upgrade_delay)
|
||||
);
|
||||
assert_eq!(<Paras as Store>::FutureCodeHash::get(¶_id), Some(new_code.hash()));
|
||||
check_code_is_stored(&new_code);
|
||||
|
||||
Paras::schedule_code_upgrade(para_id, newer_code.clone(), 10);
|
||||
assert_eq!(<Paras as Store>::FutureCodeUpgrades::get(¶_id), Some(8));
|
||||
// We expect that if an upgrade is signalled while there is already one pending we just
|
||||
// ignore it. Note that this is only true from perspective of this module.
|
||||
run_to_block(2, None);
|
||||
Paras::schedule_code_upgrade(para_id, newer_code.clone(), 2, &Configuration::config());
|
||||
assert_eq!(
|
||||
<Paras as Store>::FutureCodeUpgrades::get(¶_id),
|
||||
Some(1 + validation_upgrade_delay), // did not change since the same assertion from the last time.
|
||||
);
|
||||
assert_eq!(<Paras as Store>::FutureCodeHash::get(¶_id), Some(new_code.hash()));
|
||||
check_code_is_not_stored(&newer_code);
|
||||
});
|
||||
@@ -1551,6 +1721,7 @@ mod tests {
|
||||
#[test]
|
||||
fn full_parachain_cleanup_storage() {
|
||||
let code_retention_period = 10;
|
||||
let validation_upgrade_delay = 1 + 5;
|
||||
|
||||
let original_code = ValidationCode(vec![1, 2, 3]);
|
||||
let paras = vec![(
|
||||
@@ -1565,7 +1736,11 @@ mod tests {
|
||||
let genesis_config = MockGenesisConfig {
|
||||
paras: GenesisConfig { paras, ..Default::default() },
|
||||
configuration: crate::configuration::GenesisConfig {
|
||||
config: HostConfiguration { code_retention_period, ..Default::default() },
|
||||
config: HostConfiguration {
|
||||
code_retention_period,
|
||||
validation_upgrade_delay,
|
||||
..Default::default()
|
||||
},
|
||||
..Default::default()
|
||||
},
|
||||
..Default::default()
|
||||
@@ -1583,8 +1758,13 @@ mod tests {
|
||||
|
||||
let expected_at = {
|
||||
// this parablock is in the context of block 1.
|
||||
let expected_at = 1 + 5;
|
||||
Paras::schedule_code_upgrade(para_id, new_code.clone(), expected_at);
|
||||
let expected_at = 1 + validation_upgrade_delay;
|
||||
Paras::schedule_code_upgrade(
|
||||
para_id,
|
||||
new_code.clone(),
|
||||
1,
|
||||
&Configuration::config(),
|
||||
);
|
||||
Paras::note_new_head(para_id, Default::default(), 1);
|
||||
|
||||
assert!(Paras::past_code_meta(¶_id).most_recent_change().is_none());
|
||||
@@ -1729,6 +1909,7 @@ mod tests {
|
||||
#[test]
|
||||
fn code_hash_at_with_intermediate() {
|
||||
let code_retention_period = 10;
|
||||
let validation_upgrade_delay = 10;
|
||||
|
||||
let paras = vec![(
|
||||
0u32.into(),
|
||||
@@ -1742,7 +1923,11 @@ mod tests {
|
||||
let genesis_config = MockGenesisConfig {
|
||||
paras: GenesisConfig { paras, ..Default::default() },
|
||||
configuration: crate::configuration::GenesisConfig {
|
||||
config: HostConfiguration { code_retention_period, ..Default::default() },
|
||||
config: HostConfiguration {
|
||||
code_retention_period,
|
||||
validation_upgrade_delay,
|
||||
..Default::default()
|
||||
},
|
||||
..Default::default()
|
||||
},
|
||||
..Default::default()
|
||||
@@ -1752,7 +1937,10 @@ mod tests {
|
||||
let para_id = ParaId::from(0);
|
||||
let old_code: ValidationCode = vec![1, 2, 3].into();
|
||||
let new_code: ValidationCode = vec![4, 5, 6].into();
|
||||
Paras::schedule_code_upgrade(para_id, new_code.clone(), 10);
|
||||
|
||||
// expected_at = 10 = 0 + validation_upgrade_delay = 0 + 10
|
||||
Paras::schedule_code_upgrade(para_id, new_code.clone(), 0, &Configuration::config());
|
||||
assert_eq!(<Paras as Store>::FutureCodeUpgrades::get(¶_id), Some(10));
|
||||
|
||||
// no intermediate, falls back on current/past.
|
||||
assert_eq!(fetch_validation_code_at(para_id, 1, None), Some(old_code.clone()));
|
||||
@@ -1779,6 +1967,7 @@ mod tests {
|
||||
#[test]
|
||||
fn code_hash_at_returns_up_to_end_of_code_retention_period() {
|
||||
let code_retention_period = 10;
|
||||
let validation_upgrade_delay = 2;
|
||||
|
||||
let paras = vec![(
|
||||
0u32.into(),
|
||||
@@ -1792,7 +1981,11 @@ mod tests {
|
||||
let genesis_config = MockGenesisConfig {
|
||||
paras: GenesisConfig { paras, ..Default::default() },
|
||||
configuration: crate::configuration::GenesisConfig {
|
||||
config: HostConfiguration { code_retention_period, ..Default::default() },
|
||||
config: HostConfiguration {
|
||||
code_retention_period,
|
||||
validation_upgrade_delay,
|
||||
..Default::default()
|
||||
},
|
||||
..Default::default()
|
||||
},
|
||||
..Default::default()
|
||||
@@ -1802,7 +1995,7 @@ mod tests {
|
||||
let para_id = ParaId::from(0);
|
||||
let old_code: ValidationCode = vec![1, 2, 3].into();
|
||||
let new_code: ValidationCode = vec![4, 5, 6].into();
|
||||
Paras::schedule_code_upgrade(para_id, new_code.clone(), 2);
|
||||
Paras::schedule_code_upgrade(para_id, new_code.clone(), 0, &Configuration::config());
|
||||
|
||||
run_to_block(10, None);
|
||||
Paras::note_new_head(para_id, Default::default(), 7);
|
||||
@@ -1858,4 +2051,36 @@ mod tests {
|
||||
assert!(!<Paras as Store>::CodeByHashRefs::contains_key(code.hash()));
|
||||
});
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn verify_upgrade_go_ahead_signal_is_externally_accessible() {
|
||||
use primitives::v1::well_known_keys;
|
||||
|
||||
let a = ParaId::from(2020);
|
||||
|
||||
new_test_ext(Default::default()).execute_with(|| {
|
||||
assert!(sp_io::storage::get(&well_known_keys::upgrade_go_ahead_signal(a)).is_none());
|
||||
<Paras as Store>::UpgradeGoAheadSignal::insert(&a, UpgradeGoAhead::GoAhead);
|
||||
assert_eq!(
|
||||
sp_io::storage::get(&well_known_keys::upgrade_go_ahead_signal(a)).unwrap(),
|
||||
vec![1u8],
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn verify_upgrade_restriction_signal_is_externally_accessible() {
|
||||
use primitives::v1::well_known_keys;
|
||||
|
||||
let a = ParaId::from(2020);
|
||||
|
||||
new_test_ext(Default::default()).execute_with(|| {
|
||||
assert!(sp_io::storage::get(&well_known_keys::upgrade_restriction_signal(a)).is_none());
|
||||
<Paras as Store>::UpgradeRestrictionSignal::insert(&a, UpgradeRestriction::Present);
|
||||
assert_eq!(
|
||||
sp_io::storage::get(&well_known_keys::upgrade_restriction_signal(a)).unwrap(),
|
||||
vec![0],
|
||||
);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user