mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Use a temporary file for writes (#9236)
Co-authored-by: Pascal Kuthe <pascalkuthe@pm.me>
This commit is contained in:
parent
a224ee5079
commit
88d455afeb
9 changed files with 569 additions and 77 deletions
|
@ -1,5 +1,4 @@
|
|||
use std::{
|
||||
fs::File,
|
||||
io::{Read, Write},
|
||||
mem::replace,
|
||||
path::PathBuf,
|
||||
|
@ -390,9 +389,8 @@ pub async fn run_event_loop_until_idle(app: &mut Application) {
|
|||
app.event_loop_until_idle(&mut rx_stream).await;
|
||||
}
|
||||
|
||||
pub fn assert_file_has_content(file: &mut File, content: &str) -> anyhow::Result<()> {
|
||||
file.flush()?;
|
||||
file.sync_all()?;
|
||||
pub fn assert_file_has_content(file: &mut NamedTempFile, content: &str) -> anyhow::Result<()> {
|
||||
reload_file(file)?;
|
||||
|
||||
let mut file_content = String::new();
|
||||
file.read_to_string(&mut file_content)?;
|
||||
|
@ -406,3 +404,13 @@ pub fn assert_status_not_error(editor: &Editor) {
|
|||
assert_ne!(&Severity::Error, sev);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn reload_file(file: &mut NamedTempFile) -> anyhow::Result<()> {
|
||||
let path = file.path();
|
||||
let f = std::fs::OpenOptions::new()
|
||||
.write(true)
|
||||
.read(true)
|
||||
.open(&path)?;
|
||||
*file.as_file_mut() = f;
|
||||
Ok(())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue