Skip to content
Snippets Groups Projects
mock.rs 3.16 KiB
Newer Older
Shaopeng Wang's avatar
Shaopeng Wang committed
//! Mocks for the vesting module.

#![cfg(test)]

use frame_support::{impl_outer_event, impl_outer_origin, parameter_types};
use frame_system::RawOrigin;
Shaopeng Wang's avatar
Shaopeng Wang committed
use pallet_balances;
use sp_core::H256;
Shaopeng Wang's avatar
Shaopeng Wang committed
use sp_runtime::{testing::Header, traits::IdentityLookup};
Shaopeng Wang's avatar
Shaopeng Wang committed

use super::*;

impl_outer_origin! {
Xiliang Chen's avatar
Xiliang Chen committed
	pub enum Origin for Runtime {}
Shaopeng Wang's avatar
Shaopeng Wang committed
}

mod vesting {
	pub use crate::Event;
}
impl_outer_event! {
	pub enum TestEvent for Runtime {
Xiliang Chen's avatar
Xiliang Chen committed
		frame_system<T>,
		vesting<T>,
		pallet_balances<T>,
Shaopeng Wang's avatar
Shaopeng Wang committed
	}
}

// Workaround for https://github.com/rust-lang/rust/issues/26925 . Remove when sorted.
#[derive(Clone, PartialEq, Eq, Debug)]
pub struct Runtime;
parameter_types! {
	pub const BlockHashCount: u64 = 250;
}

pub type AccountId = u128;
Shaopeng Wang's avatar
Shaopeng Wang committed
impl frame_system::Config for Runtime {
Shaopeng Wang's avatar
Shaopeng Wang committed
	type Origin = Origin;
	type Call = ();
	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 Event = TestEvent;
	type BlockHashCount = BlockHashCount;
Shaopeng Wang's avatar
Shaopeng Wang committed
	type BlockWeights = ();
	type BlockLength = ();
Shaopeng Wang's avatar
Shaopeng Wang committed
	type Version = ();
	type PalletInfo = ();
Xiliang Chen's avatar
Xiliang Chen committed
	type AccountData = pallet_balances::AccountData<u64>;
	type OnNewAccount = ();
Xiliang Chen's avatar
Xiliang Chen committed
	type OnKilledAccount = ();
	type DbWeight = ();
	type BaseCallFilter = ();
Xiliang Chen's avatar
Xiliang Chen committed
	type SystemWeightInfo = ();
Shaopeng Wang's avatar
Shaopeng Wang committed
	type SS58Prefix = ();
Shaopeng Wang's avatar
Shaopeng Wang committed
}
Xiliang Chen's avatar
Xiliang Chen committed
pub type System = frame_system::Module<Runtime>;
Shaopeng Wang's avatar
Shaopeng Wang committed

type Balance = u64;

parameter_types! {
	pub const ExistentialDeposit: u64 = 1;
Xiliang Chen's avatar
Xiliang Chen committed
	pub const MinVestedTransfer: u64 = 5;
Shaopeng Wang's avatar
Shaopeng Wang committed
impl pallet_balances::Config for Runtime {
Shaopeng Wang's avatar
Shaopeng Wang committed
	type Balance = Balance;
	type DustRemoval = ();
	type Event = TestEvent;
	type ExistentialDeposit = ExistentialDeposit;
Xiliang Chen's avatar
Xiliang Chen committed
	type AccountStore = frame_system::Module<Runtime>;
	type MaxLocks = ();
Xiliang Chen's avatar
Xiliang Chen committed
	type WeightInfo = ();
Shaopeng Wang's avatar
Shaopeng Wang committed
}
pub type PalletBalances = pallet_balances::Module<Runtime>;

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()))
	}
}

Shaopeng Wang's avatar
Shaopeng Wang committed
impl Config for Runtime {
Shaopeng Wang's avatar
Shaopeng Wang committed
	type Event = TestEvent;
	type Currency = PalletBalances;
Xiliang Chen's avatar
Xiliang Chen committed
	type MinVestedTransfer = MinVestedTransfer;
	type VestedTransferOrigin = EnsureAliceOrBob;
	type WeightInfo = ();
Shaopeng Wang's avatar
Shaopeng Wang committed
}
pub type Vesting = Module<Runtime>;

pub const ALICE: AccountId = 1;
pub const BOB: AccountId = 2;
pub const CHARLIE: AccountId = 3;
#[derive(Default)]
pub struct ExtBuilder;
Shaopeng Wang's avatar
Shaopeng Wang committed

impl ExtBuilder {
	pub fn build() -> sp_io::TestExternalities {
Shaopeng Wang's avatar
Shaopeng Wang committed
		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();

		GenesisConfig::<Runtime> {
			vesting: vec![(CHARLIE, 2, 3, 4, 5)], // who, start, period, period_count, per_period
Shaopeng Wang's avatar
Shaopeng Wang committed
		}
		.assimilate_storage(&mut t)
		.unwrap();

		t.into()
	}
}