helix-mods/helix-term/tests/test/movement.rs

88 lines
2 KiB
Rust
Raw Normal View History

2022-04-17 06:19:22 +02:00
use super::*;
#[tokio::test]
async fn insert_mode_cursor_position() -> anyhow::Result<()> {
2022-05-22 19:29:52 +02:00
test(TestCase {
in_text: String::new(),
in_selection: Selection::single(0, 0),
in_keys: "i".into(),
out_text: String::new(),
out_selection: Selection::single(0, 0),
})
.await?;
2022-04-17 06:19:22 +02:00
2022-05-22 19:29:52 +02:00
test(("#[\n|]#", "i", "#[|\n]#")).await?;
test(("#[\n|]#", "i<esc>", "#[|\n]#")).await?;
test(("#[\n|]#", "i<esc>i", "#[|\n]#")).await?;
2022-04-17 06:19:22 +02:00
Ok(())
}
/// Range direction is preserved when escaping insert mode to normal
#[tokio::test]
async fn insert_to_normal_mode_cursor_position() -> anyhow::Result<()> {
2022-05-22 19:29:52 +02:00
test(("#[f|]#oo\n", "vll<A-;><esc>", "#[|foo]#\n")).await?;
test((
indoc! {"\
2022-04-17 06:19:22 +02:00
#[f|]#oo
#(b|)#ar"
2022-05-22 19:29:52 +02:00
},
"vll<A-;><esc>",
indoc! {"\
2022-04-17 06:19:22 +02:00
#[|foo]#
#(|bar)#"
2022-05-22 19:29:52 +02:00
},
))
.await?;
2022-04-17 06:19:22 +02:00
2022-05-22 19:29:52 +02:00
test((
indoc! {"\
2022-04-17 06:19:22 +02:00
#[f|]#oo
#(b|)#ar"
2022-05-22 19:29:52 +02:00
},
"a",
indoc! {"\
2022-04-17 06:19:22 +02:00
#[fo|]#o
#(ba|)#r"
2022-05-22 19:29:52 +02:00
},
))
.await?;
2022-04-17 06:19:22 +02:00
2022-05-22 19:29:52 +02:00
test((
indoc! {"\
2022-04-17 06:19:22 +02:00
#[f|]#oo
#(b|)#ar"
2022-05-22 19:29:52 +02:00
},
"a<esc>",
indoc! {"\
2022-04-17 06:19:22 +02:00
#[f|]#oo
#(b|)#ar"
2022-05-22 19:29:52 +02:00
},
))
.await?;
2022-04-17 06:19:22 +02:00
Ok(())
}
/// Ensure the very initial cursor in an opened file is the width of
/// the first grapheme
#[tokio::test]
async fn cursor_position_newly_opened_file() -> anyhow::Result<()> {
let test = |content: &str, expected_sel: Selection| -> anyhow::Result<()> {
let file = helpers::temp_file_with_contents(content)?;
let mut app = helpers::app_with_file(file.path())?;
let (view, doc) = helix_view::current!(app.editor);
let sel = doc.selection(view.id).clone();
assert_eq!(expected_sel, sel);
Ok(())
};
test("foo", Selection::single(0, 1))?;
test("👨‍👩‍👧‍👦 foo", Selection::single(0, 7))?;
test("", Selection::single(0, 0))?;
Ok(())
}