Newer
Older
//! Mocks for the vesting module.
#![cfg(test)]
use sp_runtime::{testing::Header, traits::IdentityLookup};
parameter_types! {
pub const BlockHashCount: u64 = 250;
}
type Index = u64;
type BlockNumber = u64;
type Hash = H256;
type Hashing = ::sp_runtime::traits::BlakeTwo256;
type AccountId = AccountId;
type Lookup = IdentityLookup<Self::AccountId>;
type Header = Header;
type BlockWeights = ();
type BlockLength = ();
type AccountData = pallet_balances::AccountData<u64>;
type OnNewAccount = ();
}
type Balance = u64;
parameter_types! {
pub const ExistentialDeposit: u64 = 1;
pub struct EnsureAliceOrBob;
impl EnsureOrigin<Origin> for EnsureAliceOrBob {
type Success = AccountId;
fn try_origin(o: Origin) -> Result<Self::Success, Origin> {
Into::<Result<RawOrigin<AccountId>, Origin>>::into(o).and_then(|o| match o {
RawOrigin::Signed(ALICE) => Ok(ALICE),
RawOrigin::Signed(BOB) => Ok(BOB),
r => Err(Origin::from(r)),
})
}
#[cfg(feature = "runtime-benchmarks")]
fn successful_origin() -> Origin {
Origin::from(RawOrigin::Signed(Default::default()))
}
}
type VestedTransferOrigin = EnsureAliceOrBob;
pub type Block = sp_runtime::generic::Block<Header, UncheckedExtrinsic>;
pub type UncheckedExtrinsic = sp_runtime::generic::UncheckedExtrinsic<u32, Call, u32, ()>;
construct_runtime!(
pub enum Runtime where
Block = Block,
NodeBlock = Block,
UncheckedExtrinsic = UncheckedExtrinsic,
{
System: frame_system::{Module, Call, Storage, Config, Event<T>},
Vesting: vesting::{Module, Storage, Call, Event<T>, Config<T>},
PalletBalances: pallet_balances::{Module, Call, Storage, Config<T>, Event<T>},
}
);
pub const ALICE: AccountId = 1;
pub const BOB: AccountId = 2;
pub const CHARLIE: AccountId = 3;
#[derive(Default)]
pub struct ExtBuilder;
pub fn build() -> sp_io::TestExternalities {
let mut t = frame_system::GenesisConfig::default()
.build_storage::<Runtime>()
.unwrap();
pallet_balances::GenesisConfig::<Runtime> {
balances: vec![(ALICE, 100), (CHARLIE, 30)],
}
.assimilate_storage(&mut t)
.unwrap();
vesting: vec![(CHARLIE, 2, 3, 4, 5)], // who, start, period, period_count, per_period
}
.assimilate_storage(&mut t)
.unwrap();
t.into()
}
}