1234567891011121314151617#![allow(clippy::from_over_into)]1819use crate as pallet_template;20use sp_core::{H160, H256};21use frame_support::{parameter_types, traits::Everything, weights::IdentityFee};22use sp_runtime::{23 traits::{BlakeTwo256, IdentityLookup},24 testing::Header,25};26use pallet_transaction_payment::{CurrencyAdapter};27use frame_system as system;28use pallet_evm::{AddressMapping, runner::stack::MaybeMirroredLog};29use up_evm_mapping::EvmBackwardsAddressMapping;30use pallet_evm::account::CrossAccountId;31use codec::{Encode, Decode, MaxEncodedLen};32use scale_info::TypeInfo;33use up_data_structs::ConstU32;3435type UncheckedExtrinsic = frame_system::mocking::MockUncheckedExtrinsic<Test>;36type Block = frame_system::mocking::MockBlock<Test>;373839frame_support::construct_runtime!(40 pub enum Test where41 Block = Block,42 NodeBlock = Block,43 UncheckedExtrinsic = UncheckedExtrinsic,44 {45 System: frame_system::{Pallet, Call, Config, Storage, Event<T>},46 TemplateModule: pallet_template::{Pallet, Call, Storage},47 Balances: pallet_balances::{Pallet, Call, Storage},48 Common: pallet_common::{Pallet, Storage, Event<T>},49 Fungible: pallet_fungible::{Pallet, Storage},50 Refungible: pallet_refungible::{Pallet, Storage},51 Nonfungible: pallet_nonfungible::{Pallet, Storage},52 }53);5455parameter_types! {56 pub const BlockHashCount: u64 = 250;57 pub const SS58Prefix: u8 = 42;58}5960impl system::Config for Test {61 type BaseCallFilter = Everything;62 type BlockWeights = ();63 type BlockLength = ();64 type DbWeight = ();65 type Origin = Origin;66 type Call = Call;67 type Index = u64;68 type BlockNumber = u64;69 type Hash = H256;70 type Hashing = BlakeTwo256;71 type AccountId = u64;72 type Lookup = IdentityLookup<Self::AccountId>;73 type Header = Header;74 type Event = ();75 type BlockHashCount = BlockHashCount;76 type Version = ();77 type PalletInfo = PalletInfo;78 type AccountData = pallet_balances::AccountData<u64>;79 type OnNewAccount = ();80 type OnKilledAccount = ();81 type SystemWeightInfo = ();82 type SS58Prefix = SS58Prefix;83 type OnSetCode = ();84 type MaxConsumers = ConstU32<16>;85}8687parameter_types! {88 pub const ExistentialDeposit: u64 = 1;89 pub const MaxLocks: u32 = 50;90}9192impl pallet_balances::Config for Test {93 type AccountStore = System;94 type Balance = u64;95 type DustRemoval = ();96 type Event = ();97 type ExistentialDeposit = ExistentialDeposit;98 type WeightInfo = ();99 type MaxLocks = MaxLocks;100 type MaxReserves = ();101 type ReserveIdentifier = [u8; 8];102}103104parameter_types! {105 pub const TransactionByteFee: u64 = 1;106 pub const OperationalFeeMultiplier: u8 = 5;107}108109impl pallet_transaction_payment::Config for Test {110 type OnChargeTransaction = CurrencyAdapter<pallet_balances::Pallet<Test>, ()>;111 type TransactionByteFee = TransactionByteFee;112 type WeightToFee = IdentityFee<u64>;113 type FeeMultiplierUpdate = ();114 type OperationalFeeMultiplier = OperationalFeeMultiplier;115}116117parameter_types! {118 pub const MinimumPeriod: u64 = 1;119}120impl pallet_timestamp::Config for Test {121 type Moment = u64;122 type OnTimestampSet = ();123 type MinimumPeriod = MinimumPeriod;124 type WeightInfo = ();125}126127parameter_types! {128 pub const CollectionCreationPrice: u32 = 100;129 pub TreasuryAccountId: u64 = 1234;130 pub EthereumChainId: u32 = 1111;131}132133pub struct TestEvmAddressMapping;134impl AddressMapping<u64> for TestEvmAddressMapping {135 fn into_account_id(_addr: sp_core::H160) -> u64 {136 unimplemented!()137 }138}139140pub struct TestEvmBackwardsAddressMapping;141impl EvmBackwardsAddressMapping<u64> for TestEvmBackwardsAddressMapping {142 fn from_account_id(_account_id: u64) -> sp_core::H160 {143 unimplemented!()144 }145}146147#[derive(Encode, Decode, Clone, PartialEq, Eq, PartialOrd, Ord, Debug, TypeInfo, MaxEncodedLen)]148pub struct TestCrossAccountId(u64, sp_core::H160);149impl CrossAccountId<u64> for TestCrossAccountId {150 fn as_sub(&self) -> &u64 {151 &self.0152 }153 fn as_eth(&self) -> &sp_core::H160 {154 &self.1155 }156 fn from_sub(sub: u64) -> Self {157 let mut eth = [0; 20];158 eth[12..20].copy_from_slice(&sub.to_be_bytes());159 Self(sub, sp_core::H160(eth))160 }161 fn from_eth(eth: sp_core::H160) -> Self {162 let mut sub_raw = [0; 8];163 sub_raw.copy_from_slice(ð.0[0..8]);164 let sub = u64::from_be_bytes(sub_raw);165 Self(sub, eth)166 }167 fn conv_eq(&self, other: &Self) -> bool {168 self.as_sub() == other.as_sub()169 }170}171172impl Default for TestCrossAccountId {173 fn default() -> Self {174 Self::from_sub(0)175 }176}177178pub struct TestEtheremTransactionSender;179impl pallet_ethereum::EthereumTransactionSender for TestEtheremTransactionSender {180 fn submit_logs_transaction(181 _source: H160,182 _tx: pallet_ethereum::Transaction,183 _logs: Vec<MaybeMirroredLog>,184 ) {185 }186}187188impl pallet_evm_coder_substrate::Config for Test {189 type EthereumTransactionSender = TestEtheremTransactionSender;190 type GasWeightMapping = ();191}192193impl pallet_common::Config for Test {194 type Event = ();195 type Currency = Balances;196 type CollectionCreationPrice = CollectionCreationPrice;197 type TreasuryAccountId = TreasuryAccountId;198}199200impl pallet_evm::account::Config for Test {201 type CrossAccountId = TestCrossAccountId;202 type EvmAddressMapping = TestEvmAddressMapping;203 type EvmBackwardsAddressMapping = TestEvmBackwardsAddressMapping;204}205206impl pallet_fungible::Config for Test {207 type WeightInfo = ();208}209impl pallet_refungible::Config for Test {210 type WeightInfo = ();211}212impl pallet_nonfungible::Config for Test {213 type WeightInfo = ();214}215216impl pallet_template::Config for Test {217 type Event = ();218 type WeightInfo = ();219}220221222pub fn new_test_ext() -> sp_io::TestExternalities {223 system::GenesisConfig::default()224 .build_storage::<Test>()225 .unwrap()226 .into()227}