mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 00:31:02 +00:00
0ce339be67
* Wwstmint test for ReceiveTeleportedAsset * Missing fix for `weigh_multi_assets` * Added tests for statemine/statemint * [Enhancement] Use XCM V3 for initiate_teleport weight calc (#2102) * [Enhancement] Use XCM V3 for initiate_teleport weight calc * deref * replicate in all the runtimes * fmt * better handling for AllOf * fmt * small type fix * replicate the fix for all runtimes --------- Co-authored-by: parity-processbot <> * removed `frame_support::sp_tracing::try_init_simple();` * Review fixes * Removed `as u64` --------- Co-authored-by: Branislav Kontur <bkontur@gmail.com> Co-authored-by: Roman Useinov <roman.useinov@gmail.com>
452 lines
14 KiB
Rust
452 lines
14 KiB
Rust
use asset_test_utils::{ExtBuilder, RuntimeHelper};
|
|
use codec::Encode;
|
|
use cumulus_primitives_utility::ChargeWeightInFungibles;
|
|
use frame_support::{
|
|
assert_noop, assert_ok, sp_io,
|
|
traits::PalletInfo,
|
|
weights::{Weight, WeightToFee as WeightToFeeT},
|
|
};
|
|
use parachains_common::{AccountId, StatemintAuraId as AuraId};
|
|
use statemint_runtime::xcm_config::AssetFeeAsExistentialDepositMultiplierFeeCharger;
|
|
pub use statemint_runtime::{
|
|
constants::fee::WeightToFee, xcm_config::XcmConfig, Assets, Balances, ExistentialDeposit,
|
|
ReservedDmpWeight, Runtime, SessionKeys, System,
|
|
};
|
|
use xcm::latest::prelude::*;
|
|
use xcm_executor::{traits::WeightTrader, XcmExecutor};
|
|
|
|
pub const ALICE: [u8; 32] = [1u8; 32];
|
|
|
|
#[test]
|
|
fn test_asset_xcm_trader() {
|
|
ExtBuilder::<Runtime>::default()
|
|
.with_collators(vec![AccountId::from(ALICE)])
|
|
.with_session_keys(vec![(
|
|
AccountId::from(ALICE),
|
|
AccountId::from(ALICE),
|
|
SessionKeys { aura: AuraId::from(sp_core::ed25519::Public::from_raw(ALICE)) },
|
|
)])
|
|
.build()
|
|
.execute_with(|| {
|
|
// We need root origin to create a sufficient asset
|
|
let minimum_asset_balance = 333333333_u128;
|
|
let local_asset_id = 1;
|
|
assert_ok!(Assets::force_create(
|
|
RuntimeHelper::<Runtime>::root_origin(),
|
|
local_asset_id.into(),
|
|
AccountId::from(ALICE).into(),
|
|
true,
|
|
minimum_asset_balance
|
|
));
|
|
|
|
// We first mint enough asset for the account to exist for assets
|
|
assert_ok!(Assets::mint(
|
|
RuntimeHelper::<Runtime>::origin_of(AccountId::from(ALICE)),
|
|
local_asset_id.into(),
|
|
AccountId::from(ALICE).into(),
|
|
minimum_asset_balance
|
|
));
|
|
|
|
// get asset id as multilocation
|
|
let asset_multilocation = MultiLocation::new(
|
|
0,
|
|
X2(
|
|
PalletInstance(
|
|
<Runtime as frame_system::Config>::PalletInfo::index::<Assets>().unwrap()
|
|
as u8,
|
|
),
|
|
GeneralIndex(local_asset_id.into()),
|
|
),
|
|
);
|
|
|
|
// Set Alice as block author, who will receive fees
|
|
RuntimeHelper::<Runtime>::run_to_block(2, Some(AccountId::from(ALICE)));
|
|
|
|
// We are going to buy 400e9 weight
|
|
// Because of the ED being higher in statemine
|
|
// and not to complicate things, we use a little
|
|
// bit more of weight
|
|
let bought = Weight::from_ref_time(400_000_000_000u64);
|
|
|
|
// Lets calculate amount needed
|
|
let asset_amount_needed =
|
|
AssetFeeAsExistentialDepositMultiplierFeeCharger::charge_weight_in_fungibles(
|
|
local_asset_id,
|
|
bought,
|
|
)
|
|
.expect("failed to compute");
|
|
|
|
// Lets pay with: asset_amount_needed + asset_amount_extra
|
|
let asset_amount_extra = 100_u128;
|
|
let asset: MultiAsset =
|
|
(asset_multilocation.clone(), asset_amount_needed + asset_amount_extra).into();
|
|
|
|
let mut trader = <XcmConfig as xcm_executor::Config>::Trader::new();
|
|
|
|
// Lets buy_weight and make sure buy_weight does not return an error
|
|
match trader.buy_weight(bought, asset.into()) {
|
|
Ok(unused_assets) => {
|
|
// Check whether a correct amount of unused assets is returned
|
|
assert_ok!(unused_assets
|
|
.ensure_contains(&(asset_multilocation, asset_amount_extra).into()));
|
|
},
|
|
Err(e) => assert!(false, "Expected Ok(_). Got {:#?}", e),
|
|
}
|
|
|
|
// Drop trader
|
|
drop(trader);
|
|
|
|
// Make sure author(Alice) has received the amount
|
|
assert_eq!(
|
|
Assets::balance(1, AccountId::from(ALICE)),
|
|
minimum_asset_balance + asset_amount_needed
|
|
);
|
|
|
|
// We also need to ensure the total supply increased
|
|
assert_eq!(Assets::total_supply(1), minimum_asset_balance + asset_amount_needed);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn test_asset_xcm_trader_with_refund() {
|
|
ExtBuilder::<Runtime>::default()
|
|
.with_collators(vec![AccountId::from(ALICE)])
|
|
.with_session_keys(vec![(
|
|
AccountId::from(ALICE),
|
|
AccountId::from(ALICE),
|
|
SessionKeys { aura: AuraId::from(sp_core::ed25519::Public::from_raw(ALICE)) },
|
|
)])
|
|
.build()
|
|
.execute_with(|| {
|
|
// We need root origin to create a sufficient asset
|
|
// We set existential deposit to be identical to the one for Balances first
|
|
assert_ok!(Assets::force_create(
|
|
RuntimeHelper::<Runtime>::root_origin(),
|
|
1.into(),
|
|
AccountId::from(ALICE).into(),
|
|
true,
|
|
ExistentialDeposit::get()
|
|
));
|
|
|
|
// We first mint enough asset for the account to exist for assets
|
|
assert_ok!(Assets::mint(
|
|
RuntimeHelper::<Runtime>::origin_of(AccountId::from(ALICE)),
|
|
1.into(),
|
|
AccountId::from(ALICE).into(),
|
|
ExistentialDeposit::get()
|
|
));
|
|
|
|
let mut trader = <XcmConfig as xcm_executor::Config>::Trader::new();
|
|
|
|
// Set Alice as block author, who will receive fees
|
|
RuntimeHelper::<Runtime>::run_to_block(2, Some(AccountId::from(ALICE)));
|
|
|
|
// We are going to buy 400e9 weight
|
|
// Because of the ED being higher in statemine
|
|
// and not to complicate things, we use a little
|
|
// bit more of weight
|
|
let bought = Weight::from_ref_time(400_000_000_000u64);
|
|
|
|
let asset_multilocation = MultiLocation::new(
|
|
0,
|
|
X2(
|
|
PalletInstance(
|
|
<Runtime as frame_system::Config>::PalletInfo::index::<Assets>().unwrap()
|
|
as u8,
|
|
),
|
|
GeneralIndex(1),
|
|
),
|
|
);
|
|
|
|
// lets calculate amount needed
|
|
let amount_bought = WeightToFee::weight_to_fee(&bought);
|
|
|
|
let asset: MultiAsset = (asset_multilocation.clone(), amount_bought).into();
|
|
|
|
// Make sure buy_weight does not return an error
|
|
assert_ok!(trader.buy_weight(bought, asset.clone().into()));
|
|
|
|
// Make sure again buy_weight does return an error
|
|
assert_noop!(trader.buy_weight(bought, asset.into()), XcmError::NotWithdrawable);
|
|
|
|
// We actually use half of the weight
|
|
let weight_used = bought / 2;
|
|
|
|
// Make sure refurnd works.
|
|
let amount_refunded = WeightToFee::weight_to_fee(&(bought - weight_used));
|
|
|
|
assert_eq!(
|
|
trader.refund_weight(bought - weight_used),
|
|
Some((asset_multilocation, amount_refunded).into())
|
|
);
|
|
|
|
// Drop trader
|
|
drop(trader);
|
|
|
|
// We only should have paid for half of the bought weight
|
|
let fees_paid = WeightToFee::weight_to_fee(&weight_used);
|
|
|
|
assert_eq!(
|
|
Assets::balance(1, AccountId::from(ALICE)),
|
|
ExistentialDeposit::get() + fees_paid
|
|
);
|
|
|
|
// We also need to ensure the total supply increased
|
|
assert_eq!(Assets::total_supply(1), ExistentialDeposit::get() + fees_paid);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn test_asset_xcm_trader_refund_not_possible_since_amount_less_than_ed() {
|
|
ExtBuilder::<Runtime>::default()
|
|
.with_collators(vec![AccountId::from(ALICE)])
|
|
.with_session_keys(vec![(
|
|
AccountId::from(ALICE),
|
|
AccountId::from(ALICE),
|
|
SessionKeys { aura: AuraId::from(sp_core::ed25519::Public::from_raw(ALICE)) },
|
|
)])
|
|
.build()
|
|
.execute_with(|| {
|
|
// We need root origin to create a sufficient asset
|
|
// We set existential deposit to be identical to the one for Balances first
|
|
assert_ok!(Assets::force_create(
|
|
RuntimeHelper::<Runtime>::root_origin(),
|
|
1.into(),
|
|
AccountId::from(ALICE).into(),
|
|
true,
|
|
ExistentialDeposit::get()
|
|
));
|
|
|
|
let mut trader = <XcmConfig as xcm_executor::Config>::Trader::new();
|
|
|
|
// Set Alice as block author, who will receive fees
|
|
RuntimeHelper::<Runtime>::run_to_block(2, Some(AccountId::from(ALICE)));
|
|
|
|
// We are going to buy 50e9 weight
|
|
// Because of the ED being higher in statemine
|
|
// and not to complicate things, we use a little
|
|
// bit more of weight
|
|
let bought = Weight::from_ref_time(50_000_000_000u64);
|
|
|
|
let asset_multilocation = MultiLocation::new(
|
|
0,
|
|
X2(
|
|
PalletInstance(
|
|
<Runtime as frame_system::Config>::PalletInfo::index::<Assets>().unwrap()
|
|
as u8,
|
|
),
|
|
GeneralIndex(1),
|
|
),
|
|
);
|
|
|
|
let amount_bought = WeightToFee::weight_to_fee(&bought);
|
|
|
|
assert!(
|
|
amount_bought < ExistentialDeposit::get(),
|
|
"we are testing what happens when the amount does not exceed ED"
|
|
);
|
|
|
|
let asset: MultiAsset = (asset_multilocation.clone(), amount_bought).into();
|
|
|
|
// Buy weight should return an error
|
|
assert_noop!(trader.buy_weight(bought, asset.into()), XcmError::TooExpensive);
|
|
|
|
// not credited since the ED is higher than this value
|
|
assert_eq!(Assets::balance(1, AccountId::from(ALICE)), 0);
|
|
|
|
// We also need to ensure the total supply did not increase
|
|
assert_eq!(Assets::total_supply(1), 0);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn test_that_buying_ed_refund_does_not_refund() {
|
|
ExtBuilder::<Runtime>::default()
|
|
.with_collators(vec![AccountId::from(ALICE)])
|
|
.with_session_keys(vec![(
|
|
AccountId::from(ALICE),
|
|
AccountId::from(ALICE),
|
|
SessionKeys { aura: AuraId::from(sp_core::ed25519::Public::from_raw(ALICE)) },
|
|
)])
|
|
.build()
|
|
.execute_with(|| {
|
|
// We need root origin to create a sufficient asset
|
|
// We set existential deposit to be identical to the one for Balances first
|
|
assert_ok!(Assets::force_create(
|
|
RuntimeHelper::<Runtime>::root_origin(),
|
|
1.into(),
|
|
AccountId::from(ALICE).into(),
|
|
true,
|
|
ExistentialDeposit::get()
|
|
));
|
|
|
|
let mut trader = <XcmConfig as xcm_executor::Config>::Trader::new();
|
|
|
|
// Set Alice as block author, who will receive fees
|
|
RuntimeHelper::<Runtime>::run_to_block(2, Some(AccountId::from(ALICE)));
|
|
|
|
// We are gonna buy ED
|
|
let bought = Weight::from_ref_time(ExistentialDeposit::get().try_into().unwrap());
|
|
|
|
let asset_multilocation = MultiLocation::new(
|
|
0,
|
|
X2(
|
|
PalletInstance(
|
|
<Runtime as frame_system::Config>::PalletInfo::index::<Assets>().unwrap()
|
|
as u8,
|
|
),
|
|
GeneralIndex(1),
|
|
),
|
|
);
|
|
|
|
let amount_bought = WeightToFee::weight_to_fee(&bought);
|
|
|
|
assert!(
|
|
amount_bought < ExistentialDeposit::get(),
|
|
"we are testing what happens when the amount does not exceed ED"
|
|
);
|
|
|
|
// We know we will have to buy at least ED, so lets make sure first it will
|
|
// fail with a payment of less than ED
|
|
let asset: MultiAsset = (asset_multilocation.clone(), amount_bought).into();
|
|
assert_noop!(trader.buy_weight(bought, asset.into()), XcmError::TooExpensive);
|
|
|
|
// Now lets buy ED at least
|
|
let asset: MultiAsset = (asset_multilocation.clone(), ExistentialDeposit::get()).into();
|
|
|
|
// Buy weight should work
|
|
assert_ok!(trader.buy_weight(bought, asset.into()));
|
|
|
|
// Should return None. We have a specific check making sure we dont go below ED for
|
|
// drop payment
|
|
assert_eq!(trader.refund_weight(bought), None);
|
|
|
|
// Drop trader
|
|
drop(trader);
|
|
|
|
// Make sure author(Alice) has received the amount
|
|
assert_eq!(Assets::balance(1, AccountId::from(ALICE)), ExistentialDeposit::get());
|
|
|
|
// We also need to ensure the total supply increased
|
|
assert_eq!(Assets::total_supply(1), ExistentialDeposit::get());
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn test_asset_xcm_trader_not_possible_for_non_sufficient_assets() {
|
|
ExtBuilder::<Runtime>::default()
|
|
.with_collators(vec![AccountId::from(ALICE)])
|
|
.with_session_keys(vec![(
|
|
AccountId::from(ALICE),
|
|
AccountId::from(ALICE),
|
|
SessionKeys { aura: AuraId::from(sp_core::ed25519::Public::from_raw(ALICE)) },
|
|
)])
|
|
.build()
|
|
.execute_with(|| {
|
|
// Create a non-sufficient asset
|
|
let minimum_asset_balance = 1_000_000_u128;
|
|
assert_ok!(Assets::force_create(
|
|
RuntimeHelper::<Runtime>::root_origin(),
|
|
1.into(),
|
|
AccountId::from(ALICE).into(),
|
|
false,
|
|
minimum_asset_balance
|
|
));
|
|
|
|
// We first mint enough asset for the account to exist for assets
|
|
assert_ok!(Assets::mint(
|
|
RuntimeHelper::<Runtime>::origin_of(AccountId::from(ALICE)),
|
|
1.into(),
|
|
AccountId::from(ALICE).into(),
|
|
minimum_asset_balance
|
|
));
|
|
|
|
let mut trader = <XcmConfig as xcm_executor::Config>::Trader::new();
|
|
|
|
// Set Alice as block author, who will receive fees
|
|
RuntimeHelper::<Runtime>::run_to_block(2, Some(AccountId::from(ALICE)));
|
|
|
|
// We are going to buy 400e9 weight
|
|
// Because of the ED being higher in statemine
|
|
// and not to complicate things, we use a little
|
|
// bit more of weight
|
|
let bought = Weight::from_ref_time(400_000_000_000u64);
|
|
|
|
// lets calculate amount needed
|
|
let asset_amount_needed = WeightToFee::weight_to_fee(&bought);
|
|
|
|
let asset_multilocation = MultiLocation::new(
|
|
0,
|
|
X2(
|
|
PalletInstance(
|
|
<Runtime as frame_system::Config>::PalletInfo::index::<Assets>().unwrap()
|
|
as u8,
|
|
),
|
|
GeneralIndex(1),
|
|
),
|
|
);
|
|
|
|
let asset: MultiAsset = (asset_multilocation, asset_amount_needed).into();
|
|
|
|
// Make sure again buy_weight does return an error
|
|
assert_noop!(trader.buy_weight(bought, asset.into()), XcmError::TooExpensive);
|
|
|
|
// Drop trader
|
|
drop(trader);
|
|
|
|
// Make sure author(Alice) has NOT received the amount
|
|
assert_eq!(Assets::balance(1, AccountId::from(ALICE)), minimum_asset_balance);
|
|
|
|
// We also need to ensure the total supply NOT increased
|
|
assert_eq!(Assets::total_supply(1), minimum_asset_balance);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn receive_teleported_asset_works() {
|
|
ExtBuilder::<Runtime>::default()
|
|
.with_collators(vec![AccountId::from(ALICE)])
|
|
.with_session_keys(vec![(
|
|
AccountId::from(ALICE),
|
|
AccountId::from(ALICE),
|
|
SessionKeys { aura: AuraId::from(sp_core::ed25519::Public::from_raw(ALICE)) },
|
|
)])
|
|
.build()
|
|
.execute_with(|| {
|
|
let xcm = Xcm(vec![
|
|
ReceiveTeleportedAsset(MultiAssets::from(vec![MultiAsset {
|
|
id: Concrete(MultiLocation { parents: 1, interior: Here }),
|
|
fun: Fungible(10000000000000),
|
|
}])),
|
|
ClearOrigin,
|
|
BuyExecution {
|
|
fees: MultiAsset {
|
|
id: Concrete(MultiLocation { parents: 1, interior: Here }),
|
|
fun: Fungible(10000000000000),
|
|
},
|
|
weight_limit: Limited(Weight::from_parts(303531000, 65536)),
|
|
},
|
|
DepositAsset {
|
|
assets: Wild(AllCounted(1)),
|
|
beneficiary: MultiLocation {
|
|
parents: 0,
|
|
interior: X1(AccountId32 {
|
|
network: None,
|
|
id: [
|
|
18, 153, 85, 112, 1, 245, 88, 21, 211, 252, 181, 60, 116, 70, 58,
|
|
203, 12, 246, 209, 77, 70, 57, 179, 64, 152, 44, 96, 135, 127, 56,
|
|
70, 9,
|
|
],
|
|
}),
|
|
},
|
|
},
|
|
]);
|
|
let hash = xcm.using_encoded(sp_io::hashing::blake2_256);
|
|
|
|
let weight_limit = ReservedDmpWeight::get();
|
|
|
|
let outcome = XcmExecutor::<XcmConfig>::execute_xcm(Parent, xcm, hash, weight_limit);
|
|
assert_eq!(outcome.ensure_complete(), Ok(()));
|
|
})
|
|
}
|