diff --git a/helix-term/tests/test/commands/movement.rs b/helix-term/tests/test/commands/movement.rs index 5868fa494..93218be82 100644 --- a/helix-term/tests/test/commands/movement.rs +++ b/helix-term/tests/test/commands/movement.rs @@ -948,3 +948,115 @@ async fn match_bracket() -> anyhow::Result<()> { Ok(()) } + +#[tokio::test(flavor = "multi_thread")] +async fn expand_shrink_selection() -> anyhow::Result<()> { + let tests = vec![ + // single range + ( + indoc! {r##" + Some(#[thing|]#) + "##}, + "", + indoc! {r##" + #[Some(thing)|]# + "##}, + ), + // multi range + ( + indoc! {r##" + Some(#[thing|]#) + Some(#(other_thing|)#) + "##}, + "", + indoc! {r##" + Some#[(thing)|]# + Some#((other_thing)|)# + "##}, + ), + // multi range collision merges + ( + indoc! {r##" + ( + Some(#[thing|]#), + Some(#(other_thing|)#), + ) + "##}, + "", + indoc! {r##" + #[( + Some(thing), + Some(other_thing), + )|]# + "##}, + ), + // multi range collision merges, then shrinks back to original + ( + indoc! {r##" + ( + Some(#[thing|]#), + Some(#(other_thing|)#), + ) + "##}, + "", + indoc! {r##" + ( + #[Some(thing)|]#, + #(Some(other_thing)|)#, + ) + "##}, + ), + ( + indoc! {r##" + ( + Some(#[thing|]#), + Some(#(other_thing|)#), + ) + "##}, + "", + indoc! {r##" + ( + Some#[(thing)|]#, + Some#((other_thing)|)#, + ) + "##}, + ), + ( + indoc! {r##" + ( + Some(#[thing|]#), + Some(#(other_thing|)#), + ) + "##}, + "", + indoc! {r##" + ( + Some(#[thing|]#), + Some(#(other_thing|)#), + ) + "##}, + ), + // shrink with no expansion history defaults to first child + ( + indoc! {r##" + ( + #[Some(thing)|]#, + Some(other_thing), + ) + "##}, + "", + indoc! {r##" + ( + #[Some|]#(thing), + Some(other_thing), + ) + "##}, + ), + ]; + + for test in tests { + test_with_config(AppBuilder::new().with_file("foo.rs", None), test).await?; + } + + Ok(()) +}