forked from paritytech/polkadot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lib.rs
447 lines (402 loc) · 13.6 KB
/
lib.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
109
110
111
112
113
114
115
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
// Copyright (C) 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/>.
//! Test kit to simulate cross-chain message passing and XCM execution.
pub use codec::Encode;
pub use paste;
pub use frame_support::{
traits::{EnqueueMessage, Get, ProcessMessage, ProcessMessageError, ServiceQueues},
weights::{Weight, WeightMeter},
};
pub use sp_io::{hashing::blake2_256, TestExternalities};
pub use sp_std::{cell::RefCell, collections::vec_deque::VecDeque, marker::PhantomData};
pub use polkadot_core_primitives::BlockNumber as RelayBlockNumber;
pub use polkadot_parachain_primitives::primitives::{
DmpMessageHandler as DmpMessageHandlerT, Id as ParaId, XcmpMessageFormat,
XcmpMessageHandler as XcmpMessageHandlerT,
};
pub use polkadot_runtime_parachains::{
dmp,
inclusion::{AggregateMessageOrigin, UmpQueueId},
};
pub use xcm::{latest::prelude::*, VersionedXcm};
pub use xcm_builder::ProcessXcmMessage;
pub use xcm_executor::XcmExecutor;
pub trait TestExt {
/// Initialize the test environment.
fn new_ext() -> sp_io::TestExternalities;
/// Resets the state of the test environment.
fn reset_ext();
/// Execute code in the context of the test externalities, without automatic
/// message processing. All messages in the message buses can be processed
/// by calling `Self::dispatch_xcm_buses()`.
fn execute_without_dispatch<R>(execute: impl FnOnce() -> R) -> R;
/// Process all messages in the message buses
fn dispatch_xcm_buses();
/// Execute some code in the context of the test externalities, with
/// automatic message processing.
/// Messages are dispatched once the passed closure completes.
fn execute_with<R>(execute: impl FnOnce() -> R) -> R {
let result = Self::execute_without_dispatch(execute);
Self::dispatch_xcm_buses();
result
}
}
pub enum MessageKind {
Ump,
Dmp,
Xcmp,
}
/// Encodes the provided XCM message based on the `message_kind`.
pub fn encode_xcm(message: Xcm<()>, message_kind: MessageKind) -> Vec<u8> {
match message_kind {
MessageKind::Ump | MessageKind::Dmp => VersionedXcm::<()>::from(message).encode(),
MessageKind::Xcmp => {
let fmt = XcmpMessageFormat::ConcatenatedVersionedXcm;
let mut outbound = fmt.encode();
let encoded = VersionedXcm::<()>::from(message).encode();
outbound.extend_from_slice(&encoded[..]);
outbound
},
}
}
pub fn fake_message_hash<T>(message: &Xcm<T>) -> XcmHash {
message.using_encoded(blake2_256)
}
/// The macro is implementing upward message passing(UMP) for the provided relay
/// chain struct. The struct has to provide the XCM configuration for the relay
/// chain.
///
/// ```ignore
/// decl_test_relay_chain! {
/// pub struct Relay {
/// Runtime = relay_chain::Runtime,
/// XcmConfig = relay_chain::XcmConfig,
/// new_ext = relay_ext(),
/// }
/// }
/// ```
#[macro_export]
#[rustfmt::skip]
macro_rules! decl_test_relay_chain {
(
pub struct $name:ident {
Runtime = $runtime:path,
RuntimeCall = $runtime_call:path,
RuntimeEvent = $runtime_event:path,
XcmConfig = $xcm_config:path,
MessageQueue = $mq:path,
System = $system:path,
new_ext = $new_ext:expr,
}
) => {
pub struct $name;
$crate::__impl_ext!($name, $new_ext);
impl $crate::ProcessMessage for $name {
type Origin = $crate::ParaId;
fn process_message(
msg: &[u8],
para: Self::Origin,
meter: &mut $crate::WeightMeter,
id: &mut [u8; 32],
) -> Result<bool, $crate::ProcessMessageError> {
use $crate::{Weight, AggregateMessageOrigin, UmpQueueId, ServiceQueues, EnqueueMessage};
use $mq as message_queue;
use $runtime_event as runtime_event;
Self::execute_with(|| {
<$mq as EnqueueMessage<AggregateMessageOrigin>>::enqueue_message(
msg.try_into().expect("Message too long"),
AggregateMessageOrigin::Ump(UmpQueueId::Para(para.clone()))
);
<$system>::reset_events();
<$mq as ServiceQueues>::service_queues(Weight::MAX);
let events = <$system>::events();
let event = events.last().expect("There must be at least one event");
match &event.event {
runtime_event::MessageQueue(
pallet_message_queue::Event::Processed {origin, ..}) => {
assert_eq!(origin, &AggregateMessageOrigin::Ump(UmpQueueId::Para(para)));
},
event => panic!("Unexpected event: {:#?}", event),
}
Ok(true)
})
}
}
};
}
/// The macro is implementing the `XcmMessageHandlerT` and `DmpMessageHandlerT`
/// traits for the provided parachain struct. Expects the provided parachain
/// struct to define the XcmpMessageHandler and DmpMessageHandler pallets that
/// contain the message handling logic.
///
/// ```ignore
/// decl_test_parachain! {
/// pub struct ParaA {
/// Runtime = parachain::Runtime,
/// XcmpMessageHandler = parachain::MsgQueue,
/// DmpMessageHandler = parachain::MsgQueue,
/// new_ext = para_ext(),
/// }
/// }
/// ```
#[macro_export]
macro_rules! decl_test_parachain {
(
pub struct $name:ident {
Runtime = $runtime:path,
XcmpMessageHandler = $xcmp_message_handler:path,
DmpMessageHandler = $dmp_message_handler:path,
new_ext = $new_ext:expr,
}
) => {
pub struct $name;
$crate::__impl_ext!($name, $new_ext);
impl $crate::XcmpMessageHandlerT for $name {
fn handle_xcmp_messages<
'a,
I: Iterator<Item = ($crate::ParaId, $crate::RelayBlockNumber, &'a [u8])>,
>(
iter: I,
max_weight: $crate::Weight,
) -> $crate::Weight {
use $crate::{TestExt, XcmpMessageHandlerT};
$name::execute_with(|| {
<$xcmp_message_handler>::handle_xcmp_messages(iter, max_weight)
})
}
}
impl $crate::DmpMessageHandlerT for $name {
fn handle_dmp_messages(
iter: impl Iterator<Item = ($crate::RelayBlockNumber, Vec<u8>)>,
max_weight: $crate::Weight,
) -> $crate::Weight {
use $crate::{DmpMessageHandlerT, TestExt};
$name::execute_with(|| {
<$dmp_message_handler>::handle_dmp_messages(iter, max_weight)
})
}
}
};
}
/// Implements the `TestExt` trait for a specified struct.
#[macro_export]
macro_rules! __impl_ext {
// entry point: generate ext name
($name:ident, $new_ext:expr) => {
$crate::paste::paste! {
$crate::__impl_ext!(@impl $name, $new_ext, [<EXT_ $name:upper>]);
}
};
// impl
(@impl $name:ident, $new_ext:expr, $ext_name:ident) => {
thread_local! {
pub static $ext_name: $crate::RefCell<$crate::TestExternalities>
= $crate::RefCell::new($new_ext);
}
impl $crate::TestExt for $name {
fn new_ext() -> $crate::TestExternalities {
$new_ext
}
fn reset_ext() {
$ext_name.with(|v| *v.borrow_mut() = $new_ext);
}
fn execute_without_dispatch<R>(execute: impl FnOnce() -> R) -> R {
$ext_name.with(|v| v.borrow_mut().execute_with(execute))
}
fn dispatch_xcm_buses() {
while exists_messages_in_any_bus() {
if let Err(xcm_error) = process_relay_messages() {
panic!("Relay chain XCM execution failure: {:?}", xcm_error);
}
if let Err(xcm_error) = process_para_messages() {
panic!("Parachain XCM execution failure: {:?}", xcm_error);
}
}
}
}
};
}
thread_local! {
pub static PARA_MESSAGE_BUS: RefCell<VecDeque<(ParaId, Location, Xcm<()>)>>
= RefCell::new(VecDeque::new());
pub static RELAY_MESSAGE_BUS: RefCell<VecDeque<(Location, Xcm<()>)>>
= RefCell::new(VecDeque::new());
}
/// Declares a test network that consists of a relay chain and multiple
/// parachains. Expects a network struct as an argument and implements testing
/// functionality, `ParachainXcmRouter` and the `RelayChainXcmRouter`. The
/// struct needs to contain the relay chain struct and an indexed list of
/// parachains that are going to be in the network.
///
/// ```ignore
/// decl_test_network! {
/// pub struct ExampleNet {
/// relay_chain = Relay,
/// parachains = vec![
/// (1, ParaA),
/// (2, ParaB),
/// ],
/// }
/// }
/// ```
#[macro_export]
macro_rules! decl_test_network {
(
pub struct $name:ident {
relay_chain = $relay_chain:ty,
parachains = vec![ $( ($para_id:expr, $parachain:ty), )* ],
}
) => {
use $crate::Encode;
pub struct $name;
impl $name {
pub fn reset() {
use $crate::{TestExt, VecDeque};
// Reset relay chain message bus.
$crate::RELAY_MESSAGE_BUS.with(|b| b.replace(VecDeque::new()));
// Reset parachain message bus.
$crate::PARA_MESSAGE_BUS.with(|b| b.replace(VecDeque::new()));
<$relay_chain>::reset_ext();
$( <$parachain>::reset_ext(); )*
}
}
/// Check if any messages exist in either message bus.
fn exists_messages_in_any_bus() -> bool {
use $crate::{RELAY_MESSAGE_BUS, PARA_MESSAGE_BUS};
let no_relay_messages_left = RELAY_MESSAGE_BUS.with(|b| b.borrow().is_empty());
let no_parachain_messages_left = PARA_MESSAGE_BUS.with(|b| b.borrow().is_empty());
!(no_relay_messages_left && no_parachain_messages_left)
}
/// Process all messages originating from parachains.
fn process_para_messages() -> $crate::XcmResult {
use $crate::{ProcessMessage, XcmpMessageHandlerT};
while let Some((para_id, destination, message)) = $crate::PARA_MESSAGE_BUS.with(
|b| b.borrow_mut().pop_front()) {
match destination.unpack() {
(1, []) => {
let encoded = $crate::encode_xcm(message, $crate::MessageKind::Ump);
let mut _id = [0; 32];
let r = <$relay_chain>::process_message(
encoded.as_slice(), para_id,
&mut $crate::WeightMeter::new(),
&mut _id,
);
match r {
Err($crate::ProcessMessageError::Overweight(required)) =>
return Err($crate::XcmError::WeightLimitReached(required)),
// Not really the correct error, but there is no "undecodable".
Err(_) => return Err($crate::XcmError::Unimplemented),
Ok(_) => (),
}
},
$(
(1, [$crate::Parachain(id)]) if *id == $para_id => {
let encoded = $crate::encode_xcm(message, $crate::MessageKind::Xcmp);
let messages = vec![(para_id, 1, &encoded[..])];
let _weight = <$parachain>::handle_xcmp_messages(
messages.into_iter(),
$crate::Weight::MAX,
);
},
)*
_ => {
return Err($crate::XcmError::Unroutable);
}
}
}
Ok(())
}
/// Process all messages originating from the relay chain.
fn process_relay_messages() -> $crate::XcmResult {
use $crate::DmpMessageHandlerT;
while let Some((destination, message)) = $crate::RELAY_MESSAGE_BUS.with(
|b| b.borrow_mut().pop_front()) {
match destination.unpack() {
$(
(0, [$crate::Parachain(id)]) if *id == $para_id => {
let encoded = $crate::encode_xcm(message, $crate::MessageKind::Dmp);
// NOTE: RelayChainBlockNumber is hard-coded to 1
let messages = vec![(1, encoded)];
let _weight = <$parachain>::handle_dmp_messages(
messages.into_iter(), $crate::Weight::MAX,
);
},
)*
_ => return Err($crate::XcmError::Transport("Only sends to children parachain.")),
}
}
Ok(())
}
/// XCM router for parachain.
pub struct ParachainXcmRouter<T>($crate::PhantomData<T>);
impl<T: $crate::Get<$crate::ParaId>> $crate::SendXcm for ParachainXcmRouter<T> {
type Ticket = ($crate::ParaId, $crate::Location, $crate::Xcm<()>);
fn validate(
destination: &mut Option<$crate::Location>,
message: &mut Option<$crate::Xcm<()>>,
) -> $crate::SendResult<($crate::ParaId, $crate::Location, $crate::Xcm<()>)> {
use $crate::XcmpMessageHandlerT;
let d = destination.take().ok_or($crate::SendError::MissingArgument)?;
match d.unpack() {
(1, []) => {},
$(
(1, [$crate::Parachain(id)]) if id == &$para_id => {}
)*
_ => {
*destination = Some(d);
return Err($crate::SendError::NotApplicable)
},
}
let m = message.take().ok_or($crate::SendError::MissingArgument)?;
Ok(((T::get(), d, m), $crate::Assets::new()))
}
fn deliver(
triple: ($crate::ParaId, $crate::Location, $crate::Xcm<()>),
) -> Result<$crate::XcmHash, $crate::SendError> {
let hash = $crate::fake_message_hash(&triple.2);
$crate::PARA_MESSAGE_BUS.with(|b| b.borrow_mut().push_back(triple));
Ok(hash)
}
}
/// XCM router for relay chain.
pub struct RelayChainXcmRouter;
impl $crate::SendXcm for RelayChainXcmRouter {
type Ticket = ($crate::Location, $crate::Xcm<()>);
fn validate(
destination: &mut Option<$crate::Location>,
message: &mut Option<$crate::Xcm<()>>,
) -> $crate::SendResult<($crate::Location, $crate::Xcm<()>)> {
use $crate::DmpMessageHandlerT;
let d = destination.take().ok_or($crate::SendError::MissingArgument)?;
match d.unpack() {
$(
(0, [$crate::Parachain(id)]) if id == &$para_id => {},
)*
_ => {
*destination = Some(d);
return Err($crate::SendError::NotApplicable)
},
}
let m = message.take().ok_or($crate::SendError::MissingArgument)?;
Ok(((d, m), $crate::Assets::new()))
}
fn deliver(
pair: ($crate::Location, $crate::Xcm<()>),
) -> Result<$crate::XcmHash, $crate::SendError> {
let hash = $crate::fake_message_hash(&pair.1);
$crate::RELAY_MESSAGE_BUS.with(|b| b.borrow_mut().push_back(pair));
Ok(hash)
}
}
};
}