This commit updates _all_ WASI test programs to use the latest version of the `wasi` crate (`v0.9.0`). While at it, it also unifies asserting error conditions across all test programs.
105 lines
2.8 KiB
Rust
105 lines
2.8 KiB
Rust
use more_asserts::assert_gt;
|
|
use std::{env, process};
|
|
use wasi_tests::open_scratch_directory;
|
|
|
|
unsafe fn test_renumber(dir_fd: wasi::Fd) {
|
|
let pre_fd: wasi::Fd = (libc::STDERR_FILENO + 1) as wasi::Fd;
|
|
|
|
assert_gt!(dir_fd, pre_fd, "dir_fd number");
|
|
|
|
// Create a file in the scratch directory.
|
|
let fd_from = wasi::path_open(
|
|
dir_fd,
|
|
0,
|
|
"file1",
|
|
wasi::OFLAGS_CREAT,
|
|
wasi::RIGHTS_FD_READ | wasi::RIGHTS_FD_WRITE,
|
|
0,
|
|
0,
|
|
)
|
|
.expect("opening a file");
|
|
assert_gt!(
|
|
fd_from,
|
|
libc::STDERR_FILENO as wasi::Fd,
|
|
"file descriptor range check",
|
|
);
|
|
|
|
// Get fd_from fdstat attributes
|
|
let fdstat_from =
|
|
wasi::fd_fdstat_get(fd_from).expect("calling fd_fdstat on the open file descriptor");
|
|
|
|
// Create another file in the scratch directory.
|
|
let fd_to = wasi::path_open(
|
|
dir_fd,
|
|
0,
|
|
"file2",
|
|
wasi::OFLAGS_CREAT,
|
|
wasi::RIGHTS_FD_READ | wasi::RIGHTS_FD_WRITE,
|
|
0,
|
|
0,
|
|
)
|
|
.expect("opening a file");
|
|
assert_gt!(
|
|
fd_to,
|
|
libc::STDERR_FILENO as wasi::Fd,
|
|
"file descriptor range check",
|
|
);
|
|
|
|
// Renumber fd of file1 into fd of file2
|
|
wasi::fd_renumber(fd_from, fd_to).expect("renumbering two descriptors");
|
|
|
|
// Ensure that fd_from is closed
|
|
assert_eq!(
|
|
wasi::fd_close(fd_from)
|
|
.expect_err("closing already closed file descriptor")
|
|
.raw_error(),
|
|
wasi::ERRNO_BADF,
|
|
"errno should be ERRNO_BADF"
|
|
);
|
|
|
|
// Ensure that fd_to is still open.
|
|
let fdstat_to =
|
|
wasi::fd_fdstat_get(fd_to).expect("calling fd_fdstat on the open file descriptor");
|
|
assert_eq!(
|
|
fdstat_from.fs_filetype, fdstat_to.fs_filetype,
|
|
"expected fd_to have the same fdstat as fd_from"
|
|
);
|
|
assert_eq!(
|
|
fdstat_from.fs_flags, fdstat_to.fs_flags,
|
|
"expected fd_to have the same fdstat as fd_from"
|
|
);
|
|
assert_eq!(
|
|
fdstat_from.fs_rights_base, fdstat_to.fs_rights_base,
|
|
"expected fd_to have the same fdstat as fd_from"
|
|
);
|
|
assert_eq!(
|
|
fdstat_from.fs_rights_inheriting, fdstat_to.fs_rights_inheriting,
|
|
"expected fd_to have the same fdstat as fd_from"
|
|
);
|
|
|
|
wasi::fd_close(fd_to).expect("closing a 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_renumber(dir_fd) }
|
|
}
|