Unnamed repository; edit this file 'description' to name the repository.
backfill expand/shrink tests
Skyler Hawthorne 5 months ago
parent d015eff · commit 9816696
-rw-r--r--helix-term/tests/test/commands/movement.rs112
1 files changed, 112 insertions, 0 deletions
diff --git a/helix-term/tests/test/commands/movement.rs b/helix-term/tests/test/commands/movement.rs
index 5868fa49..93218be8 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|]#)
+ "##},
+ "<A-o><A-o>",
+ indoc! {r##"
+ #[Some(thing)|]#
+ "##},
+ ),
+ // multi range
+ (
+ indoc! {r##"
+ Some(#[thing|]#)
+ Some(#(other_thing|)#)
+ "##},
+ "<A-o>",
+ indoc! {r##"
+ Some#[(thing)|]#
+ Some#((other_thing)|)#
+ "##},
+ ),
+ // multi range collision merges
+ (
+ indoc! {r##"
+ (
+ Some(#[thing|]#),
+ Some(#(other_thing|)#),
+ )
+ "##},
+ "<A-o><A-o><A-o>",
+ indoc! {r##"
+ #[(
+ Some(thing),
+ Some(other_thing),
+ )|]#
+ "##},
+ ),
+ // multi range collision merges, then shrinks back to original
+ (
+ indoc! {r##"
+ (
+ Some(#[thing|]#),
+ Some(#(other_thing|)#),
+ )
+ "##},
+ "<A-o><A-o><A-o><A-i>",
+ indoc! {r##"
+ (
+ #[Some(thing)|]#,
+ #(Some(other_thing)|)#,
+ )
+ "##},
+ ),
+ (
+ indoc! {r##"
+ (
+ Some(#[thing|]#),
+ Some(#(other_thing|)#),
+ )
+ "##},
+ "<A-o><A-o><A-o><A-i><A-i>",
+ indoc! {r##"
+ (
+ Some#[(thing)|]#,
+ Some#((other_thing)|)#,
+ )
+ "##},
+ ),
+ (
+ indoc! {r##"
+ (
+ Some(#[thing|]#),
+ Some(#(other_thing|)#),
+ )
+ "##},
+ "<A-o><A-o><A-o><A-i><A-i><A-i>",
+ indoc! {r##"
+ (
+ Some(#[thing|]#),
+ Some(#(other_thing|)#),
+ )
+ "##},
+ ),
+ // shrink with no expansion history defaults to first child
+ (
+ indoc! {r##"
+ (
+ #[Some(thing)|]#,
+ Some(other_thing),
+ )
+ "##},
+ "<A-i>",
+ indoc! {r##"
+ (
+ #[Some|]#(thing),
+ Some(other_thing),
+ )
+ "##},
+ ),
+ ];
+
+ for test in tests {
+ test_with_config(AppBuilder::new().with_file("foo.rs", None), test).await?;
+ }
+
+ Ok(())
+}