Skip to content

Commit

Permalink
Match error message from async File::create std File::create
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasper van Herpt committed Oct 14, 2021
1 parent f4b8c7a commit 6f61c9d
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/fs/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ impl File {
let path = path.as_ref().to_owned();
let file = spawn_blocking(move || {
std::fs::File::create(&path)
.context(|| format!("could not create `{}`", path.display()))
})
.await?;
Ok(File::new(file, true))
Expand Down Expand Up @@ -903,4 +902,15 @@ mod tests {
assert_eq!(len as u64, file.metadata().await.unwrap().len());
});
}

#[test]
fn async_file_create_error () {
let file_name = Path::new("/tmp/does_not_exist/test");
let expect = std::fs::File::create(file_name).unwrap_err();

crate::task::block_on(async move {
let actual = File::create(file_name).await.unwrap_err();
assert_eq!(format!("{}", expect), format!("{}", actual));
})
}
}

0 comments on commit 6f61c9d

Please sign in to comment.