-
Notifications
You must be signed in to change notification settings - Fork 704
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added tests for XCM barriers: AllowSubscriptions
, WithUniqueTopic
and TrailingSetTopicAsId
#3955
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
// 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/>. | ||
|
||
use super::*; | ||
use frame_support::{assert_ok, traits::Everything}; | ||
use xcm_executor::traits::Properties; | ||
|
||
fn props() -> Properties { | ||
Properties { weight_credit: Weight::zero(), message_id: None } | ||
} | ||
|
||
#[test] | ||
fn trailing_set_topic_as_id_with_unique_topic_should_work() { | ||
type AllowSubscriptions = AllowSubscriptionsFrom<Everything>; | ||
|
||
// check the validity of XCM for the `AllowSubscriptions` barrier | ||
let valid_xcm = Xcm::<()>(vec![SubscribeVersion { | ||
query_id: 42, | ||
max_response_weight: Weight::from_parts(5000, 5000), | ||
}]); | ||
assert_eq!( | ||
AllowSubscriptions::should_execute( | ||
&Location::parent(), | ||
valid_xcm.clone().inner_mut(), | ||
Weight::from_parts(10, 10), | ||
&mut props(), | ||
), | ||
Ok(()) | ||
); | ||
|
||
// simulate sending `valid_xcm` with the `WithUniqueTopic` router | ||
let mut sent_xcm = sp_io::TestExternalities::default().execute_with(|| { | ||
assert_ok!(send_xcm::<WithUniqueTopic<TestMessageSender>>(Location::parent(), valid_xcm,)); | ||
sent_xcm() | ||
}); | ||
assert_eq!(1, sent_xcm.len()); | ||
|
||
// `sent_xcm` should contain `SubscribeVersion` and have `SetTopic` added | ||
let mut sent_xcm = sent_xcm.remove(0).1; | ||
let _ = sent_xcm | ||
.0 | ||
.matcher() | ||
.assert_remaining_insts(2) | ||
.expect("two instructions") | ||
.match_next_inst(|instr| match instr { | ||
SubscribeVersion { .. } => Ok(()), | ||
_ => Err(ProcessMessageError::BadFormat), | ||
}) | ||
.expect("expected instruction `SubscribeVersion`") | ||
.match_next_inst(|instr| match instr { | ||
SetTopic(..) => Ok(()), | ||
_ => Err(ProcessMessageError::BadFormat), | ||
}) | ||
.expect("expected instruction `SetTopic`"); | ||
|
||
// `sent_xcm` contains `SetTopic` and is now invalid for `AllowSubscriptions` | ||
assert_eq!( | ||
AllowSubscriptions::should_execute( | ||
&Location::parent(), | ||
sent_xcm.clone().inner_mut(), | ||
Weight::from_parts(10, 10), | ||
&mut props(), | ||
), | ||
Err(ProcessMessageError::BadFormat) | ||
); | ||
|
||
// let's apply `TrailingSetTopicAsId` before `AllowSubscriptions` | ||
let mut props = props(); | ||
assert!(props.message_id.is_none()); | ||
|
||
// should pass, and the `message_id` is set | ||
assert_eq!( | ||
TrailingSetTopicAsId::<AllowSubscriptions>::should_execute( | ||
&Location::parent(), | ||
sent_xcm.clone().inner_mut(), | ||
Weight::from_parts(10, 10), | ||
&mut props, | ||
), | ||
Ok(()) | ||
); | ||
assert!(props.message_id.is_some()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: Not very important, but personally I would find it easier to follow and I think it would also be more extensible if we just asserted each case separately instead of iterating through a
vec
. I don't think it would create a lot of duplication.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I saw this pattern on several other places and also used it elsewhere, where I had much more test data (corner) cases than just 4 here :)
As a part of #3692 I will add a new barrier, so I will come back to this and simplify.