mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-18 02:25:41 +00:00
5d81f23f8f
* First reworking of fungibles API * New API and docs * More fungible::* API improvements * New ref-counting logic for old API * Missing files * Fixes * Use the new transfer logic * Use fungibles for the dispatchables * Use shelve/restore names * Locking works with total balance. * repotting and removal * Separate Holds from Reserves * Introduce freezes * Missing files * Tests for freezing * Fix hold+freeze combo * More tests * Fee-free dispatchable for upgrading accounts * Benchmarks and a few fixes * Another test * Docs and refactor to avoid blanket impls * Repot * Fit out ItemOf fully * Add events to Balanced traits * Introduced events into Hold traits * Fix Assets pallet tests * Assets benchmarks pass * Missing files and fixes * Fixes * Fixes * Benchmarks fixes * Fix balance benchmarks * Formatting * Expose fungible sub modules * Move NIS to fungible API * Fix broken impl and add test * Fix tests * API for `transfer_and_hold` * Use composite APIs * Formatting * Upgraded event * Fixes * Fixes * Fixes * Fixes * Repot tests and some fixed * Fix some bits * Fix dust tests * Rename `set_balance` - `Balances::set_balance` becomes `Balances::force_set_balance` - `Unbalanced::set_balance` becomes `Unbalances::write_balance` * becomes * Move dust handling to fungibles API * Formatting * Fixes and more refactoring * Fixes * Fixes * Fixes * Fixes * Fixes * Fixes * Fixes * Fixes * Fixes * Use reducible_balance for better correctness on fees * Reducing hold to zero should remove entry. * Add test * Docs * Update frame/support/src/traits/tokens/fungibles/hold.rs Co-authored-by: Muharem Ismailov <ismailov.m.h@gmail.com> * Update frame/support/src/traits/tokens/fungibles/regular.rs Co-authored-by: Muharem Ismailov <ismailov.m.h@gmail.com> * Update frame/support/src/traits/tokens/fungible/hold.rs Co-authored-by: Muharem Ismailov <ismailov.m.h@gmail.com> * Update frame/support/src/traits/tokens/fungible/regular.rs Co-authored-by: Muharem Ismailov <ismailov.m.h@gmail.com> * Docs * Docs * Docs * Fix NIS benchmarks * Doc comment * Remove post_mutation * Fix some tests * Fix some grumbles * Enumify bool args to fungible(s) functions * Fix up assets and balances * Formatting * Fix contracts * Fix tests & benchmarks build * Typify minted boolean arg * Typify on_hold boolean arg; renames * Fix numerous tests * Fix dependency issue * Privatize dangerous API mutate_account * Fix contracts (@alext - please check this commit) * Remove println * Fix tests for contracts * Fix broken rename * Fix broken rename * Fix broken rename * Docs * Update frame/support/src/traits/tokens/fungible/hold.rs Co-authored-by: Anthony Alaribe <anthonyalaribe@gmail.com> * remove from_ref_time * Update frame/executive/src/lib.rs Co-authored-by: Anthony Alaribe <anthonyalaribe@gmail.com> * Update frame/executive/src/lib.rs Co-authored-by: Anthony Alaribe <anthonyalaribe@gmail.com> * Reenable test * Update frame/support/src/traits/tokens/fungibles/hold.rs Co-authored-by: Anthony Alaribe <anthonyalaribe@gmail.com> * Update frame/support/src/traits/tokens/fungible/hold.rs Co-authored-by: Anthony Alaribe <anthonyalaribe@gmail.com> * Update frame/support/src/traits/tokens/fungible/hold.rs Co-authored-by: Anthony Alaribe <anthonyalaribe@gmail.com> * Update frame/support/src/traits/tokens/fungible/hold.rs Co-authored-by: Anthony Alaribe <anthonyalaribe@gmail.com> * Update frame/support/src/traits/tokens/currency.rs Co-authored-by: Anthony Alaribe <anthonyalaribe@gmail.com> * Update frame/lottery/src/tests.rs Co-authored-by: Anthony Alaribe <anthonyalaribe@gmail.com> * Update frame/support/src/traits/tokens/fungible/mod.rs Co-authored-by: Anthony Alaribe <anthonyalaribe@gmail.com> * Update frame/support/src/traits/tokens/fungible/regular.rs Co-authored-by: Anthony Alaribe <anthonyalaribe@gmail.com> * Update frame/support/src/traits/tokens/fungibles/freeze.rs Co-authored-by: Anthony Alaribe <anthonyalaribe@gmail.com> * Update frame/support/src/traits/tokens/fungible/regular.rs Co-authored-by: Anthony Alaribe <anthonyalaribe@gmail.com> * Update frame/support/src/traits/tokens/fungibles/hold.rs Co-authored-by: Anthony Alaribe <anthonyalaribe@gmail.com> * Update frame/support/src/traits/tokens/fungibles/hold.rs Co-authored-by: Anthony Alaribe <anthonyalaribe@gmail.com> * Update frame/support/src/traits/tokens/fungibles/hold.rs Co-authored-by: Anthony Alaribe <anthonyalaribe@gmail.com> * Rename UnwantedRemoval to UnwantedAccountRemoval * Docs * Formatting * Update frame/balances/src/lib.rs Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update primitives/runtime/src/lib.rs Co-authored-by: Keith Yeung <kungfukeith11@gmail.com> * handle_raw_dust oes nothing * Formatting * Fixes * Grumble * Fixes * Add test * Add test * Tests for reducible_balance * Fixes * Fix Salary * Fixes * Disable broken test * Disable nicely * Fixes * Fixes * Fixes * Rename some events * Fix nomination pools breakage * Add compatibility stub for transfer tx * Reinstate a safely compatible version of Balances set_balance * Fixes * Grumble * Update frame/nis/src/lib.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * ".git/.scripts/commands/bench/bench.sh" pallet dev pallet_balances * disable flakey tests * Update frame/balances/src/lib.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Grumbles * Grumble --------- Co-authored-by: Muharem Ismailov <ismailov.m.h@gmail.com> Co-authored-by: Alexander Theißen <alex.theissen@me.com> Co-authored-by: Anthony Alaribe <anthonyalaribe@gmail.com> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Keith Yeung <kungfukeith11@gmail.com> Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> Co-authored-by: command-bot <>
564 lines
18 KiB
Rust
564 lines
18 KiB
Rust
// Copyright (C) Parity Technologies (UK) Ltd.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
use super::*;
|
|
|
|
use frame_support::{
|
|
assert_ok,
|
|
dispatch::{DispatchInfo, PostDispatchInfo},
|
|
pallet_prelude::*,
|
|
traits::fungibles::Mutate,
|
|
weights::Weight,
|
|
};
|
|
use frame_system as system;
|
|
use mock::{ExtrinsicBaseWeight, *};
|
|
use pallet_balances::Call as BalancesCall;
|
|
use sp_runtime::traits::StaticLookup;
|
|
|
|
const CALL: &<Runtime as frame_system::Config>::RuntimeCall =
|
|
&RuntimeCall::Balances(BalancesCall::transfer_allow_death { dest: 2, value: 69 });
|
|
|
|
pub struct ExtBuilder {
|
|
balance_factor: u64,
|
|
base_weight: Weight,
|
|
byte_fee: u64,
|
|
weight_to_fee: u64,
|
|
}
|
|
|
|
impl Default for ExtBuilder {
|
|
fn default() -> Self {
|
|
Self {
|
|
balance_factor: 1,
|
|
base_weight: Weight::from_parts(0, 0),
|
|
byte_fee: 1,
|
|
weight_to_fee: 1,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl ExtBuilder {
|
|
pub fn base_weight(mut self, base_weight: Weight) -> Self {
|
|
self.base_weight = base_weight;
|
|
self
|
|
}
|
|
pub fn balance_factor(mut self, factor: u64) -> Self {
|
|
self.balance_factor = factor;
|
|
self
|
|
}
|
|
fn set_constants(&self) {
|
|
ExtrinsicBaseWeight::mutate(|v| *v = self.base_weight);
|
|
TRANSACTION_BYTE_FEE.with(|v| *v.borrow_mut() = self.byte_fee);
|
|
WEIGHT_TO_FEE.with(|v| *v.borrow_mut() = self.weight_to_fee);
|
|
}
|
|
pub fn build(self) -> sp_io::TestExternalities {
|
|
self.set_constants();
|
|
let mut t = frame_system::GenesisConfig::default().build_storage::<Runtime>().unwrap();
|
|
pallet_balances::GenesisConfig::<Runtime> {
|
|
balances: if self.balance_factor > 0 {
|
|
vec![
|
|
(1, 10 * self.balance_factor),
|
|
(2, 20 * self.balance_factor),
|
|
(3, 30 * self.balance_factor),
|
|
(4, 40 * self.balance_factor),
|
|
(5, 50 * self.balance_factor),
|
|
(6, 60 * self.balance_factor),
|
|
]
|
|
} else {
|
|
vec![]
|
|
},
|
|
}
|
|
.assimilate_storage(&mut t)
|
|
.unwrap();
|
|
t.into()
|
|
}
|
|
}
|
|
|
|
/// create a transaction info struct from weight. Handy to avoid building the whole struct.
|
|
pub fn info_from_weight(w: Weight) -> DispatchInfo {
|
|
// pays_fee: Pays::Yes -- class: DispatchClass::Normal
|
|
DispatchInfo { weight: w, ..Default::default() }
|
|
}
|
|
|
|
fn post_info_from_weight(w: Weight) -> PostDispatchInfo {
|
|
PostDispatchInfo { actual_weight: Some(w), pays_fee: Default::default() }
|
|
}
|
|
|
|
fn info_from_pays(p: Pays) -> DispatchInfo {
|
|
DispatchInfo { pays_fee: p, ..Default::default() }
|
|
}
|
|
|
|
fn post_info_from_pays(p: Pays) -> PostDispatchInfo {
|
|
PostDispatchInfo { actual_weight: None, pays_fee: p }
|
|
}
|
|
|
|
fn default_post_info() -> PostDispatchInfo {
|
|
PostDispatchInfo { actual_weight: None, pays_fee: Default::default() }
|
|
}
|
|
|
|
#[test]
|
|
fn transaction_payment_in_native_possible() {
|
|
let balance_factor = 100;
|
|
ExtBuilder::default()
|
|
.balance_factor(balance_factor)
|
|
.base_weight(Weight::from_parts(5, 0))
|
|
.build()
|
|
.execute_with(|| {
|
|
let len = 10;
|
|
let pre = ChargeAssetTxPayment::<Runtime>::from(0, None)
|
|
.pre_dispatch(&1, CALL, &info_from_weight(Weight::from_parts(5, 0)), len)
|
|
.unwrap();
|
|
let initial_balance = 10 * balance_factor;
|
|
assert_eq!(Balances::free_balance(1), initial_balance - 5 - 5 - 10);
|
|
|
|
assert_ok!(ChargeAssetTxPayment::<Runtime>::post_dispatch(
|
|
Some(pre),
|
|
&info_from_weight(Weight::from_parts(5, 0)),
|
|
&default_post_info(),
|
|
len,
|
|
&Ok(())
|
|
));
|
|
assert_eq!(Balances::free_balance(1), initial_balance - 5 - 5 - 10);
|
|
|
|
let pre = ChargeAssetTxPayment::<Runtime>::from(5 /* tipped */, None)
|
|
.pre_dispatch(&2, CALL, &info_from_weight(Weight::from_parts(100, 0)), len)
|
|
.unwrap();
|
|
let initial_balance_for_2 = 20 * balance_factor;
|
|
assert_eq!(Balances::free_balance(2), initial_balance_for_2 - 5 - 10 - 100 - 5);
|
|
|
|
assert_ok!(ChargeAssetTxPayment::<Runtime>::post_dispatch(
|
|
Some(pre),
|
|
&info_from_weight(Weight::from_parts(100, 0)),
|
|
&post_info_from_weight(Weight::from_parts(50, 0)),
|
|
len,
|
|
&Ok(())
|
|
));
|
|
assert_eq!(Balances::free_balance(2), initial_balance_for_2 - 5 - 10 - 50 - 5);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn transaction_payment_in_asset_possible() {
|
|
let base_weight = 5;
|
|
let balance_factor = 100;
|
|
ExtBuilder::default()
|
|
.balance_factor(balance_factor)
|
|
.base_weight(Weight::from_parts(base_weight, 0))
|
|
.build()
|
|
.execute_with(|| {
|
|
// create the asset
|
|
let asset_id = 1;
|
|
let min_balance = 2;
|
|
assert_ok!(Assets::force_create(
|
|
RuntimeOrigin::root(),
|
|
asset_id.into(),
|
|
42, /* owner */
|
|
true, /* is_sufficient */
|
|
min_balance
|
|
));
|
|
|
|
// mint into the caller account
|
|
let caller = 1;
|
|
let beneficiary = <Runtime as system::Config>::Lookup::unlookup(caller);
|
|
let balance = 100;
|
|
assert_ok!(Assets::mint_into(asset_id.into(), &beneficiary, balance));
|
|
assert_eq!(Assets::balance(asset_id, caller), balance);
|
|
let weight = 5;
|
|
let len = 10;
|
|
// we convert the from weight to fee based on the ratio between asset min balance and
|
|
// existential deposit
|
|
let fee = (base_weight + weight + len as u64) * min_balance / ExistentialDeposit::get();
|
|
let pre = ChargeAssetTxPayment::<Runtime>::from(0, Some(asset_id))
|
|
.pre_dispatch(&caller, CALL, &info_from_weight(Weight::from_parts(weight, 0)), len)
|
|
.unwrap();
|
|
// assert that native balance is not used
|
|
assert_eq!(Balances::free_balance(caller), 10 * balance_factor);
|
|
// check that fee was charged in the given asset
|
|
assert_eq!(Assets::balance(asset_id, caller), balance - fee);
|
|
assert_eq!(Assets::balance(asset_id, BLOCK_AUTHOR), 0);
|
|
|
|
assert_ok!(ChargeAssetTxPayment::<Runtime>::post_dispatch(
|
|
Some(pre),
|
|
&info_from_weight(Weight::from_parts(weight, 0)),
|
|
&default_post_info(),
|
|
len,
|
|
&Ok(())
|
|
));
|
|
assert_eq!(Assets::balance(asset_id, caller), balance - fee);
|
|
// check that the block author gets rewarded
|
|
assert_eq!(Assets::balance(asset_id, BLOCK_AUTHOR), fee);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn transaction_payment_without_fee() {
|
|
let base_weight = 5;
|
|
let balance_factor = 100;
|
|
ExtBuilder::default()
|
|
.balance_factor(balance_factor)
|
|
.base_weight(Weight::from_parts(base_weight, 0))
|
|
.build()
|
|
.execute_with(|| {
|
|
// create the asset
|
|
let asset_id = 1;
|
|
let min_balance = 2;
|
|
assert_ok!(Assets::force_create(
|
|
RuntimeOrigin::root(),
|
|
asset_id.into(),
|
|
42, /* owner */
|
|
true, /* is_sufficient */
|
|
min_balance
|
|
));
|
|
|
|
// mint into the caller account
|
|
let caller = 1;
|
|
let beneficiary = <Runtime as system::Config>::Lookup::unlookup(caller);
|
|
let balance = 100;
|
|
assert_ok!(Assets::mint_into(asset_id.into(), &beneficiary, balance));
|
|
assert_eq!(Assets::balance(asset_id, caller), balance);
|
|
let weight = 5;
|
|
let len = 10;
|
|
// we convert the from weight to fee based on the ratio between asset min balance and
|
|
// existential deposit
|
|
let fee = (base_weight + weight + len as u64) * min_balance / ExistentialDeposit::get();
|
|
let pre = ChargeAssetTxPayment::<Runtime>::from(0, Some(asset_id))
|
|
.pre_dispatch(&caller, CALL, &info_from_weight(Weight::from_parts(weight, 0)), len)
|
|
.unwrap();
|
|
// assert that native balance is not used
|
|
assert_eq!(Balances::free_balance(caller), 10 * balance_factor);
|
|
// check that fee was charged in the given asset
|
|
assert_eq!(Assets::balance(asset_id, caller), balance - fee);
|
|
assert_eq!(Assets::balance(asset_id, BLOCK_AUTHOR), 0);
|
|
|
|
assert_ok!(ChargeAssetTxPayment::<Runtime>::post_dispatch(
|
|
Some(pre),
|
|
&info_from_weight(Weight::from_parts(weight, 0)),
|
|
&post_info_from_pays(Pays::No),
|
|
len,
|
|
&Ok(())
|
|
));
|
|
// caller should be refunded
|
|
assert_eq!(Assets::balance(asset_id, caller), balance);
|
|
// check that the block author did not get rewarded
|
|
assert_eq!(Assets::balance(asset_id, BLOCK_AUTHOR), 0);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn asset_transaction_payment_with_tip_and_refund() {
|
|
let base_weight = 5;
|
|
ExtBuilder::default()
|
|
.balance_factor(100)
|
|
.base_weight(Weight::from_parts(base_weight, 0))
|
|
.build()
|
|
.execute_with(|| {
|
|
// create the asset
|
|
let asset_id = 1;
|
|
let min_balance = 2;
|
|
assert_ok!(Assets::force_create(
|
|
RuntimeOrigin::root(),
|
|
asset_id.into(),
|
|
42, /* owner */
|
|
true, /* is_sufficient */
|
|
min_balance
|
|
));
|
|
|
|
// mint into the caller account
|
|
let caller = 2;
|
|
let beneficiary = <Runtime as system::Config>::Lookup::unlookup(caller);
|
|
let balance = 1000;
|
|
assert_ok!(Assets::mint_into(asset_id.into(), &beneficiary, balance));
|
|
assert_eq!(Assets::balance(asset_id, caller), balance);
|
|
let weight = 100;
|
|
let tip = 5;
|
|
let len = 10;
|
|
// we convert the from weight to fee based on the ratio between asset min balance and
|
|
// existential deposit
|
|
let fee_with_tip =
|
|
(base_weight + weight + len as u64 + tip) * min_balance / ExistentialDeposit::get();
|
|
let pre = ChargeAssetTxPayment::<Runtime>::from(tip, Some(asset_id))
|
|
.pre_dispatch(&caller, CALL, &info_from_weight(Weight::from_parts(weight, 0)), len)
|
|
.unwrap();
|
|
assert_eq!(Assets::balance(asset_id, caller), balance - fee_with_tip);
|
|
|
|
let final_weight = 50;
|
|
assert_ok!(ChargeAssetTxPayment::<Runtime>::post_dispatch(
|
|
Some(pre),
|
|
&info_from_weight(Weight::from_parts(weight, 0)),
|
|
&post_info_from_weight(Weight::from_parts(final_weight, 0)),
|
|
len,
|
|
&Ok(())
|
|
));
|
|
let final_fee =
|
|
fee_with_tip - (weight - final_weight) * min_balance / ExistentialDeposit::get();
|
|
assert_eq!(Assets::balance(asset_id, caller), balance - (final_fee));
|
|
assert_eq!(Assets::balance(asset_id, BLOCK_AUTHOR), final_fee);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn payment_from_account_with_only_assets() {
|
|
let base_weight = 5;
|
|
ExtBuilder::default()
|
|
.balance_factor(100)
|
|
.base_weight(Weight::from_parts(base_weight, 0))
|
|
.build()
|
|
.execute_with(|| {
|
|
// create the asset
|
|
let asset_id = 1;
|
|
let min_balance = 2;
|
|
assert_ok!(Assets::force_create(
|
|
RuntimeOrigin::root(),
|
|
asset_id.into(),
|
|
42, /* owner */
|
|
true, /* is_sufficient */
|
|
min_balance
|
|
));
|
|
|
|
// mint into the caller account
|
|
let caller = 333;
|
|
let beneficiary = <Runtime as system::Config>::Lookup::unlookup(caller);
|
|
let balance = 100;
|
|
assert_ok!(Assets::mint_into(asset_id.into(), &beneficiary, balance));
|
|
assert_eq!(Assets::balance(asset_id, caller), balance);
|
|
// assert that native balance is not necessary
|
|
assert_eq!(Balances::free_balance(caller), 0);
|
|
let weight = 5;
|
|
let len = 10;
|
|
// we convert the from weight to fee based on the ratio between asset min balance and
|
|
// existential deposit
|
|
let fee = (base_weight + weight + len as u64) * min_balance / ExistentialDeposit::get();
|
|
let pre = ChargeAssetTxPayment::<Runtime>::from(0, Some(asset_id))
|
|
.pre_dispatch(&caller, CALL, &info_from_weight(Weight::from_parts(weight, 0)), len)
|
|
.unwrap();
|
|
assert_eq!(Balances::free_balance(caller), 0);
|
|
// check that fee was charged in the given asset
|
|
assert_eq!(Assets::balance(asset_id, caller), balance - fee);
|
|
|
|
assert_ok!(ChargeAssetTxPayment::<Runtime>::post_dispatch(
|
|
Some(pre),
|
|
&info_from_weight(Weight::from_parts(weight, 0)),
|
|
&default_post_info(),
|
|
len,
|
|
&Ok(())
|
|
));
|
|
assert_eq!(Assets::balance(asset_id, caller), balance - fee);
|
|
assert_eq!(Balances::free_balance(caller), 0);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn payment_only_with_existing_sufficient_asset() {
|
|
let base_weight = 5;
|
|
ExtBuilder::default()
|
|
.balance_factor(100)
|
|
.base_weight(Weight::from_parts(base_weight, 0))
|
|
.build()
|
|
.execute_with(|| {
|
|
let asset_id = 1;
|
|
let caller = 1;
|
|
let weight = 5;
|
|
let len = 10;
|
|
// pre_dispatch fails for non-existent asset
|
|
assert!(ChargeAssetTxPayment::<Runtime>::from(0, Some(asset_id))
|
|
.pre_dispatch(&caller, CALL, &info_from_weight(Weight::from_parts(weight, 0)), len)
|
|
.is_err());
|
|
|
|
// create the non-sufficient asset
|
|
let min_balance = 2;
|
|
assert_ok!(Assets::force_create(
|
|
RuntimeOrigin::root(),
|
|
asset_id.into(),
|
|
42, /* owner */
|
|
false, /* is_sufficient */
|
|
min_balance
|
|
));
|
|
// pre_dispatch fails for non-sufficient asset
|
|
assert!(ChargeAssetTxPayment::<Runtime>::from(0, Some(asset_id))
|
|
.pre_dispatch(&caller, CALL, &info_from_weight(Weight::from_parts(weight, 0)), len)
|
|
.is_err());
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn converted_fee_is_never_zero_if_input_fee_is_not() {
|
|
let base_weight = 1;
|
|
ExtBuilder::default()
|
|
.balance_factor(100)
|
|
.base_weight(Weight::from_parts(base_weight, 0))
|
|
.build()
|
|
.execute_with(|| {
|
|
// create the asset
|
|
let asset_id = 1;
|
|
let min_balance = 1;
|
|
assert_ok!(Assets::force_create(
|
|
RuntimeOrigin::root(),
|
|
asset_id.into(),
|
|
42, /* owner */
|
|
true, /* is_sufficient */
|
|
min_balance
|
|
));
|
|
|
|
// mint into the caller account
|
|
let caller = 333;
|
|
let beneficiary = <Runtime as system::Config>::Lookup::unlookup(caller);
|
|
let balance = 100;
|
|
assert_ok!(Assets::mint_into(asset_id.into(), &beneficiary, balance));
|
|
assert_eq!(Assets::balance(asset_id, caller), balance);
|
|
let weight = 1;
|
|
let len = 1;
|
|
// we convert the from weight to fee based on the ratio between asset min balance and
|
|
// existential deposit
|
|
let fee = (base_weight + weight + len as u64) * min_balance / ExistentialDeposit::get();
|
|
// naive fee calculation would round down to zero
|
|
assert_eq!(fee, 0);
|
|
{
|
|
let pre = ChargeAssetTxPayment::<Runtime>::from(0, Some(asset_id))
|
|
.pre_dispatch(&caller, CALL, &info_from_pays(Pays::No), len)
|
|
.unwrap();
|
|
// `Pays::No` still implies no fees
|
|
assert_eq!(Assets::balance(asset_id, caller), balance);
|
|
|
|
assert_ok!(ChargeAssetTxPayment::<Runtime>::post_dispatch(
|
|
Some(pre),
|
|
&info_from_pays(Pays::No),
|
|
&post_info_from_pays(Pays::No),
|
|
len,
|
|
&Ok(())
|
|
));
|
|
assert_eq!(Assets::balance(asset_id, caller), balance);
|
|
}
|
|
let pre = ChargeAssetTxPayment::<Runtime>::from(0, Some(asset_id))
|
|
.pre_dispatch(&caller, CALL, &info_from_weight(Weight::from_parts(weight, 0)), len)
|
|
.unwrap();
|
|
// check that at least one coin was charged in the given asset
|
|
assert_eq!(Assets::balance(asset_id, caller), balance - 1);
|
|
|
|
assert_ok!(ChargeAssetTxPayment::<Runtime>::post_dispatch(
|
|
Some(pre),
|
|
&info_from_weight(Weight::from_parts(weight, 0)),
|
|
&default_post_info(),
|
|
len,
|
|
&Ok(())
|
|
));
|
|
assert_eq!(Assets::balance(asset_id, caller), balance - 1);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn post_dispatch_fee_is_zero_if_pre_dispatch_fee_is_zero() {
|
|
let base_weight = 1;
|
|
ExtBuilder::default()
|
|
.balance_factor(100)
|
|
.base_weight(Weight::from_parts(base_weight, 0))
|
|
.build()
|
|
.execute_with(|| {
|
|
// create the asset
|
|
let asset_id = 1;
|
|
let min_balance = 100;
|
|
assert_ok!(Assets::force_create(
|
|
RuntimeOrigin::root(),
|
|
asset_id.into(),
|
|
42, /* owner */
|
|
true, /* is_sufficient */
|
|
min_balance
|
|
));
|
|
|
|
// mint into the caller account
|
|
let caller = 333;
|
|
let beneficiary = <Runtime as system::Config>::Lookup::unlookup(caller);
|
|
let balance = 100;
|
|
assert_ok!(Assets::mint_into(asset_id.into(), &beneficiary, balance));
|
|
assert_eq!(Assets::balance(asset_id, caller), balance);
|
|
let weight = 1;
|
|
let len = 1;
|
|
// we convert the from weight to fee based on the ratio between asset min balance and
|
|
// existential deposit
|
|
let fee = (base_weight + weight + len as u64) * min_balance / ExistentialDeposit::get();
|
|
// calculated fee is greater than 0
|
|
assert!(fee > 0);
|
|
let pre = ChargeAssetTxPayment::<Runtime>::from(0, Some(asset_id))
|
|
.pre_dispatch(&caller, CALL, &info_from_pays(Pays::No), len)
|
|
.unwrap();
|
|
// `Pays::No` implies no pre-dispatch fees
|
|
assert_eq!(Assets::balance(asset_id, caller), balance);
|
|
let (_tip, _who, initial_payment, _asset_id) = ⪯
|
|
let not_paying = match initial_payment {
|
|
&InitialPayment::Nothing => true,
|
|
_ => false,
|
|
};
|
|
assert!(not_paying, "initial payment should be Nothing if we pass Pays::No");
|
|
|
|
// `Pays::Yes` on post-dispatch does not mean we pay (we never charge more than the
|
|
// initial fee)
|
|
assert_ok!(ChargeAssetTxPayment::<Runtime>::post_dispatch(
|
|
Some(pre),
|
|
&info_from_pays(Pays::No),
|
|
&post_info_from_pays(Pays::Yes),
|
|
len,
|
|
&Ok(())
|
|
));
|
|
assert_eq!(Assets::balance(asset_id, caller), balance);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn post_dispatch_fee_is_zero_if_unsigned_pre_dispatch_fee_is_zero() {
|
|
let base_weight = 1;
|
|
ExtBuilder::default()
|
|
.balance_factor(100)
|
|
.base_weight(Weight::from_parts(base_weight, 0))
|
|
.build()
|
|
.execute_with(|| {
|
|
// create the asset
|
|
let asset_id = 1;
|
|
let min_balance = 100;
|
|
assert_ok!(Assets::force_create(
|
|
RuntimeOrigin::root(),
|
|
asset_id.into(),
|
|
42, /* owner */
|
|
true, /* is_sufficient */
|
|
min_balance
|
|
));
|
|
|
|
// mint into the caller account
|
|
let caller = 333;
|
|
let beneficiary = <Runtime as system::Config>::Lookup::unlookup(caller);
|
|
let balance = 100;
|
|
assert_ok!(Assets::mint_into(asset_id.into(), &beneficiary, balance));
|
|
assert_eq!(Assets::balance(asset_id, caller), balance);
|
|
let weight = 1;
|
|
let len = 1;
|
|
ChargeAssetTxPayment::<Runtime>::pre_dispatch_unsigned(
|
|
CALL,
|
|
&info_from_weight(Weight::from_parts(weight, 0)),
|
|
len,
|
|
)
|
|
.unwrap();
|
|
|
|
assert_eq!(Assets::balance(asset_id, caller), balance);
|
|
|
|
// `Pays::Yes` on post-dispatch does not mean we pay (we never charge more than the
|
|
// initial fee)
|
|
assert_ok!(ChargeAssetTxPayment::<Runtime>::post_dispatch(
|
|
None,
|
|
&info_from_weight(Weight::from_parts(weight, 0)),
|
|
&post_info_from_pays(Pays::Yes),
|
|
len,
|
|
&Ok(())
|
|
));
|
|
assert_eq!(Assets::balance(asset_id, caller), balance);
|
|
});
|
|
}
|