#![expect(unsafe_op_in_unsafe_fn, reason = "old code, not worth updating yet")] use std::{env, process}; use test_programs::preview1::{assert_errno, create_file, open_scratch_directory}; unsafe fn test_remove_directory(dir_fd: wasip1::Fd) { // Create a directory in the scratch directory. wasip1::path_create_directory(dir_fd, "dir").expect("creating a directory"); // Test that removing it succeeds. wasip1::path_remove_directory(dir_fd, "dir") .expect("remove_directory on a directory should succeed"); // There isn't consistient behavior across operating systems of whether removing with a // directory where the path has a trailing slash succeeds or fails, so we won't test // that behavior. // Create a temporary file. create_file(dir_fd, "file"); // Test that removing it with no trailing slash fails. assert_errno!( wasip1::path_remove_directory(dir_fd, "file") .expect_err("remove_directory without a trailing slash on a file should fail"), wasip1::ERRNO_NOTDIR ); // Test that removing it with a trailing slash fails. assert_errno!( wasip1::path_remove_directory(dir_fd, "file/") .expect_err("remove_directory with a trailing slash on a file should fail"), wasip1::ERRNO_NOTDIR ); wasip1::path_unlink_file(dir_fd, "file").expect("removing 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: {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_directory(dir_fd) } }