tests.rs 6.76 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2020 Parity Technologies (UK) Ltd.
// This file is part of Polkadot.

// Polkadot 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.

// Polkadot 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 Polkadot.  If not, see <http://www.gnu.org/licenses/>.

use crate::mock::*;
use frame_support::{assert_noop, assert_ok, traits::Currency};
use polkadot_parachain::primitives::{AccountIdConversion, Id as ParaId};
Gavin Wood's avatar
Gavin Wood committed
20
use std::convert::TryInto;
21
use xcm::{v1::prelude::*, VersionedXcm};
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38

const ALICE: AccountId = AccountId::new([0u8; 32]);
const BOB: AccountId = AccountId::new([1u8; 32]);
const PARA_ID: u32 = 2000;
const INITIAL_BALANCE: u128 = 100;
const SEND_AMOUNT: u128 = 10;

/// Test sending an `XCM` message (`XCM::ReserveAssetDeposit`)
///
/// Asserts that the expected message is sent and the event is emitted
#[test]
fn send_works() {
	let balances =
		vec![(ALICE, INITIAL_BALANCE), (ParaId::from(PARA_ID).into_account(), INITIAL_BALANCE)];
	new_test_ext_with_balances(balances).execute_with(|| {
		let weight = 2 * BaseXcmWeight::get();
		let sender: MultiLocation =
Gavin Wood's avatar
Gavin Wood committed
39
40
			AccountId32 { network: AnyNetwork::get(), id: ALICE.into() }.into();
		let message = Xcm::ReserveAssetDeposited {
41
			assets: (Parent, SEND_AMOUNT).into(),
42
			effects: vec![
Gavin Wood's avatar
Gavin Wood committed
43
44
				buy_execution((Parent, SEND_AMOUNT), weight),
				DepositAsset { assets: All.into(), max_assets: 1, beneficiary: sender.clone() },
45
46
			],
		};
47
48
		assert_ok!(XcmPallet::send(
			Origin::signed(ALICE),
49
50
			Box::new(RelayLocation::get().into()),
			Box::new(VersionedXcm::from(message.clone()))
51
		));
52
53
54
		assert_eq!(
			sent_xcm(),
			vec![(
55
				Here.into(),
Gavin Wood's avatar
Gavin Wood committed
56
57
58
59
				RelayedFrom {
					who: sender.clone().try_into().unwrap(),
					message: Box::new(message.clone()),
				}
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
			)]
		);
		assert_eq!(
			last_event(),
			Event::XcmPallet(crate::Event::Sent(sender, RelayLocation::get(), message))
		);
	});
}

/// Test that sending an `XCM` message fails when the `XcmRouter` blocks the
/// matching message format
///
/// Asserts that `send` fails with `Error::SendFailure`
#[test]
fn send_fails_when_xcm_router_blocks() {
	let balances =
		vec![(ALICE, INITIAL_BALANCE), (ParaId::from(PARA_ID).into_account(), INITIAL_BALANCE)];
	new_test_ext_with_balances(balances).execute_with(|| {
		let weight = 2 * BaseXcmWeight::get();
		let sender: MultiLocation =
			Junction::AccountId32 { network: AnyNetwork::get(), id: ALICE.into() }.into();
Gavin Wood's avatar
Gavin Wood committed
81
82
		let message = Xcm::ReserveAssetDeposited {
			assets: (Parent, SEND_AMOUNT).into(),
83
			effects: vec![
Gavin Wood's avatar
Gavin Wood committed
84
85
				buy_execution((Parent, SEND_AMOUNT), weight),
				DepositAsset { assets: All.into(), max_assets: 1, beneficiary: sender.clone() },
86
87
88
89
90
			],
		};
		assert_noop!(
			XcmPallet::send(
				Origin::signed(ALICE),
91
92
				Box::new(MultiLocation::ancestor(8).into()),
				Box::new(VersionedXcm::from(message.clone())),
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
			),
			crate::Error::<Test>::SendFailure
		);
	});
}

