forked from Polimec/polimec-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruntime_apis.rs
108 lines (94 loc) · 3.31 KB
/
runtime_apis.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
use crate::{constants::*, *};
use assets_common::runtime_api::runtime_decl_for_fungibles_api::FungiblesApiV2;
use frame_support::traits::{
fungible::{Inspect, Mutate as FMutate},
fungibles::Mutate,
};
use polimec_common::assets::AcceptedFundingAsset;
use sp_arithmetic::FixedU128;
use xcm::v5::Junctions::X3;
use xcm_runtime_apis::fees::runtime_decl_for_xcm_payment_api::XcmPaymentApiV1;
mod xcm_payment_api {
use super::*;
use itertools::Itertools;
#[test]
fn query_acceptable_payment_assets() {
PolimecNet::execute_with(|| {
let accepted_payment_assets = PolimecRuntime::query_acceptable_payment_assets(4u32).unwrap();
let versioned_funding_assets = AcceptedFundingAsset::all_ids()
.into_iter()
.map(|loc| AssetId::from(loc))
.map(|a| VersionedAssetId::from(a))
.collect_vec();
for asset in versioned_funding_assets {
assert!(accepted_payment_assets.contains(&asset));
}
});
}
#[test]
fn query_weight_to_asset_fee() {
polimec::set_prices(
PricesBuilder::new()
.usdt(FixedU128::from_float(1.0f64))
.plmc(FixedU128::from_float(0.5f64))
.dot(FixedU128::from_float(10.0f64))
.build(),
);
let compute_weight = Weight::from_parts(100_000_000, 20_000);
// Native Asset
PolimecNet::execute_with(|| {
let plmc_fee = PolimecRuntime::query_weight_to_asset_fee(
compute_weight,
VersionedAssetId::V4(AssetId(Location { parents: 0, interior: Here })),
)
.unwrap();
let dot_fee = PolimecRuntime::query_weight_to_asset_fee(
compute_weight,
VersionedAssetId::V4(AssetId(Location { parents: 1, interior: Here })),
)
.unwrap();
let usdt_fee = PolimecRuntime::query_weight_to_asset_fee(
compute_weight,
VersionedAssetId::V4(AssetId(Location {
parents: 1,
interior: X3([Parachain(1000), PalletInstance(50), GeneralIndex(1984)].into()),
})),
)
.unwrap();
// PLMC and dot have the same decimals, so a simple conversion is enough
assert_eq!(dot_fee, plmc_fee / 20);
// USDT has 6 decimals, so we need to divide by 10^(10-6)= 10_000
assert_eq!(usdt_fee, plmc_fee / 2 / 10_000);
});
}
}
mod fungibles_api {
use super::*;
#[test]
fn query_account_assets() {
PolimecNet::execute_with(|| {
let alice_account = PolimecNet::account_id_of(accounts::ALICE);
PolimecBalances::set_balance(&alice_account, 150_0_000_000_000_u128);
PolimecForeignAssets::set_balance(AcceptedFundingAsset::DOT.id(), &alice_account, 100_0_000_000_000_u128);
PolimecForeignAssets::set_balance(AcceptedFundingAsset::USDT.id(), &alice_account, 100_000_u128);
PolimecForeignAssets::set_balance(AcceptedFundingAsset::USDC.id(), &alice_account, 100_000_u128);
PolimecForeignAssets::set_balance(
AcceptedFundingAsset::WETH.id(),
&alice_account,
100_000_000_000_000_u128,
);
let alice_assets = PolimecRuntime::query_account_balances(alice_account).unwrap();
let expected_assets = VersionedAssets::V4(
vec![
Asset::from((Location::here(), 150_0_000_000_000_u128)),
Asset::from((AcceptedFundingAsset::DOT.id(), 100_0_000_000_000_u128)),
Asset::from((AcceptedFundingAsset::USDC.id(), 100_000_u128)),
Asset::from((AcceptedFundingAsset::USDT.id(), 100_000_u128)),
Asset::from((AcceptedFundingAsset::WETH.id(), 100_000_000_000_000_u128)),
]
.into(),
);
assert_eq!(alice_assets, expected_assets);
});
}
}