mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-04 08:07:24 +00:00
edd81bf6a5
* TODOs * Add auctions.rs, comment on changes needed. * Remove cruft from slots * Remove more from auctions.rs * More logic drafting in slots. * More logic in slots.rs * patch some errors * more fixes * last nit * Cleanups in slots.rs * Cleanups in slots.rs * patches * make build * crowdloan to new api * auction compile * Use ParaId instead of FundIndex in Crowdloan (#2303) * use paraid instead of fundindex * Update crowdloan.rs * check caller is manager * Auction tests and fix build warnings. * Configurable origin for initiating auctions * Remove on_finalize * #2303 (manual merge) * Tests for Slots * some registrar tests * Apply suggestions from code review Co-authored-by: Guillaume Thiolliere <gui.thiolliere@gmail.com> * Update runtime/common/src/slots.rs Co-authored-by: Guillaume Thiolliere <gui.thiolliere@gmail.com> * Slots uses Registrar for CurrentChains * swap works test * on swap impl * traitify parachain cleanup * explicit lifecycle tracking for paras * initial implementation of lifecycles and upgrades * clean up a bit * Update runtime/common/src/slots.rs Co-authored-by: Guillaume Thiolliere <gui.thiolliere@gmail.com> * fix doc comment * more rigid lifecycle checks * include paras which are transitioning, and lifecycle query * format guide * update api * update guide * explicit outgoing state, fix genesis * handle outgoing with transitioning paras * Revert "explicit lifecycle tracking for paras" This reverts commit 4177af7ba473bbd9c26bccd861793f25265b6657. * remove lifecycle tracking from registrar * do not include transitioning paras in identifier * Update paras_registrar.rs * final patches to registrar * Fix test * use noop in test * clean up pending swap on deregistration * finish registrar tests * Update roadmap/implementers-guide/src/runtime/paras.md * Update roadmap/implementers-guide/src/runtime/paras.md * Update roadmap/implementers-guide/src/runtime/paras.md * Apply suggestions from code review * Use matches macro * Correct terms * Apply suggestions from code review * Remove direct need for Slots and Registrar from Crowdloan * Rejig things slightly * actions queue * Revert "actions queue" This reverts commit b2e9011ec8937d6c73e99292416c9692aeb30f73. * Traitify Auction interface. * Mockups and initial code for Crowdloan testing * One test... * collapse onboarding state * fix some crowdloan tests * one more * start benchmarks for auctions * benchmark bid * fix more crowdloan tests * onboard and begin retirement no longer exist * Revert "onboard and begin retirement no longer exist" This reverts commit 2e100fd94e3540bff5f172328b5d917896f1c6fc. * Simplify crowdloan and make it work. * Fixes * fix some * finish merge fixes * fix refund bug in auctions * Add traits to Registrar for tests and benchmarks * fix more auction benchmarks * Fix TestAuctioneer * finish crowdloan benchmarks * start setting up full integration tests * expand integration tests * finish basic integration test * add more integration tests * begin slots benchmarks * start paras registrar benchmarks * fix merge * fix tests * clean up paras registrar * remove println * remove outdated cleanup config * update benchmarks * Add WeightInfo * enable runtime-benchmarks feature flag * complete swap benchmark * add parachains and onboarding into westend * add benchmarks and genesis * cargo run --release --features=runtime-benchmarks -- benchmark --chain=westend-dev --steps=50 --repeat=20 --pallet=auctions --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/westend/src/weights/ * cargo run --release --features=runtime-benchmarks -- benchmark --chain=westend-dev --steps=50 --repeat=20 --pallet=slots --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/westend/src/weights/ * fix benchmark execution * cargo run --release --features=runtime-benchmarks -- benchmark --chain=westend-dev --steps=50 --repeat=20 --pallet=crowdloan --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/westend/src/weights/ * cargo run --release --features=runtime-benchmarks -- benchmark --chain=westend-dev --steps=50 --repeat=20 --pallet=paras_registrar --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/westend/src/weights/ * Use `new_raise_len` in crowdloan on_initialize * Update paras_registrar.rs * fix westend merge * impl on_swap for crowdloan * Check fund exists before create * update for crowdloan sig * cargo run --release --features=runtime-benchmarks -- benchmark --chain=westend-dev --steps=50 --repeat=20 --pallet=crowdloan --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/westend/src/weights/ * slots on_initialize * use integration tests environment for benchmarks * fix hrmp event * auction on_initialize * cargo run --release --features=runtime-benchmarks -- benchmark --chain=westend-dev --steps=50 --repeat=20 --pallet=auctions --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/westend/src/weights/ * fix storage name in auctions * add auction_index to winning data * winning data takes into account current auction index * remove println * cargo run --release --features=runtime-benchmarks -- benchmark --chain=westend-dev --steps=50 --repeat=20 --pallet=auctions --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/westend/src/weights/ * cargo run --release --features=runtime-benchmarks -- benchmark --chain=westend-dev --steps=50 --repeat=20 --pallet=slots --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/westend/src/weights/ * Revert "add auction_index to winning data" * PastRandomness. * Fixes * Use new randomness * fix use of randomness in auctions and runtime config * expose consts * fix auction test * add deposit per byte for para registration * basic swap integration test * make swap test more comprehensive * Add WinningVec for easier retrieval in the front-end. * clean up `WinningVec` at the end * Add event for when a new best bid comes in * Fix propagation of winners in ending period * fix benchmarks, refund weight in dissolve * fix unused * remove some TODOs * setup opaque keys for paras in westend * cargo run --release --features=runtime-benchmarks -- benchmark --chain=westend-dev --steps=50 --repeat=20 --pallet=crowdloan --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/westend/src/weights/ * remove unused * cargo run --release --features=runtime-benchmarks -- benchmark --chain=westend-dev --steps=50 --repeat=20 --pallet=auctions --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/westend/src/weights/ * back to regular runtime config * use saturating math where user input can be * better first slot check * Update runtime/common/src/claims.rs * update westend onswap impl Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com> Co-authored-by: Guillaume Thiolliere <gui.thiolliere@gmail.com> Co-authored-by: Parity Benchmarking Bot <admin@parity.io>
185 lines
5.3 KiB
Rust
185 lines
5.3 KiB
Rust
// Copyright 2019-2021 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/>.
|
|
|
|
//! Mocking utilities for testing.
|
|
|
|
use std::{cell::RefCell, collections::HashMap};
|
|
use parity_scale_codec::{Encode, Decode};
|
|
use sp_runtime::traits::SaturatedConversion;
|
|
use frame_support::dispatch::DispatchResult;
|
|
use primitives::v1::{HeadData, ValidationCode, Id as ParaId};
|
|
use crate::traits::Registrar;
|
|
|
|
thread_local! {
|
|
static OPERATIONS: RefCell<Vec<(ParaId, u32, bool)>> = RefCell::new(Vec::new());
|
|
static PARACHAINS: RefCell<Vec<ParaId>> = RefCell::new(Vec::new());
|
|
static PARATHREADS: RefCell<Vec<ParaId>> = RefCell::new(Vec::new());
|
|
static MANAGERS: RefCell<HashMap<ParaId, Vec<u8>>> = RefCell::new(HashMap::new());
|
|
}
|
|
|
|
pub struct TestRegistrar<T>(sp_std::marker::PhantomData<T>);
|
|
|
|
impl<T: frame_system::Config> Registrar for TestRegistrar<T> {
|
|
type AccountId = T::AccountId;
|
|
|
|
fn manager_of(id: ParaId) -> Option<Self::AccountId> {
|
|
MANAGERS.with(|x| x.borrow().get(&id).and_then(|v| T::AccountId::decode(&mut &v[..]).ok()))
|
|
}
|
|
|
|
fn parachains() -> Vec<ParaId> {
|
|
PARACHAINS.with(|x| x.borrow().clone())
|
|
}
|
|
|
|
fn is_parathread(id: ParaId) -> bool {
|
|
PARATHREADS.with(|x| x.borrow().binary_search(&id).is_ok())
|
|
}
|
|
|
|
fn register(
|
|
manager: Self::AccountId,
|
|
id: ParaId,
|
|
_genesis_head: HeadData,
|
|
_validation_code: ValidationCode,
|
|
) -> DispatchResult {
|
|
// Should not be parachain.
|
|
PARACHAINS.with(|x| {
|
|
let parachains = x.borrow_mut();
|
|
match parachains.binary_search(&id) {
|
|
Ok(_) => panic!("Already Parachain"),
|
|
Err(_) => {},
|
|
}
|
|
});
|
|
// Should not be parathread, then make it.
|
|
PARATHREADS.with(|x| {
|
|
let mut parathreads = x.borrow_mut();
|
|
match parathreads.binary_search(&id) {
|
|
Ok(_) => panic!("Already Parathread"),
|
|
Err(i) => parathreads.insert(i, id),
|
|
}
|
|
});
|
|
MANAGERS.with(|x| x.borrow_mut().insert(id, manager.encode()));
|
|
Ok(())
|
|
}
|
|
|
|
fn deregister(id: ParaId) -> DispatchResult {
|
|
// Should not be parachain.
|
|
PARACHAINS.with(|x| {
|
|
let mut parachains = x.borrow_mut();
|
|
match parachains.binary_search(&id) {
|
|
Ok(i) => {
|
|
parachains.remove(i);
|
|
},
|
|
Err(_) => {},
|
|
}
|
|
});
|
|
// Remove from parathread.
|
|
PARATHREADS.with(|x| {
|
|
let mut parathreads = x.borrow_mut();
|
|
match parathreads.binary_search(&id) {
|
|
Ok(i) => {
|
|
parathreads.remove(i);
|
|
},
|
|
Err(_) => {},
|
|
}
|
|
});
|
|
MANAGERS.with(|x| x.borrow_mut().remove(&id));
|
|
Ok(())
|
|
}
|
|
|
|
fn make_parachain(id: ParaId) -> DispatchResult {
|
|
OPERATIONS.with(|x| x.borrow_mut().push((id, frame_system::Module::<T>::block_number().saturated_into(), true)));
|
|
PARATHREADS.with(|x| {
|
|
let mut parathreads = x.borrow_mut();
|
|
match parathreads.binary_search(&id) {
|
|
Ok(i) => {
|
|
parathreads.remove(i);
|
|
},
|
|
Err(_) => panic!("not parathread, so cannot `make_parachain`"),
|
|
}
|
|
});
|
|
PARACHAINS.with(|x| {
|
|
let mut parachains = x.borrow_mut();
|
|
match parachains.binary_search(&id) {
|
|
Ok(_) => {},
|
|
Err(i) => parachains.insert(i, id),
|
|
}
|
|
});
|
|
Ok(())
|
|
}
|
|
fn make_parathread(id: ParaId) -> DispatchResult {
|
|
OPERATIONS.with(|x| x.borrow_mut().push((id, frame_system::Module::<T>::block_number().saturated_into(), false)));
|
|
PARACHAINS.with(|x| {
|
|
let mut parachains = x.borrow_mut();
|
|
match parachains.binary_search(&id) {
|
|
Ok(i) => {
|
|
parachains.remove(i);
|
|
},
|
|
Err(_) => panic!("not parachain, so cannot `make_parathread`"),
|
|
}
|
|
});
|
|
PARATHREADS.with(|x| {
|
|
let mut parathreads = x.borrow_mut();
|
|
match parathreads.binary_search(&id) {
|
|
Ok(_) => {},
|
|
Err(i) => parathreads.insert(i, id),
|
|
}
|
|
});
|
|
Ok(())
|
|
}
|
|
|
|
#[cfg(test)]
|
|
fn worst_head_data() -> HeadData {
|
|
vec![0u8; 1000].into()
|
|
}
|
|
|
|
#[cfg(test)]
|
|
fn worst_validation_code() -> ValidationCode {
|
|
let mut validation_code = vec![0u8; 1000];
|
|
// Replace first bytes of code with "WASM_MAGIC" to pass validation test.
|
|
let _ = validation_code.splice(
|
|
..crate::WASM_MAGIC.len(),
|
|
crate::WASM_MAGIC.iter().cloned(),
|
|
).collect::<Vec<_>>();
|
|
validation_code.into()
|
|
}
|
|
|
|
#[cfg(test)]
|
|
fn execute_pending_transitions() {}
|
|
}
|
|
|
|
impl<T: frame_system::Config> TestRegistrar<T> {
|
|
pub fn operations() -> Vec<(ParaId, T::BlockNumber, bool)> {
|
|
OPERATIONS.with(|x| x.borrow().iter().map(|(p, b, c)| (*p, (*b).into(), *c)).collect::<Vec<_>>())
|
|
}
|
|
|
|
#[allow(dead_code)]
|
|
pub fn parachains() -> Vec<ParaId> {
|
|
PARACHAINS.with(|x| x.borrow().clone())
|
|
}
|
|
|
|
#[allow(dead_code)]
|
|
pub fn parathreads() -> Vec<ParaId> {
|
|
PARATHREADS.with(|x| x.borrow().clone())
|
|
}
|
|
|
|
#[allow(dead_code)]
|
|
pub fn clear_storage() {
|
|
OPERATIONS.with(|x| x.borrow_mut().clear());
|
|
PARACHAINS.with(|x| x.borrow_mut().clear());
|
|
PARATHREADS.with(|x| x.borrow_mut().clear());
|
|
MANAGERS.with(|x| x.borrow_mut().clear());
|
|
}
|
|
}
|