/// Test `teleport_assets`
///
/// Asserts that the sender's balance is decreased as a result of execution of
/// local effects.
#[test]
fn teleport_assets_works() {
	let balances =
		vec![(ALICE, INITIAL_BALANCE), (ParaId::from(PARA_ID).into_account(), INITIAL_BALANCE)];
	new_test_ext_with_balances(balances).execute_with(|| {
		let weight = 2 * BaseXcmWeight::get();
		assert_eq!(Balances::total_balance(&ALICE), INITIAL_BALANCE);
		assert_ok!(XcmPallet::teleport_assets(
			Origin::signed(ALICE),
112
113
114
			Box::new(RelayLocation::get().into()),
			Box::new(AccountId32 { network: Any, id: BOB.into() }.into().into()),
			Box::new((Here, SEND_AMOUNT).into()),
Gavin Wood's avatar
Gavin Wood committed
115
			0,
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
			weight,
		));
		assert_eq!(Balances::total_balance(&ALICE), INITIAL_BALANCE - SEND_AMOUNT);
		assert_eq!(
			last_event(),
			Event::XcmPallet(crate::Event::Attempted(Outcome::Complete(weight)))
		);
	});
}

/// Test `reserve_transfer_assets`
///
/// Asserts that the sender's balance is decreased and the beneficiary's balance
/// is increased. Verifies the correct message is sent and event is emitted.
#[test]
fn reserve_transfer_assets_works() {
	let balances =
		vec![(ALICE, INITIAL_BALANCE), (ParaId::from(PARA_ID).into_account(), INITIAL_BALANCE)];
	new_test_ext_with_balances(balances).execute_with(|| {
		let weight = BaseXcmWeight::get();
		let dest: MultiLocation =
			Junction::AccountId32 { network: NetworkId::Any, id: ALICE.into() }.into();
		assert_eq!(Balances::total_balance(&ALICE), INITIAL_BALANCE);
		assert_ok!(XcmPallet::reserve_transfer_assets(
			Origin::signed(ALICE),
141
142
143
			Box::new(Parachain(PARA_ID).into().into()),
			Box::new(dest.clone().into()),
			Box::new((Here, SEND_AMOUNT).into()),
Gavin Wood's avatar
Gavin Wood committed
144
			0,
145
146
147
148
149
150
151
152
153
154
155
			weight
		));
		// Alice spent amount
		assert_eq!(Balances::free_balance(ALICE), INITIAL_BALANCE - SEND_AMOUNT);
		// Destination account (parachain account) has amount
		let para_acc: AccountId = ParaId::from(PARA_ID).into_account();
		assert_eq!(Balances::free_balance(para_acc), INITIAL_BALANCE + SEND_AMOUNT);
		assert_eq!(
			sent_xcm(),
			vec![(
				Parachain(PARA_ID).into(),
Gavin Wood's avatar
Gavin Wood committed
156
				Xcm::ReserveAssetDeposited {
157
					assets: (Parent, SEND_AMOUNT).into(),
158
					effects: vec![
Gavin Wood's avatar
Gavin Wood committed
159
160
						buy_execution((Parent, SEND_AMOUNT), weight),
						DepositAsset { assets: All.into(), max_assets: 1, beneficiary: dest },
161
					]
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
				}
			)]
		);
		assert_eq!(
			last_event(),
			Event::XcmPallet(crate::Event::Attempted(Outcome::Complete(weight)))
		);
	});
}

/// Test local execution of XCM
///
/// Asserts that the sender's balance is decreased and the beneficiary's balance
/// is increased. Verifies the expected event is emitted.
#[test]
fn execute_withdraw_to_deposit_works() {
	let balances =
		vec![(ALICE, INITIAL_BALANCE), (ParaId::from(PARA_ID).into_account(), INITIAL_BALANCE)];
	new_test_ext_with_balances(balances).execute_with(|| {
		let weight = 3 * BaseXcmWeight::get();
		let dest: MultiLocation =
			Junction::AccountId32 { network: NetworkId::Any, id: BOB.into() }.into();
		assert_eq!(Balances::total_balance(&ALICE), INITIAL_BALANCE);
		assert_ok!(XcmPallet::execute(
			Origin::signed(ALICE),
187
			Box::new(VersionedXcm::from(Xcm::WithdrawAsset {
Gavin Wood's avatar
Gavin Wood committed
188
				assets: (Here, SEND_AMOUNT).into(),
189
				effects: vec![
Gavin Wood's avatar
Gavin Wood committed
190
191
					buy_execution((Here, SEND_AMOUNT), weight),
					DepositAsset { assets: All.into(), max_assets: 1, beneficiary: dest }
192
				],
193
			})),
194
195
196
197
198
199
200
201
202
203
			weight
		));
		assert_eq!(Balances::total_balance(&ALICE), INITIAL_BALANCE - SEND_AMOUNT);
		assert_eq!(Balances::total_balance(&BOB), SEND_AMOUNT);
		assert_eq!(
			last_event(),
			Event::XcmPallet(crate::Event::Attempted(Outcome::Complete(weight)))
		);
	});
}