Browse Source
* add a preview1_file_write test to show behavior of large file writes reproduces #7390 * filesystem output-stream: update position cursorpull/7433/head
Pat Hickey
1 year ago
committed by
GitHub
7 changed files with 139 additions and 4 deletions
@ -0,0 +1,106 @@ |
|||
use std::{env, process}; |
|||
use test_programs::preview1::open_scratch_directory; |
|||
|
|||
unsafe fn test_file_long_write(dir_fd: wasi::Fd, filename: &str) { |
|||
// Open a file for writing
|
|||
let file_fd = wasi::path_open( |
|||
dir_fd, |
|||
0, |
|||
filename, |
|||
wasi::OFLAGS_CREAT, |
|||
wasi::RIGHTS_FD_WRITE, |
|||
0, |
|||
0, |
|||
) |
|||
.expect("creating a file for writing"); |
|||
|
|||
let mut content = Vec::new(); |
|||
// 16 byte string, 4096 times, is 64k
|
|||
for n in 0..4096 { |
|||
let chunk = format!("123456789 {n:05} "); |
|||
assert_eq!(chunk.as_str().as_bytes().len(), 16); |
|||
content.extend_from_slice(chunk.as_str().as_bytes()); |
|||
} |
|||
|
|||
// Write to the file
|
|||
let nwritten = wasi::fd_write( |
|||
file_fd, |
|||
&[wasi::Ciovec { |
|||
buf: content.as_slice().as_ptr() as *const _, |
|||
buf_len: content.len(), |
|||
}], |
|||
) |
|||
.expect("writing file content"); |
|||
assert_eq!(nwritten, content.len(), "nwritten bytes check"); |
|||
|
|||
let stat = wasi::fd_filestat_get(file_fd).expect("reading file stats"); |
|||
assert_eq!( |
|||
stat.size, |
|||
content.len() as u64, |
|||
"file should be size of content", |
|||
); |
|||
|
|||
wasi::fd_close(file_fd).expect("closing the file"); |
|||
// Open the file for reading
|
|||
let file_fd = wasi::path_open(dir_fd, 0, filename, 0, wasi::RIGHTS_FD_READ, 0, 0) |
|||
.expect("open the file for reading"); |
|||
|
|||
// Read the file's contents
|
|||
let buffer = &mut [0u8; 100]; |
|||
let nread = wasi::fd_read( |
|||
file_fd, |
|||
&[wasi::Iovec { |
|||
buf: buffer.as_mut_ptr(), |
|||
buf_len: buffer.len(), |
|||
}], |
|||
) |
|||
.expect("reading first chunk file content"); |
|||
|
|||
assert_eq!(nread, buffer.len(), "read first chunk"); |
|||
assert_eq!( |
|||
buffer, |
|||
&content[..buffer.len()], |
|||
"contents of first read chunk" |
|||
); |
|||
|
|||
let end_cursor = content.len() - buffer.len(); |
|||
wasi::fd_seek(file_fd, end_cursor as i64, wasi::WHENCE_SET) |
|||
.expect("seeking to end of file minus buffer size"); |
|||
|
|||
let nread = wasi::fd_read( |
|||
file_fd, |
|||
&[wasi::Iovec { |
|||
buf: buffer.as_mut_ptr(), |
|||
buf_len: buffer.len(), |
|||
}], |
|||
) |
|||
.expect("reading end chunk of file content"); |
|||
|
|||
assert_eq!(nread, buffer.len(), "read end chunk len"); |
|||
assert_eq!(buffer, &content[end_cursor..], "contents of end read chunk"); |
|||
|
|||
wasi::fd_close(file_fd).expect("closing the file"); |
|||
} |
|||
|
|||
fn main() { |
|||
let mut args = env::args(); |
|||
let prog = args.next().unwrap(); |
|||
let arg = if let Some(arg) = args.next() { |
|||
arg |
|||
} else { |
|||
eprintln!("usage: {} <scratch directory>", prog); |
|||
process::exit(1); |
|||
}; |
|||
|
|||
// Open scratch directory
|
|||
let dir_fd = match open_scratch_directory(&arg) { |
|||
Ok(dir_fd) => dir_fd, |
|||
Err(err) => { |
|||
eprintln!("{}", err); |
|||
process::exit(1) |
|||
} |
|||
}; |
|||
|
|||
// Run the tests.
|
|||
unsafe { test_file_long_write(dir_fd, "long_write.txt") } |
|||
} |
Loading…
Reference in new issue