-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6d25a00
commit 910a1e2
Showing
3 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#![cfg(all(feature = "compat"))] | ||
#![cfg(not(target_os = "wasi"))] // WASI does not support all fs operations | ||
#![warn(rust_2018_idioms)] | ||
|
||
use futures_io::SeekFrom; | ||
use futures_util::{AsyncReadExt, AsyncSeekExt, AsyncWriteExt}; | ||
use tempfile::NamedTempFile; | ||
use tokio::fs::OpenOptions; | ||
use tokio_util::compat::TokioAsyncWriteCompatExt; | ||
|
||
#[tokio::test] | ||
async fn compat_file_seek() -> futures_util::io::Result<()> { | ||
let temp_file = NamedTempFile::new()?; | ||
let mut file = OpenOptions::new() | ||
.read(true) | ||
.write(true) | ||
.create(true) | ||
.open(temp_file) | ||
.await? | ||
.compat_write(); | ||
|
||
file.write_all(&[0, 1, 2, 3, 4, 5]).await?; | ||
file.write_all(&[6, 7]).await?; | ||
|
||
assert_eq!(file.stream_position().await?, 8); | ||
|
||
// Modify elements at position 2. | ||
assert_eq!(file.seek(SeekFrom::Start(2)).await?, 2); | ||
file.write_all(&[8, 9]).await?; | ||
|
||
file.flush().await?; | ||
|
||
// Verify we still have 8 elements. | ||
assert_eq!(file.seek(SeekFrom::End(0)).await?, 8); | ||
// Seek back to the start of the file to read and verify contents. | ||
file.seek(SeekFrom::Start(0)).await?; | ||
|
||
let mut buf = Vec::new(); | ||
let num_bytes = file.read_to_end(&mut buf).await?; | ||
assert_eq!(&buf[..num_bytes], &[0, 1, 8, 9, 4, 5, 6, 7]); | ||
|
||
Ok(()) | ||
} |