mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 12:51:02 +00:00
262574fc49
* update primitives * correct parent_head field * make hrmp field pub * refactor validation data: runtime * refactor validation data: messages * add arguments to full_validation_data runtime API * port runtime API * mostly port over candidate validation * remove some parameters from ValidationParams * guide: update candidate validation * update candidate outputs * update ValidationOutputs in primitives * port over candidate validation * add a new test for no-transient behavior * update util runtime API wrappers * candidate backing * fix missing imports * change some fields of validation data around * runtime API impl * update candidate validation * fix backing tests * grumbles from review * fix av-store tests * fix some more crates * fix provisioner tests * fix availability distribution tests * port collation-generation to new validation data * fix overseer tests * Update roadmap/implementers-guide/src/node/utility/candidate-validation.md Co-authored-by: Peter Goodspeed-Niklaus <coriolinus@users.noreply.github.com> Co-authored-by: Peter Goodspeed-Niklaus <coriolinus@users.noreply.github.com>
159 lines
4.2 KiB
Rust
159 lines
4.2 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::primitives::{
|
|
RelayChainBlockNumber,
|
|
BlockData as GenericBlockData,
|
|
HeadData as GenericHeadData,
|
|
ValidationParams,
|
|
};
|
|
use codec::{Decode, Encode};
|
|
|
|
/// Head data for this parachain.
|
|
#[derive(Default, Clone, Encode, Decode)]
|
|
struct HeadData {
|
|
/// Block number
|
|
number: u64,
|
|
/// parent block keccak256
|
|
parent_hash: [u8; 32],
|
|
/// hash of post-execution state.
|
|
post_state: [u8; 32],
|
|
}
|
|
|
|
/// Block data for this parachain.
|
|
#[derive(Default, Clone, Encode, Decode)]
|
|
struct BlockData {
|
|
/// State to begin from.
|
|
state: u64,
|
|
/// Amount to add (overflowing)
|
|
add: u64,
|
|
}
|
|
|
|
fn hash_state(state: u64) -> [u8; 32] {
|
|
tiny_keccak::keccak256(state.encode().as_slice())
|
|
}
|
|
|
|
fn hash_head(head: &HeadData) -> [u8; 32] {
|
|
tiny_keccak::keccak256(head.encode().as_slice())
|
|
}
|
|
|
|
#[test]
|
|
pub fn execute_good_on_parent() {
|
|
let parent_head = HeadData {
|
|
number: 0,
|
|
parent_hash: [0; 32],
|
|
post_state: hash_state(0),
|
|
};
|
|
|
|
let block_data = BlockData {
|
|
state: 0,
|
|
add: 512,
|
|
};
|
|
|
|
let pool = parachain::wasm_executor::ValidationPool::new();
|
|
|
|
let ret = parachain::wasm_executor::validate_candidate(
|
|
adder::wasm_binary_unwrap(),
|
|
ValidationParams {
|
|
parent_head: GenericHeadData(parent_head.encode()),
|
|
block_data: GenericBlockData(block_data.encode()),
|
|
relay_chain_height: 1,
|
|
hrmp_mqc_heads: Vec::new(),
|
|
},
|
|
parachain::wasm_executor::ExecutionMode::RemoteTest(&pool),
|
|
sp_core::testing::TaskExecutor::new(),
|
|
).unwrap();
|
|
|
|
let new_head = HeadData::decode(&mut &ret.head_data.0[..]).unwrap();
|
|
|
|
assert_eq!(new_head.number, 1);
|
|
assert_eq!(new_head.parent_hash, hash_head(&parent_head));
|
|
assert_eq!(new_head.post_state, hash_state(512));
|
|
}
|
|
|
|
#[test]
|
|
fn execute_good_chain_on_parent() {
|
|
let mut number = 0;
|
|
let mut parent_hash = [0; 32];
|
|
let mut last_state = 0;
|
|
let pool = parachain::wasm_executor::ValidationPool::new();
|
|
|
|
for add in 0..10 {
|
|
let parent_head = HeadData {
|
|
number,
|
|
parent_hash,
|
|
post_state: hash_state(last_state),
|
|
};
|
|
|
|
let block_data = BlockData {
|
|
state: last_state,
|
|
add,
|
|
};
|
|
|
|
let ret = parachain::wasm_executor::validate_candidate(
|
|
adder::wasm_binary_unwrap(),
|
|
ValidationParams {
|
|
parent_head: GenericHeadData(parent_head.encode()),
|
|
block_data: GenericBlockData(block_data.encode()),
|
|
relay_chain_height: number as RelayChainBlockNumber + 1,
|
|
hrmp_mqc_heads: Vec::new(),
|
|
},
|
|
parachain::wasm_executor::ExecutionMode::RemoteTest(&pool),
|
|
sp_core::testing::TaskExecutor::new(),
|
|
).unwrap();
|
|
|
|
let new_head = HeadData::decode(&mut &ret.head_data.0[..]).unwrap();
|
|
|
|
assert_eq!(new_head.number, number + 1);
|
|
assert_eq!(new_head.parent_hash, hash_head(&parent_head));
|
|
assert_eq!(new_head.post_state, hash_state(last_state + add));
|
|
|
|
number += 1;
|
|
parent_hash = hash_head(&new_head);
|
|
last_state += add;
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn execute_bad_on_parent() {
|
|
let pool = parachain::wasm_executor::ValidationPool::new();
|
|
|
|
let parent_head = HeadData {
|
|
number: 0,
|
|
parent_hash: [0; 32],
|
|
post_state: hash_state(0),
|
|
};
|
|
|
|
let block_data = BlockData {
|
|
state: 256, // start state is wrong.
|
|
add: 256,
|
|
};
|
|
|
|
let _ret = parachain::wasm_executor::validate_candidate(
|
|
adder::wasm_binary_unwrap(),
|
|
ValidationParams {
|
|
parent_head: GenericHeadData(parent_head.encode()),
|
|
block_data: GenericBlockData(block_data.encode()),
|
|
relay_chain_height: 1,
|
|
hrmp_mqc_heads: Vec::new(),
|
|
},
|
|
parachain::wasm_executor::ExecutionMode::RemoteTest(&pool),
|
|
sp_core::testing::TaskExecutor::new(),
|
|
).unwrap_err();
|
|
}
|