mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Read symlink when writing files (#10339)
Co-authored-by: Pascal Kuthe <pascalkuthe@pm.me>
This commit is contained in:
parent
c9ae694aff
commit
6d363a978d
3 changed files with 95 additions and 6 deletions
|
@ -305,6 +305,18 @@ pub fn new_readonly_tempfile() -> anyhow::Result<NamedTempFile> {
|
|||
Ok(file)
|
||||
}
|
||||
|
||||
/// Creates a new temporary file in the directory that is set to read only. Useful for
|
||||
/// testing write failures.
|
||||
pub fn new_readonly_tempfile_in_dir(
|
||||
dir: impl AsRef<std::path::Path>,
|
||||
) -> anyhow::Result<NamedTempFile> {
|
||||
let mut file = tempfile::NamedTempFile::new_in(dir)?;
|
||||
let metadata = file.as_file().metadata()?;
|
||||
let mut perms = metadata.permissions();
|
||||
perms.set_readonly(true);
|
||||
file.as_file_mut().set_permissions(perms)?;
|
||||
Ok(file)
|
||||
}
|
||||
pub struct AppBuilder {
|
||||
args: Args,
|
||||
config: Config,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue