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.
48 lines
1.5 KiB
Rust
48 lines
1.5 KiB
Rust
use std::{env, process};
|
|
use wasi_tests::open_scratch_directory;
|
|
|
|
unsafe fn test_remove_nonempty_directory(dir_fd: wasi::Fd) {
|
|
// Create a directory in the scratch directory.
|
|
wasi::path_create_directory(dir_fd, "dir").expect("creating a directory");
|
|
|
|
// Create a directory in the directory we just created.
|
|
wasi::path_create_directory(dir_fd, "dir/nested").expect("creating a subdirectory");
|
|
|
|
// Test that attempting to unlink the first directory returns the expected error code.
|
|
assert_eq!(
|
|
wasi::path_remove_directory(dir_fd, "dir")
|
|
.expect_err("remove_directory on a directory should return ENOTEMPTY")
|
|
.raw_error(),
|
|
wasi::ERRNO_NOTEMPTY,
|
|
"errno should be ERRNO_NOTEMPTY",
|
|
);
|
|
|
|
// Removing the directories.
|
|
wasi::path_remove_directory(dir_fd, "dir/nested")
|
|
.expect("remove_directory on a nested directory should succeed");
|
|
wasi::path_remove_directory(dir_fd, "dir").expect("removing a directory");
|
|
}
|
|
|
|
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_remove_nonempty_directory(dir_fd) }
|
|
}
|