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.
68 lines
2.0 KiB
Rust
68 lines
2.0 KiB
Rust
use std::{env, process};
|
|
use wasi_tests::{create_file, open_scratch_directory};
|
|
|
|
unsafe fn test_unlink_file_trailing_slashes(dir_fd: wasi::Fd) {
|
|
// Create a directory in the scratch directory.
|
|
wasi::path_create_directory(dir_fd, "dir").expect("creating a directory");
|
|
|
|
// Test that unlinking it fails.
|
|
assert_eq!(
|
|
wasi::path_unlink_file(dir_fd, "dir")
|
|
.expect_err("unlink_file on a directory should fail")
|
|
.raw_error(),
|
|
wasi::ERRNO_ISDIR,
|
|
"errno should be ERRNO_ISDIR"
|
|
);
|
|
|
|
// Test that unlinking it with a trailing flash fails.
|
|
assert_eq!(
|
|
wasi::path_unlink_file(dir_fd, "dir/")
|
|
.expect_err("unlink_file on a directory should fail")
|
|
.raw_error(),
|
|
wasi::ERRNO_ISDIR,
|
|
"errno should be ERRNO_ISDIR"
|
|
);
|
|
|
|
// Clean up.
|
|
wasi::path_remove_directory(dir_fd, "dir").expect("removing a directory");
|
|
|
|
// Create a temporary file.
|
|
create_file(dir_fd, "file");
|
|
|
|
// Test that unlinking it with a trailing flash fails.
|
|
assert_eq!(
|
|
wasi::path_unlink_file(dir_fd, "file/")
|
|
.expect_err("unlink_file with a trailing slash should fail")
|
|
.raw_error(),
|
|
wasi::ERRNO_NOTDIR,
|
|
"errno should be ERRNO_NOTDIR"
|
|
);
|
|
|
|
// Test that unlinking it with no trailing flash succeeds.
|
|
wasi::path_unlink_file(dir_fd, "file")
|
|
.expect("unlink_file with no trailing slash should succeed");
|
|
}
|
|
|
|
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_unlink_file_trailing_slashes(dir_fd) }
|
|
}
|