-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Shreevatsa N <[email protected]>
- Loading branch information
Showing
2 changed files
with
750 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
// This file is part of CORD – https://cord.network | ||
|
||
// Copyright (C) Dhiway Networks Pvt. Ltd. | ||
// SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
// CORD 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. | ||
|
||
// CORD 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 CORD. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
use super::*; | ||
use crate as pallet_dedir; | ||
use cord_utilities::mock::{mock_origin, SubjectId}; | ||
use frame_support::{derive_impl, parameter_types}; | ||
|
||
//use frame_system::EnsureRoot; | ||
use sp_runtime::{ | ||
traits::{IdentifyAccount, IdentityLookup, Verify}, | ||
BuildStorage, MultiSignature, | ||
}; | ||
|
||
type Signature = MultiSignature; | ||
type AccountPublic = <Signature as Verify>::Signer; | ||
pub type AccountId = <AccountPublic as IdentifyAccount>::AccountId; | ||
pub(crate) type Block = frame_system::mocking::MockBlock<Test>; | ||
|
||
frame_support::construct_runtime!( | ||
pub enum Test { | ||
System: frame_system, | ||
Identifier: identifier, | ||
MockOrigin: mock_origin, | ||
DeDir: pallet_dedir, | ||
} | ||
); | ||
|
||
parameter_types! { | ||
pub const SS58Prefix: u8 = 29; | ||
} | ||
|
||
#[derive_impl(frame_system::config_preludes::TestDefaultConfig)] | ||
impl frame_system::Config for Test { | ||
type RuntimeOrigin = RuntimeOrigin; | ||
type RuntimeCall = RuntimeCall; | ||
type Block = Block; | ||
type AccountId = AccountId; | ||
type Lookup = IdentityLookup<Self::AccountId>; | ||
type SS58Prefix = SS58Prefix; | ||
} | ||
|
||
impl mock_origin::Config for Test { | ||
type RuntimeOrigin = RuntimeOrigin; | ||
type AccountId = AccountId; | ||
type SubjectId = SubjectId; | ||
} | ||
|
||
parameter_types! { | ||
pub const MaxRegistryDelegates: u32 = 25; | ||
pub const MaxEncodedInputLength: u32 = 32; | ||
pub const MaxRegistryBlobSize: u32 = 16 * 1024; // 16KB in bytes | ||
} | ||
|
||
impl pallet_dedir::Config for Test { | ||
type RuntimeEvent = RuntimeEvent; | ||
type MaxRegistryBlobSize = MaxRegistryBlobSize; | ||
type MaxRegistryDelegates = MaxRegistryDelegates; | ||
type MaxEncodedInputLength = MaxEncodedInputLength; | ||
type WeightInfo = (); | ||
} | ||
|
||
parameter_types! { | ||
pub const MaxEventsHistory: u32 = 6u32; | ||
} | ||
|
||
impl identifier::Config for Test { | ||
type MaxEventsHistory = MaxEventsHistory; | ||
} | ||
|
||
parameter_types! { | ||
storage SpaceEvents: u32 = 0; | ||
} | ||
|
||
#[allow(dead_code)] | ||
pub(crate) fn new_test_ext() -> sp_io::TestExternalities { | ||
let t: sp_runtime::Storage = | ||
frame_system::GenesisConfig::<Test>::default().build_storage().unwrap(); | ||
let mut ext = sp_io::TestExternalities::new(t); | ||
#[cfg(feature = "runtime-benchmarks")] | ||
let keystore = sp_keystore::testing::MemoryKeystore::new(); | ||
#[cfg(feature = "runtime-benchmarks")] | ||
ext.register_extension(sp_keystore::KeystoreExt(sp_std::sync::Arc::new(keystore))); | ||
ext.execute_with(|| System::set_block_number(1)); | ||
ext | ||
} |
Oops, something went wrong.