feat(command): select_all_children

This commit is contained in:
Skyler Hawthorne 2023-06-22 21:33:40 -04:00 committed by Michael Davis
parent 87c4161732
commit fa67c5c474
4 changed files with 170 additions and 6 deletions

View file

@ -601,3 +601,128 @@ async fn select_all_siblings() -> anyhow::Result<()> {
Ok(())
}
#[tokio::test(flavor = "multi_thread")]
async fn select_all_children() -> anyhow::Result<()> {
let tests = vec![
// basic tests
(
helpers::platform_line(indoc! {r##"
let foo = bar#[(a, b, c)|]#;
"##}),
"<A-I>",
helpers::platform_line(indoc! {r##"
let foo = bar(#[a|]#, #(b|)#, #(c|)#);
"##}),
),
(
helpers::platform_line(indoc! {r##"
let a = #[[
1,
2,
3,
4,
5,
]|]#;
"##}),
"<A-I>",
helpers::platform_line(indoc! {r##"
let a = [
#[1|]#,
#(2|)#,
#(3|)#,
#(4|)#,
#(5|)#,
];
"##}),
),
// direction is preserved
(
helpers::platform_line(indoc! {r##"
let a = #[|[
1,
2,
3,
4,
5,
]]#;
"##}),
"<A-I>",
helpers::platform_line(indoc! {r##"
let a = [
#[|1]#,
#(|2)#,
#(|3)#,
#(|4)#,
#(|5)#,
];
"##}),
),
// can't pick any more children - selection stays the same
(
helpers::platform_line(indoc! {r##"
let a = [
#[1|]#,
#(2|)#,
#(3|)#,
#(4|)#,
#(5|)#,
];
"##}),
"<A-I>",
helpers::platform_line(indoc! {r##"
let a = [
#[1|]#,
#(2|)#,
#(3|)#,
#(4|)#,
#(5|)#,
];
"##}),
),
// each cursor does the sibling select independently
(
helpers::platform_line(indoc! {r##"
let a = #[|[
1,
2,
3,
4,
5,
]]#;
let b = #([
"one",
"two",
"three",
"four",
"five",
]|)#;
"##}),
"<A-I>",
helpers::platform_line(indoc! {r##"
let a = [
#[|1]#,
#(|2)#,
#(|3)#,
#(|4)#,
#(|5)#,
];
let b = [
#("one"|)#,
#("two"|)#,
#("three"|)#,
#("four"|)#,
#("five"|)#,
];
"##}),
),
];
for test in tests {
test_with_config(AppBuilder::new().with_file("foo.rs", None), test).await?;
}
Ok(())
}