mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 15:11:02 +00:00
10cec3b591
* upgrade primitives to allow changing validation function * set up storage schema for old parachains code * fix compilation errors * fix test compilation * add some tests for past code meta * most of the runtime logic for code upgrades * implement old-code pruning * add a couple tests * clean up remaining TODOs * add a whole bunch of tests for runtime functionality * remove unused function * fix runtime compilation * extract some primitives to parachain crate * add validation-code upgrades to validation params and result * extend validation params with code upgrade fields * provide maximums to validation params * port test-parachains * add a code-upgrader test-parachain and tests * fix collator tests * move test-parachains to own folder to work around compilation errors * fix test compilation * update the Cargo.lock * fix parachains tests * remove dbg! invocation * use new pool in code-upgrader * bump lockfile * link TODO to issue
225 lines
6.0 KiB
Rust
225 lines
6.0 KiB
Rust
// Copyright 2017-2020 Parity Technologies (UK) Ltd.
|
|
// This file is part of Polkadot.
|
|
|
|
// Polkadot is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Polkadot is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Basic parachain that adds a number as part of its state.
|
|
|
|
use parachain;
|
|
|
|
use crate::{
|
|
DummyExt,
|
|
parachain::primitives::{
|
|
BlockData as GenericBlockData,
|
|
HeadData as GenericHeadData,
|
|
ValidationParams, ValidationCode,
|
|
},
|
|
};
|
|
use codec::{Decode, Encode};
|
|
use code_upgrader::{hash_state, HeadData, BlockData, State};
|
|
|
|
const TEST_CODE: &[u8] = code_upgrader::WASM_BINARY;
|
|
|
|
#[test]
|
|
pub fn execute_good_no_upgrade() {
|
|
let pool = parachain::wasm_executor::ValidationPool::new();
|
|
|
|
let parent_head = HeadData {
|
|
number: 0,
|
|
parent_hash: [0; 32],
|
|
post_state: hash_state(&State::default()),
|
|
};
|
|
|
|
let block_data = BlockData {
|
|
state: State::default(),
|
|
new_validation_code: None,
|
|
};
|
|
|
|
let ret = parachain::wasm_executor::validate_candidate(
|
|
TEST_CODE,
|
|
ValidationParams {
|
|
parent_head: GenericHeadData(parent_head.encode()),
|
|
block_data: GenericBlockData(block_data.encode()),
|
|
max_code_size: 1024,
|
|
max_head_data_size: 1024,
|
|
relay_chain_height: 1,
|
|
code_upgrade_allowed: None,
|
|
},
|
|
DummyExt,
|
|
parachain::wasm_executor::ExecutionMode::RemoteTest(&pool),
|
|
).unwrap();
|
|
|
|
let new_head = HeadData::decode(&mut &ret.head_data.0[..]).unwrap();
|
|
|
|
assert!(ret.new_validation_code.is_none());
|
|
assert_eq!(new_head.number, 1);
|
|
assert_eq!(new_head.parent_hash, parent_head.hash());
|
|
assert_eq!(new_head.post_state, hash_state(&State::default()));
|
|
}
|
|
|
|
#[test]
|
|
pub fn execute_good_with_upgrade() {
|
|
let pool = parachain::wasm_executor::ValidationPool::new();
|
|
|
|
let parent_head = HeadData {
|
|
number: 0,
|
|
parent_hash: [0; 32],
|
|
post_state: hash_state(&State::default()),
|
|
};
|
|
|
|
let block_data = BlockData {
|
|
state: State::default(),
|
|
new_validation_code: Some(ValidationCode(vec![1, 2, 3])),
|
|
};
|
|
|
|
let ret = parachain::wasm_executor::validate_candidate(
|
|
TEST_CODE,
|
|
ValidationParams {
|
|
parent_head: GenericHeadData(parent_head.encode()),
|
|
block_data: GenericBlockData(block_data.encode()),
|
|
max_code_size: 1024,
|
|
max_head_data_size: 1024,
|
|
relay_chain_height: 1,
|
|
code_upgrade_allowed: Some(20),
|
|
},
|
|
DummyExt,
|
|
parachain::wasm_executor::ExecutionMode::RemoteTest(&pool),
|
|
).unwrap();
|
|
|
|
let new_head = HeadData::decode(&mut &ret.head_data.0[..]).unwrap();
|
|
|
|
assert_eq!(ret.new_validation_code.unwrap(), ValidationCode(vec![1, 2, 3]));
|
|
assert_eq!(new_head.number, 1);
|
|
assert_eq!(new_head.parent_hash, parent_head.hash());
|
|
assert_eq!(
|
|
new_head.post_state,
|
|
hash_state(&State {
|
|
code: ValidationCode::default(),
|
|
pending_code: Some((ValidationCode(vec![1, 2, 3]), 20)),
|
|
}),
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic]
|
|
pub fn code_upgrade_not_allowed() {
|
|
let pool = parachain::wasm_executor::ValidationPool::new();
|
|
|
|
let parent_head = HeadData {
|
|
number: 0,
|
|
parent_hash: [0; 32],
|
|
post_state: hash_state(&State::default()),
|
|
};
|
|
|
|
let block_data = BlockData {
|
|
state: State::default(),
|
|
new_validation_code: Some(ValidationCode(vec![1, 2, 3])),
|
|
};
|
|
|
|
parachain::wasm_executor::validate_candidate(
|
|
TEST_CODE,
|
|
ValidationParams {
|
|
parent_head: GenericHeadData(parent_head.encode()),
|
|
block_data: GenericBlockData(block_data.encode()),
|
|
max_code_size: 1024,
|
|
max_head_data_size: 1024,
|
|
relay_chain_height: 1,
|
|
code_upgrade_allowed: None,
|
|
},
|
|
DummyExt,
|
|
parachain::wasm_executor::ExecutionMode::RemoteTest(&pool),
|
|
).unwrap();
|
|
}
|
|
|
|
#[test]
|
|
pub fn applies_code_upgrade_after_delay() {
|
|
let pool = parachain::wasm_executor::ValidationPool::new();
|
|
|
|
let (new_head, state) = {
|
|
let parent_head = HeadData {
|
|
number: 0,
|
|
parent_hash: [0; 32],
|
|
post_state: hash_state(&State::default()),
|
|
};
|
|
|
|
let block_data = BlockData {
|
|
state: State::default(),
|
|
new_validation_code: Some(ValidationCode(vec![1, 2, 3])),
|
|
};
|
|
|
|
let ret = parachain::wasm_executor::validate_candidate(
|
|
TEST_CODE,
|
|
ValidationParams {
|
|
parent_head: GenericHeadData(parent_head.encode()),
|
|
block_data: GenericBlockData(block_data.encode()),
|
|
max_code_size: 1024,
|
|
max_head_data_size: 1024,
|
|
relay_chain_height: 1,
|
|
code_upgrade_allowed: Some(2),
|
|
},
|
|
DummyExt,
|
|
parachain::wasm_executor::ExecutionMode::RemoteTest(&pool),
|
|
).unwrap();
|
|
|
|
let new_head = HeadData::decode(&mut &ret.head_data.0[..]).unwrap();
|
|
|
|
let parent_hash = parent_head.hash();
|
|
let state = State {
|
|
code: ValidationCode::default(),
|
|
pending_code: Some((ValidationCode(vec![1, 2, 3]), 2)),
|
|
};
|
|
assert_eq!(ret.new_validation_code.unwrap(), ValidationCode(vec![1, 2, 3]));
|
|
assert_eq!(new_head.number, 1);
|
|
assert_eq!(new_head.parent_hash, parent_hash);
|
|
assert_eq!(new_head.post_state, hash_state(&state));
|
|
|
|
(new_head, state)
|
|
};
|
|
|
|
{
|
|
let parent_head = new_head;
|
|
let block_data = BlockData {
|
|
state,
|
|
new_validation_code: None,
|
|
};
|
|
|
|
let ret = parachain::wasm_executor::validate_candidate(
|
|
TEST_CODE,
|
|
ValidationParams {
|
|
parent_head: GenericHeadData(parent_head.encode()),
|
|
block_data: GenericBlockData(block_data.encode()),
|
|
max_code_size: 1024,
|
|
max_head_data_size: 1024,
|
|
relay_chain_height: 2,
|
|
code_upgrade_allowed: None,
|
|
},
|
|
DummyExt,
|
|
parachain::wasm_executor::ExecutionMode::RemoteTest(&pool),
|
|
).unwrap();
|
|
|
|
let new_head = HeadData::decode(&mut &ret.head_data.0[..]).unwrap();
|
|
|
|
assert!(ret.new_validation_code.is_none());
|
|
assert_eq!(new_head.number, 2);
|
|
assert_eq!(new_head.parent_hash, parent_head.hash());
|
|
assert_eq!(
|
|
new_head.post_state,
|
|
hash_state(&State {
|
|
code: ValidationCode(vec![1, 2, 3]),
|
|
pending_code: None,
|
|
}),
|
|
);
|
|
}
|
|
}
|