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

130 lines
3.3 KiB
Rust
Raw Normal View History

2022-08-24 07:13:41 +02:00
use std::ops::RangeInclusive;
2022-05-01 02:47:53 +02:00
2022-05-01 02:44:54 +02:00
use helix_core::diagnostic::Severity;
use helix_term::application::Application;
use super::*;
2022-05-11 05:41:44 +02:00
#[tokio::test(flavor = "multi_thread")]
2022-05-01 02:44:54 +02:00
async fn test_write_quit_fail() -> anyhow::Result<()> {
let file = helpers::new_readonly_tempfile()?;
2022-05-01 02:44:54 +02:00
test_key_sequence(
&mut helpers::app_with_file(file.path())?,
2022-05-01 02:47:53 +02:00
Some("ihello<esc>:wq<ret>"),
2022-05-01 02:44:54 +02:00
Some(&|app| {
2022-05-11 05:41:44 +02:00
let mut docs: Vec<_> = app.editor.documents().collect();
assert_eq!(1, docs.len());
let doc = docs.pop().unwrap();
assert_eq!(Some(file.path()), doc.path().map(PathBuf::as_path));
2022-05-01 02:44:54 +02:00
assert_eq!(&Severity::Error, app.editor.get_status().unwrap().1);
}),
2022-05-23 06:24:18 +02:00
false,
2022-05-01 02:44:54 +02:00
)
.await?;
Ok(())
}
2022-05-01 02:47:53 +02:00
2022-05-10 05:08:12 +02:00
#[tokio::test(flavor = "multi_thread")]
async fn test_buffer_close_concurrent() -> anyhow::Result<()> {
2022-05-01 02:47:53 +02:00
test_key_sequences(
&mut Application::new(Args::default(), Config::default())?,
vec![
(
None,
Some(&|app| {
assert_eq!(1, app.editor.documents().count());
assert!(!app.editor.is_err());
}),
),
(
Some("ihello<esc>:new<ret>"),
Some(&|app| {
assert_eq!(2, app.editor.documents().count());
assert!(!app.editor.is_err());
}),
),
(
Some(":buffer<minus>close<ret>"),
Some(&|app| {
assert_eq!(1, app.editor.documents().count());
assert!(!app.editor.is_err());
}),
),
],
2022-05-23 06:24:18 +02:00
false,
2022-05-01 02:47:53 +02:00
)
.await?;
// verify if writes are queued up, it finishes them before closing the buffer
let mut file = tempfile::NamedTempFile::new()?;
2022-05-01 02:47:53 +02:00
let mut command = String::new();
const RANGE: RangeInclusive<i32> = 1..=1000;
2022-05-01 02:47:53 +02:00
for i in RANGE {
let cmd = format!("%c{}<esc>:w<ret>", i);
command.push_str(&cmd);
}
command.push_str(":buffer<minus>close<ret>");
test_key_sequence(
&mut helpers::app_with_file(file.path())?,
2022-05-01 02:47:53 +02:00
Some(&command),
Some(&|app| {
assert!(!app.editor.is_err(), "error: {:?}", app.editor.get_status());
let doc = app.editor.document_by_path(file.path());
assert!(doc.is_none(), "found doc: {:?}", doc);
}),
2022-05-23 06:24:18 +02:00
false,
2022-05-01 02:47:53 +02:00
)
.await?;
2022-08-24 07:13:41 +02:00
helpers::assert_file_has_content(file.as_file_mut(), &RANGE.end().to_string())?;
2022-05-01 02:47:53 +02:00
Ok(())
}
#[tokio::test]
async fn test_selection_duplication() -> anyhow::Result<()> {
// Forward
test((
platform_line(indoc! {"\
#[lo|]#rem
ipsum
dolor
"})
.as_str(),
"CC",
platform_line(indoc! {"\
#(lo|)#rem
#(ip|)#sum
#[do|]#lor
"})
.as_str(),
))
.await?;
// Backward
test((
platform_line(indoc! {"\
#[|lo]#rem
ipsum
dolor
"})
.as_str(),
"CC",
platform_line(indoc! {"\
#(|lo)#rem
#(|ip)#sum
#[|do]#lor
"})
.as_str(),
))
.await?;
Ok(())
}