1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

chore: manual inline formatting

Minor manual cleanup - inlined many format args.  This makes the code a bit more readable, and helps spot a few inefficiencies and possible bugs.  Note that `&foo` in a `format!` parameter results in a 6% extra performance cost, and does not get inlined by the compiler (yet).
This commit is contained in:
Yuri Astrakhan 2025-04-07 22:56:21 -04:00
parent b7bf8c9467
commit 982805d3cd
29 changed files with 133 additions and 183 deletions

View file

@ -130,10 +130,10 @@ fuzz_target!(|_data: &[u8]| {
if let Ok(checksum_file_path) = if let Ok(checksum_file_path) =
generate_checksum_file(algo, &file_path, &selected_digest_opts) generate_checksum_file(algo, &file_path, &selected_digest_opts)
{ {
print_test_begin(format!("cksum {:?}", args)); print_test_begin(format!("cksum {args:?}"));
if let Ok(content) = fs::read_to_string(&checksum_file_path) { if let Ok(content) = fs::read_to_string(&checksum_file_path) {
println!("File content ({})", checksum_file_path); println!("File content ({checksum_file_path})");
print_or_empty(&content); print_or_empty(&content);
} else { } else {
eprintln!("Error reading the checksum file."); eprintln!("Error reading the checksum file.");

View file

@ -43,7 +43,7 @@ pub fn is_gnu_cmd(cmd_path: &str) -> Result<(), std::io::Error> {
CHECK_GNU.call_once(|| { CHECK_GNU.call_once(|| {
let version_output = Command::new(cmd_path).arg("--version").output().unwrap(); let version_output = Command::new(cmd_path).arg("--version").output().unwrap();
println!("version_output {:#?}", version_output); println!("version_output {version_output:#?}");
let version_str = String::from_utf8_lossy(&version_output.stdout).to_string(); let version_str = String::from_utf8_lossy(&version_output.stdout).to_string();
if version_str.contains("GNU coreutils") { if version_str.contains("GNU coreutils") {
@ -112,7 +112,7 @@ where
let original_stdin_fd = if let Some(input_str) = pipe_input { let original_stdin_fd = if let Some(input_str) = pipe_input {
// we have pipe input // we have pipe input
let mut input_file = tempfile::tempfile().unwrap(); let mut input_file = tempfile::tempfile().unwrap();
write!(input_file, "{}", input_str).unwrap(); write!(input_file, "{input_str}").unwrap();
input_file.seek(SeekFrom::Start(0)).unwrap(); input_file.seek(SeekFrom::Start(0)).unwrap();
// Redirect stdin to read from the in-memory file // Redirect stdin to read from the in-memory file
@ -320,10 +320,10 @@ pub fn compare_result(
gnu_result: &CommandResult, gnu_result: &CommandResult,
fail_on_stderr_diff: bool, fail_on_stderr_diff: bool,
) { ) {
print_section(format!("Compare result for: {} {}", test_type, input)); print_section(format!("Compare result for: {test_type} {input}"));
if let Some(pipe) = pipe_input { if let Some(pipe) = pipe_input {
println!("Pipe: {}", pipe); println!("Pipe: {pipe}");
} }
let mut discrepancies = Vec::new(); let mut discrepancies = Vec::new();
@ -369,16 +369,13 @@ pub fn compare_result(
); );
if should_panic { if should_panic {
print_end_with_status( print_end_with_status(
format!("Test failed and will panic for: {} {}", test_type, input), format!("Test failed and will panic for: {test_type} {input}"),
false, false,
); );
panic!("Test failed for: {} {}", test_type, input); panic!("Test failed for: {test_type} {input}");
} else { } else {
print_end_with_status( print_end_with_status(
format!( format!("Test completed with discrepancies for: {test_type} {input}"),
"Test completed with discrepancies for: {} {}",
test_type, input
),
false, false,
); );
} }

View file

@ -9,11 +9,11 @@ use console::{style, Style};
use similar::TextDiff; use similar::TextDiff;
pub fn print_section<S: fmt::Display>(s: S) { pub fn print_section<S: fmt::Display>(s: S) {
println!("{}", style(format!("=== {}", s)).bold()); println!("{}", style(format!("=== {s}")).bold());
} }
pub fn print_subsection<S: fmt::Display>(s: S) { pub fn print_subsection<S: fmt::Display>(s: S) {
println!("{}", style(format!("--- {}", s)).bright()); println!("{}", style(format!("--- {s}")).bright());
} }
pub fn print_test_begin<S: fmt::Display>(msg: S) { pub fn print_test_begin<S: fmt::Display>(msg: S) {
@ -33,9 +33,8 @@ pub fn print_end_with_status<S: fmt::Display>(msg: S, ok: bool) {
}; };
println!( println!(
"{} {} {}", "{} {ok} {}",
style("===").bold(), // Kind of gray style("===").bold(), // Kind of gray
ok,
style(msg).bold() style(msg).bold()
); );
} }

View file

@ -39,7 +39,7 @@ fn generate_expr(max_depth: u32) -> String {
// 90% chance to add an operator followed by a number // 90% chance to add an operator followed by a number
if rng.random_bool(0.9) { if rng.random_bool(0.9) {
let op = *ops.choose(&mut rng).unwrap(); let op = *ops.choose(&mut rng).unwrap();
expr.push_str(&format!(" {} ", op)); expr.push_str(&format!(" {op} "));
last_was_operator = true; last_was_operator = true;
} }
// 10% chance to add a random string (potentially invalid syntax) // 10% chance to add a random string (potentially invalid syntax)

View file

@ -138,28 +138,28 @@ fn generate_test_arg() -> String {
if test_arg.arg_type == ArgType::INTEGER { if test_arg.arg_type == ArgType::INTEGER {
arg.push_str(&format!( arg.push_str(&format!(
"{} {} {}", "{} {} {}",
&rng.random_range(-100..=100).to_string(), rng.random_range(-100..=100).to_string(),
test_arg.arg, test_arg.arg,
&rng.random_range(-100..=100).to_string() rng.random_range(-100..=100).to_string()
)); ));
} else if test_arg.arg_type == ArgType::STRINGSTRING { } else if test_arg.arg_type == ArgType::STRINGSTRING {
let random_str = generate_random_string(rng.random_range(1..=10)); let random_str = generate_random_string(rng.random_range(1..=10));
let random_str2 = generate_random_string(rng.random_range(1..=10)); let random_str2 = generate_random_string(rng.random_range(1..=10));
arg.push_str(&format!( arg.push_str(&format!(
"{} {} {}", "{random_str} {} {random_str2}",
&random_str, test_arg.arg, &random_str2 test_arg.arg,
)); ));
} else if test_arg.arg_type == ArgType::STRING { } else if test_arg.arg_type == ArgType::STRING {
let random_str = generate_random_string(rng.random_range(1..=10)); let random_str = generate_random_string(rng.random_range(1..=10));
arg.push_str(&format!("{} {}", test_arg.arg, &random_str)); arg.push_str(&format!("{} {random_str}", test_arg.arg));
} else if test_arg.arg_type == ArgType::FILEFILE { } else if test_arg.arg_type == ArgType::FILEFILE {
let path = generate_random_path(&mut rng); let path = generate_random_path(&mut rng);
let path2 = generate_random_path(&mut rng); let path2 = generate_random_path(&mut rng);
arg.push_str(&format!("{} {} {}", path, test_arg.arg, path2)); arg.push_str(&format!("{path} {} {path2}", test_arg.arg));
} else if test_arg.arg_type == ArgType::FILE { } else if test_arg.arg_type == ArgType::FILE {
let path = generate_random_path(&mut rng); let path = generate_random_path(&mut rng);
arg.push_str(&format!("{} {}", test_arg.arg, path)); arg.push_str(&format!("{} {path}", test_arg.arg));
} }
} }
4 => { 4 => {
@ -176,7 +176,7 @@ fn generate_test_arg() -> String {
.collect(); .collect();
if let Some(test_arg) = file_test_args.choose(&mut rng) { if let Some(test_arg) = file_test_args.choose(&mut rng) {
arg.push_str(&format!("{}{}", test_arg.arg, path)); arg.push_str(&format!("{}{path}", test_arg.arg));
} }
} }
} }

View file

@ -27,7 +27,7 @@ fn table(c: &mut Criterion) {
let mut group = c.benchmark_group("table"); let mut group = c.benchmark_group("table");
group.throughput(Throughput::Elements(INPUT_SIZE as _)); group.throughput(Throughput::Elements(INPUT_SIZE as _));
for a in inputs.take(10) { for a in inputs.take(10) {
let a_str = format!("{:?}", a); let a_str = format!("{a:?}");
group.bench_with_input(BenchmarkId::new("factor", &a_str), &a, |b, &a| { group.bench_with_input(BenchmarkId::new("factor", &a_str), &a, |b, &a| {
b.iter(|| { b.iter(|| {
for n in a { for n in a {
@ -46,18 +46,15 @@ fn check_personality() {
const PERSONALITY_PATH: &str = "/proc/self/personality"; const PERSONALITY_PATH: &str = "/proc/self/personality";
let p_string = fs::read_to_string(PERSONALITY_PATH) let p_string = fs::read_to_string(PERSONALITY_PATH)
.unwrap_or_else(|_| panic!("Couldn't read '{}'", PERSONALITY_PATH)) .unwrap_or_else(|_| panic!("Couldn't read '{PERSONALITY_PATH}'"))
.strip_suffix('\n') .strip_suffix('\n')
.unwrap() .unwrap()
.to_owned(); .to_owned();
let personality = u64::from_str_radix(&p_string, 16) let personality = u64::from_str_radix(&p_string, 16)
.unwrap_or_else(|_| panic!("Expected a hex value for personality, got '{:?}'", p_string)); .unwrap_or_else(|_| panic!("Expected a hex value for personality, got '{p_string:?}'"));
if personality & ADDR_NO_RANDOMIZE == 0 { if personality & ADDR_NO_RANDOMIZE == 0 {
eprintln!( eprintln!("WARNING: Benchmarking with ASLR enabled (personality is {personality:x}), results might not be reproducible.");
"WARNING: Benchmarking with ASLR enabled (personality is {:x}), results might not be reproducible.",
personality
);
} }
} }

View file

@ -596,7 +596,7 @@ fn get_file_context(path: impl AsRef<Path>) -> Result<Option<String>, selinux::e
let path = path.as_ref(); let path = path.as_ref();
match selinux::SecurityContext::of_path(path, false, false) { match selinux::SecurityContext::of_path(path, false, false) {
Err(r) => { Err(r) => {
println!("get_file_context failed: '{}': {}.", path.display(), &r); println!("get_file_context failed: '{}': {r}.", path.display());
Err(r) Err(r)
} }
@ -615,7 +615,7 @@ fn get_file_context(path: impl AsRef<Path>) -> Result<Option<String>, selinux::e
.next() .next()
.unwrap_or_default(); .unwrap_or_default();
let context = String::from_utf8(bytes.into()).unwrap_or_default(); let context = String::from_utf8(bytes.into()).unwrap_or_default();
println!("get_file_context: '{}' => '{}'.", context, path.display()); println!("get_file_context: '{context}' => '{}'.", path.display());
Ok(Some(context)) Ok(Some(context))
} }
} }
@ -632,13 +632,11 @@ fn set_file_context(path: impl AsRef<Path>, context: &str) -> Result<(), selinux
selinux::SecurityContext::from_c_str(&c_context, false).set_for_path(path, false, false); selinux::SecurityContext::from_c_str(&c_context, false).set_for_path(path, false, false);
if let Err(r) = &r { if let Err(r) = &r {
println!( println!(
"set_file_context failed: '{}' => '{}': {}.", "set_file_context failed: '{context}' => '{}': {r}.",
context,
path.display(), path.display(),
r
); );
} else { } else {
println!("set_file_context: '{}' => '{}'.", context, path.display()); println!("set_file_context: '{context}' => '{}'.", path.display());
} }
r r
} }

View file

@ -101,8 +101,7 @@ fn test_preserve_root() {
"./../../../../../../../../../../../../../../", "./../../../../../../../../../../../../../../",
] { ] {
let expected_error = format!( let expected_error = format!(
"chgrp: it is dangerous to operate recursively on '{}' (same as '/')\nchgrp: use --no-preserve-root to override this failsafe\n", "chgrp: it is dangerous to operate recursively on '{d}' (same as '/')\nchgrp: use --no-preserve-root to override this failsafe\n",
d,
); );
new_ucmd!() new_ucmd!()
.arg("--preserve-root") .arg("--preserve-root")

View file

@ -40,10 +40,9 @@ fn run_single_test(test: &TestCase, at: &AtPath, mut ucmd: UCommand) {
assert!( assert!(
perms == test.before, perms == test.before,
"{}: expected: {:o} got: {:o}", "{}: expected: {:o} got: {perms:o}",
"setting permissions on test files before actual test run failed", "setting permissions on test files before actual test run failed",
test.after, test.after,
perms
); );
for arg in &test.args { for arg in &test.args {
@ -61,10 +60,8 @@ fn run_single_test(test: &TestCase, at: &AtPath, mut ucmd: UCommand) {
let perms = at.metadata(TEST_FILE).permissions().mode(); let perms = at.metadata(TEST_FILE).permissions().mode();
assert!( assert!(
perms == test.after, perms == test.after,
"{}: expected: {:o} got: {:o}", "{ucmd}: expected: {:o} got: {perms:o}",
ucmd,
test.after, test.after,
perms
); );
} }
@ -243,8 +240,7 @@ fn test_chmod_umask_expected() {
let current_umask = uucore::mode::get_umask(); let current_umask = uucore::mode::get_umask();
assert_eq!( assert_eq!(
current_umask, 0o022, current_umask, 0o022,
"Unexpected umask value: expected 022 (octal), but got {:03o}. Please adjust the test environment.", "Unexpected umask value: expected 022 (octal), but got {current_umask:03o}. Please adjust the test environment.",
current_umask
); );
} }
@ -847,7 +843,7 @@ fn test_chmod_symlink_to_dangling_target_dereference() {
.arg("u+x") .arg("u+x")
.arg(symlink) .arg(symlink)
.fails() .fails()
.stderr_contains(format!("cannot operate on dangling symlink '{}'", symlink)); .stderr_contains(format!("cannot operate on dangling symlink '{symlink}'"));
} }
#[test] #[test]
@ -1019,8 +1015,7 @@ fn test_chmod_traverse_symlink_combo() {
let actual_target = at.metadata(target).permissions().mode(); let actual_target = at.metadata(target).permissions().mode();
assert_eq!( assert_eq!(
actual_target, expected_target_perms, actual_target, expected_target_perms,
"For flags {:?}, expected target perms = {:o}, got = {:o}", "For flags {flags:?}, expected target perms = {expected_target_perms:o}, got = {actual_target:o}",
flags, expected_target_perms, actual_target
); );
let actual_symlink = at let actual_symlink = at
@ -1029,8 +1024,7 @@ fn test_chmod_traverse_symlink_combo() {
.mode(); .mode();
assert_eq!( assert_eq!(
actual_symlink, expected_symlink_perms, actual_symlink, expected_symlink_perms,
"For flags {:?}, expected symlink perms = {:o}, got = {:o}", "For flags {flags:?}, expected symlink perms = {expected_symlink_perms:o}, got = {actual_symlink:o}",
flags, expected_symlink_perms, actual_symlink
); );
} }
} }

View file

@ -1722,7 +1722,7 @@ mod gnu_cksum_base64 {
if ["sysv", "bsd", "crc", "crc32b"].contains(&algo) { if ["sysv", "bsd", "crc", "crc32b"].contains(&algo) {
digest.to_string() digest.to_string()
} else { } else {
format!("{} (f) = {}", algo.to_uppercase(), digest).replace("BLAKE2B", "BLAKE2b") format!("{} (f) = {digest}", algo.to_uppercase()).replace("BLAKE2B", "BLAKE2b")
} }
} }

View file

@ -2040,31 +2040,31 @@ fn test_cp_deref_folder_to_folder() {
// No action as this test is disabled but kept in case we want to // No action as this test is disabled but kept in case we want to
// try to make it work in the future. // try to make it work in the future.
let a = Command::new("cmd").args(&["/C", "dir"]).output(); let a = Command::new("cmd").args(&["/C", "dir"]).output();
println!("output {:#?}", a); println!("output {a:#?}");
let a = Command::new("cmd") let a = Command::new("cmd")
.args(&["/C", "dir", &at.as_string()]) .args(&["/C", "dir", &at.as_string()])
.output(); .output();
println!("output {:#?}", a); println!("output {a:#?}");
let a = Command::new("cmd") let a = Command::new("cmd")
.args(&["/C", "dir", path_to_new_symlink.to_str().unwrap()]) .args(&["/C", "dir", path_to_new_symlink.to_str().unwrap()])
.output(); .output();
println!("output {:#?}", a); println!("output {a:#?}");
let path_to_new_symlink = at.subdir.join(TEST_COPY_FROM_FOLDER); let path_to_new_symlink = at.subdir.join(TEST_COPY_FROM_FOLDER);
let a = Command::new("cmd") let a = Command::new("cmd")
.args(&["/C", "dir", path_to_new_symlink.to_str().unwrap()]) .args(&["/C", "dir", path_to_new_symlink.to_str().unwrap()])
.output(); .output();
println!("output {:#?}", a); println!("output {a:#?}");
let path_to_new_symlink = at.subdir.join(TEST_COPY_TO_FOLDER_NEW); let path_to_new_symlink = at.subdir.join(TEST_COPY_TO_FOLDER_NEW);
let a = Command::new("cmd") let a = Command::new("cmd")
.args(&["/C", "dir", path_to_new_symlink.to_str().unwrap()]) .args(&["/C", "dir", path_to_new_symlink.to_str().unwrap()])
.output(); .output();
println!("output {:#?}", a); println!("output {a:#?}");
} }
let path_to_new_symlink = at let path_to_new_symlink = at
@ -2138,31 +2138,31 @@ fn test_cp_no_deref_folder_to_folder() {
// No action as this test is disabled but kept in case we want to // No action as this test is disabled but kept in case we want to
// try to make it work in the future. // try to make it work in the future.
let a = Command::new("cmd").args(&["/C", "dir"]).output(); let a = Command::new("cmd").args(&["/C", "dir"]).output();
println!("output {:#?}", a); println!("output {a:#?}");
let a = Command::new("cmd") let a = Command::new("cmd")
.args(&["/C", "dir", &at.as_string()]) .args(&["/C", "dir", &at.as_string()])
.output(); .output();
println!("output {:#?}", a); println!("output {a:#?}");
let a = Command::new("cmd") let a = Command::new("cmd")
.args(&["/C", "dir", path_to_new_symlink.to_str().unwrap()]) .args(&["/C", "dir", path_to_new_symlink.to_str().unwrap()])
.output(); .output();
println!("output {:#?}", a); println!("output {a:#?}");
let path_to_new_symlink = at.subdir.join(TEST_COPY_FROM_FOLDER); let path_to_new_symlink = at.subdir.join(TEST_COPY_FROM_FOLDER);
let a = Command::new("cmd") let a = Command::new("cmd")
.args(&["/C", "dir", path_to_new_symlink.to_str().unwrap()]) .args(&["/C", "dir", path_to_new_symlink.to_str().unwrap()])
.output(); .output();
println!("output {:#?}", a); println!("output {a:#?}");
let path_to_new_symlink = at.subdir.join(TEST_COPY_TO_FOLDER_NEW); let path_to_new_symlink = at.subdir.join(TEST_COPY_TO_FOLDER_NEW);
let a = Command::new("cmd") let a = Command::new("cmd")
.args(&["/C", "dir", path_to_new_symlink.to_str().unwrap()]) .args(&["/C", "dir", path_to_new_symlink.to_str().unwrap()])
.output(); .output();
println!("output {:#?}", a); println!("output {a:#?}");
} }
let path_to_new_symlink = at let path_to_new_symlink = at
@ -2552,7 +2552,7 @@ fn test_closes_file_descriptors() {
// For debugging purposes: // For debugging purposes:
for f in me.fd().unwrap() { for f in me.fd().unwrap() {
let fd = f.unwrap(); let fd = f.unwrap();
println!("{:?} {:?}", fd, fd.mode()); println!("{fd:?} {:?}", fd.mode());
} }
new_ucmd!() new_ucmd!()
@ -6093,9 +6093,7 @@ fn test_cp_preserve_xattr_readonly_source() {
let stdout = String::from_utf8_lossy(&getfattr_output.stdout); let stdout = String::from_utf8_lossy(&getfattr_output.stdout);
assert!( assert!(
stdout.contains(xattr_key), stdout.contains(xattr_key),
"Expected '{}' not found in getfattr output:\n{}", "Expected '{xattr_key}' not found in getfattr output:\n{stdout}"
xattr_key,
stdout
); );
at.set_readonly(source_file); at.set_readonly(source_file);

View file

@ -1457,7 +1457,7 @@ fn create_named_pipe_with_writer(path: &str, data: &str) -> std::process::Child
nix::unistd::mkfifo(path, nix::sys::stat::Mode::S_IRWXU).unwrap(); nix::unistd::mkfifo(path, nix::sys::stat::Mode::S_IRWXU).unwrap();
std::process::Command::new("sh") std::process::Command::new("sh")
.arg("-c") .arg("-c")
.arg(format!("printf '{}' > {path}", data)) .arg(format!("printf '{data}' > {path}"))
.spawn() .spawn()
.unwrap() .unwrap()
} }

View file

@ -51,7 +51,7 @@ macro_rules! fixture_path {
macro_rules! assert_fixture_exists { macro_rules! assert_fixture_exists {
($fname:expr) => {{ ($fname:expr) => {{
let fpath = fixture_path!($fname); let fpath = fixture_path!($fname);
assert!(fpath.exists(), "Fixture missing: {:?}", fpath); assert!(fpath.exists(), "Fixture missing: {fpath:?}");
}}; }};
} }
@ -59,7 +59,7 @@ macro_rules! assert_fixture_exists {
macro_rules! assert_fixture_not_exists { macro_rules! assert_fixture_not_exists {
($fname:expr) => {{ ($fname:expr) => {{
let fpath = PathBuf::from(format!("./fixtures/dd/{}", $fname)); let fpath = PathBuf::from(format!("./fixtures/dd/{}", $fname));
assert!(!fpath.exists(), "Fixture present: {:?}", fpath); assert!(!fpath.exists(), "Fixture present: {fpath:?}");
}}; }};
} }
@ -400,7 +400,7 @@ fn test_null_fullblock() {
#[test] #[test]
fn test_fullblock() { fn test_fullblock() {
let tname = "fullblock-from-urand"; let tname = "fullblock-from-urand";
let tmp_fn = format!("TESTFILE-{}.tmp", &tname); let tmp_fn = format!("TESTFILE-{tname}.tmp");
let exp_stats = vec![ let exp_stats = vec![
"1+0 records in\n", "1+0 records in\n",
"1+0 records out\n", "1+0 records out\n",
@ -458,11 +458,11 @@ fn test_zeros_to_stdout() {
fn test_oversized_bs_32_bit() { fn test_oversized_bs_32_bit() {
for bs_param in ["bs", "ibs", "obs", "cbs"] { for bs_param in ["bs", "ibs", "obs", "cbs"] {
new_ucmd!() new_ucmd!()
.args(&[format!("{}=5GB", bs_param)]) .args(&[format!("{bs_param}=5GB")])
.fails() .fails()
.no_stdout() .no_stdout()
.code_is(1) .code_is(1)
.stderr_is(format!("dd: {}=N cannot fit into memory\n", bs_param)); .stderr_is(format!("dd: {bs_param}=N cannot fit into memory\n"));
} }
} }
@ -493,7 +493,7 @@ fn test_ascii_10k_to_stdout() {
fn test_zeros_to_file() { fn test_zeros_to_file() {
let tname = "zero-256k"; let tname = "zero-256k";
let test_fn = format!("{tname}.txt"); let test_fn = format!("{tname}.txt");
let tmp_fn = format!("TESTFILE-{}.tmp", &tname); let tmp_fn = format!("TESTFILE-{tname}.tmp");
assert_fixture_exists!(test_fn); assert_fixture_exists!(test_fn);
let (fix, mut ucmd) = at_and_ucmd!(); let (fix, mut ucmd) = at_and_ucmd!();
@ -511,7 +511,7 @@ fn test_zeros_to_file() {
fn test_to_file_with_ibs_obs() { fn test_to_file_with_ibs_obs() {
let tname = "zero-256k"; let tname = "zero-256k";
let test_fn = format!("{tname}.txt"); let test_fn = format!("{tname}.txt");
let tmp_fn = format!("TESTFILE-{}.tmp", &tname); let tmp_fn = format!("TESTFILE-{tname}.tmp");
assert_fixture_exists!(test_fn); assert_fixture_exists!(test_fn);
let (fix, mut ucmd) = at_and_ucmd!(); let (fix, mut ucmd) = at_and_ucmd!();
@ -535,7 +535,7 @@ fn test_to_file_with_ibs_obs() {
fn test_ascii_521k_to_file() { fn test_ascii_521k_to_file() {
let tname = "ascii-521k"; let tname = "ascii-521k";
let input = build_ascii_block(512 * 1024); let input = build_ascii_block(512 * 1024);
let tmp_fn = format!("TESTFILE-{}.tmp", &tname); let tmp_fn = format!("TESTFILE-{tname}.tmp");
let (fix, mut ucmd) = at_and_ucmd!(); let (fix, mut ucmd) = at_and_ucmd!();
ucmd.args(&["status=none", &of!(tmp_fn)]) ucmd.args(&["status=none", &of!(tmp_fn)])
@ -560,7 +560,7 @@ fn test_ascii_521k_to_file() {
#[test] #[test]
fn test_ascii_5_gibi_to_file() { fn test_ascii_5_gibi_to_file() {
let tname = "ascii-5G"; let tname = "ascii-5G";
let tmp_fn = format!("TESTFILE-{}.tmp", &tname); let tmp_fn = format!("TESTFILE-{tname}.tmp");
let (fix, mut ucmd) = at_and_ucmd!(); let (fix, mut ucmd) = at_and_ucmd!();
ucmd.args(&[ ucmd.args(&[
@ -597,7 +597,7 @@ fn test_self_transfer() {
fn test_unicode_filenames() { fn test_unicode_filenames() {
let tname = "😎💚🦊"; let tname = "😎💚🦊";
let test_fn = format!("{tname}.txt"); let test_fn = format!("{tname}.txt");
let tmp_fn = format!("TESTFILE-{}.tmp", &tname); let tmp_fn = format!("TESTFILE-{tname}.tmp");
assert_fixture_exists!(test_fn); assert_fixture_exists!(test_fn);
let (fix, mut ucmd) = at_and_ucmd!(); let (fix, mut ucmd) = at_and_ucmd!();

View file

@ -585,11 +585,7 @@ fn test_du_h_precision() {
.arg("--apparent-size") .arg("--apparent-size")
.arg(&fpath) .arg(&fpath)
.succeeds() .succeeds()
.stdout_only(format!( .stdout_only(format!("{expected_output}\t{}\n", fpath.to_string_lossy()));
"{}\t{}\n",
expected_output,
&fpath.to_string_lossy()
));
} }
} }
@ -659,7 +655,7 @@ fn birth_supported() -> bool {
let ts = TestScenario::new(util_name!()); let ts = TestScenario::new(util_name!());
let m = match std::fs::metadata(&ts.fixtures.subdir) { let m = match std::fs::metadata(&ts.fixtures.subdir) {
Ok(m) => m, Ok(m) => m,
Err(e) => panic!("{}", e), Err(e) => panic!("{e}"),
}; };
m.created().is_ok() m.created().is_ok()
} }

View file

@ -435,7 +435,7 @@ fn test_all_but_last_bytes_large_file_piped() {
.len(); .len();
scene scene
.ucmd() .ucmd()
.args(&["-c", &format!("-{}", seq_19001_20000_file_length)]) .args(&["-c", &format!("-{seq_19001_20000_file_length}")])
.pipe_in_fixture(seq_20000_file_name) .pipe_in_fixture(seq_20000_file_name)
.succeeds() .succeeds()
.stdout_only_fixture(seq_19000_file_name); .stdout_only_fixture(seq_19000_file_name);
@ -695,7 +695,7 @@ fn test_validate_stdin_offset_bytes() {
.len(); .len();
scene scene
.ucmd() .ucmd()
.args(&["-c", &format!("-{}", seq_19001_20000_file_length)]) .args(&["-c", &format!("-{seq_19001_20000_file_length}")])
.set_stdin(file) .set_stdin(file)
.succeeds() .succeeds()
.stdout_only_fixture(seq_19000_file_name); .stdout_only_fixture(seq_19000_file_name);

View file

@ -1670,7 +1670,7 @@ fn test_target_file_ends_with_slash() {
let source = "source_file"; let source = "source_file";
let target_dir = "dir"; let target_dir = "dir";
let target_file = "dir/target_file"; let target_file = "dir/target_file";
let target_file_slash = format!("{}/", target_file); let target_file_slash = format!("{target_file}/");
at.touch(source); at.touch(source);
at.mkdir(target_dir); at.mkdir(target_dir);

View file

@ -429,7 +429,7 @@ fn test_symlink_implicit_target_dir() {
fn test_symlink_to_dir_2args() { fn test_symlink_to_dir_2args() {
let (at, mut ucmd) = at_and_ucmd!(); let (at, mut ucmd) = at_and_ucmd!();
let filename = "test_symlink_to_dir_2args_file"; let filename = "test_symlink_to_dir_2args_file";
let from_file = &format!("{}/{}", at.as_string(), filename); let from_file = &format!("{}/{filename}", at.as_string());
let to_dir = "test_symlink_to_dir_2args_to_dir"; let to_dir = "test_symlink_to_dir_2args_to_dir";
let to_file = &format!("{to_dir}/{filename}"); let to_file = &format!("{to_dir}/{filename}");
@ -493,7 +493,7 @@ fn test_symlink_relative_path() {
let (at, mut ucmd) = at_and_ucmd!(); let (at, mut ucmd) = at_and_ucmd!();
ucmd.args(&["-s", "-v", &p.to_string_lossy(), link]) ucmd.args(&["-s", "-v", &p.to_string_lossy(), link])
.succeeds() .succeeds()
.stdout_only(format!("'{}' -> '{}'\n", link, &p.to_string_lossy())); .stdout_only(format!("'{link}' -> '{}'\n", p.to_string_lossy()));
assert!(at.is_symlink(link)); assert!(at.is_symlink(link));
assert_eq!(at.resolve_link(link), p.to_string_lossy()); assert_eq!(at.resolve_link(link), p.to_string_lossy());
} }

View file

@ -2247,14 +2247,12 @@ mod quoting {
at.mkdir(dirname); at.mkdir(dirname);
let expected = format!( let expected = format!(
"{}:\n{}\n\n{}:\n", "{}:\n{regular_mode}\n\n{dir_mode}:\n",
match *qt_style { match *qt_style {
"shell-always" | "shell-escape-always" => "'.'", "shell-always" | "shell-escape-always" => "'.'",
"c" => "\".\"", "c" => "\".\"",
_ => ".", _ => ".",
}, },
regular_mode,
dir_mode
); );
scene scene
@ -4051,7 +4049,7 @@ fn test_ls_path() {
.succeeds() .succeeds()
.stdout_is(expected_stdout); .stdout_is(expected_stdout);
let abs_path = format!("{}/{}", at.as_string(), path); let abs_path = format!("{}/{path}", at.as_string());
let expected_stdout = format!("{abs_path}\n"); let expected_stdout = format!("{abs_path}\n");
scene scene
@ -4160,7 +4158,7 @@ fn test_ls_context1() {
} }
let file = "test_ls_context_file"; let file = "test_ls_context_file";
let expected = format!("unconfined_u:object_r:user_tmp_t:s0 {}\n", file); let expected = format!("unconfined_u:object_r:user_tmp_t:s0 {file}\n");
let (at, mut ucmd) = at_and_ucmd!(); let (at, mut ucmd) = at_and_ucmd!();
at.touch(file); at.touch(file);
ucmd.args(&["-Z", file]).succeeds().stdout_is(expected); ucmd.args(&["-Z", file]).succeeds().stdout_is(expected);
@ -4204,7 +4202,7 @@ fn test_ls_context_format() {
// "verbose", // "verbose",
"vertical", "vertical",
] { ] {
let format = format!("--format={}", word); let format = format!("--format={word}");
ts.ucmd() ts.ucmd()
.args(&["-Z", format.as_str(), "/"]) .args(&["-Z", format.as_str(), "/"])
.succeeds() .succeeds()

View file

@ -57,9 +57,8 @@ macro_rules! assert_suffix_matches_template {
let suffix = &$s[n - m..n]; let suffix = &$s[n - m..n];
assert!( assert!(
matches_template($template, suffix), matches_template($template, suffix),
"\"{}\" does not end with \"{}\"", "\"{}\" does not end with \"{suffix}\"",
$template, $template,
suffix
); );
}}; }};
} }
@ -780,13 +779,11 @@ fn test_nonexistent_tmpdir_env_var() {
let stderr = result.stderr_str(); let stderr = result.stderr_str();
assert!( assert!(
stderr.starts_with("mktemp: failed to create file via template"), stderr.starts_with("mktemp: failed to create file via template"),
"{}", "{stderr}",
stderr
); );
assert!( assert!(
stderr.ends_with("no\\such\\dir\\tmp.XXXXXXXXXX': No such file or directory\n"), stderr.ends_with("no\\such\\dir\\tmp.XXXXXXXXXX': No such file or directory\n"),
"{}", "{stderr}",
stderr
); );
} }
@ -799,13 +796,11 @@ fn test_nonexistent_tmpdir_env_var() {
let stderr = result.stderr_str(); let stderr = result.stderr_str();
assert!( assert!(
stderr.starts_with("mktemp: failed to create directory via template"), stderr.starts_with("mktemp: failed to create directory via template"),
"{}", "{stderr}",
stderr
); );
assert!( assert!(
stderr.ends_with("no\\such\\dir\\tmp.XXXXXXXXXX': No such file or directory\n"), stderr.ends_with("no\\such\\dir\\tmp.XXXXXXXXXX': No such file or directory\n"),
"{}", "{stderr}",
stderr
); );
} }
} }
@ -823,13 +818,11 @@ fn test_nonexistent_dir_prefix() {
let stderr = result.stderr_str(); let stderr = result.stderr_str();
assert!( assert!(
stderr.starts_with("mktemp: failed to create file via template"), stderr.starts_with("mktemp: failed to create file via template"),
"{}", "{stderr}",
stderr
); );
assert!( assert!(
stderr.ends_with("d\\XXX': No such file or directory\n"), stderr.ends_with("d\\XXX': No such file or directory\n"),
"{}", "{stderr}",
stderr
); );
} }
@ -844,13 +837,11 @@ fn test_nonexistent_dir_prefix() {
let stderr = result.stderr_str(); let stderr = result.stderr_str();
assert!( assert!(
stderr.starts_with("mktemp: failed to create directory via template"), stderr.starts_with("mktemp: failed to create directory via template"),
"{}", "{stderr}",
stderr
); );
assert!( assert!(
stderr.ends_with("d\\XXX': No such file or directory\n"), stderr.ends_with("d\\XXX': No such file or directory\n"),
"{}", "{stderr}",
stderr
); );
} }
} }

View file

@ -385,44 +385,44 @@ fn test_realpath_trailing_slash() {
.ucmd() .ucmd()
.arg("link_file") .arg("link_file")
.succeeds() .succeeds()
.stdout_contains(format!("{}file\n", std::path::MAIN_SEPARATOR)); .stdout_contains(format!("{MAIN_SEPARATOR}file\n"));
scene.ucmd().arg("link_file/").fails_with_code(1); scene.ucmd().arg("link_file/").fails_with_code(1);
scene scene
.ucmd() .ucmd()
.arg("link_dir") .arg("link_dir")
.succeeds() .succeeds()
.stdout_contains(format!("{}dir\n", std::path::MAIN_SEPARATOR)); .stdout_contains(format!("{MAIN_SEPARATOR}dir\n"));
scene scene
.ucmd() .ucmd()
.arg("link_dir/") .arg("link_dir/")
.succeeds() .succeeds()
.stdout_contains(format!("{}dir\n", std::path::MAIN_SEPARATOR)); .stdout_contains(format!("{MAIN_SEPARATOR}dir\n"));
scene scene
.ucmd() .ucmd()
.arg("link_no_dir") .arg("link_no_dir")
.succeeds() .succeeds()
.stdout_contains(format!("{}no_dir\n", std::path::MAIN_SEPARATOR)); .stdout_contains(format!("{MAIN_SEPARATOR}no_dir\n"));
scene scene
.ucmd() .ucmd()
.arg("link_no_dir/") .arg("link_no_dir/")
.succeeds() .succeeds()
.stdout_contains(format!("{}no_dir\n", std::path::MAIN_SEPARATOR)); .stdout_contains(format!("{MAIN_SEPARATOR}no_dir\n"));
scene scene
.ucmd() .ucmd()
.args(&["-e", "link_file"]) .args(&["-e", "link_file"])
.succeeds() .succeeds()
.stdout_contains(format!("{}file\n", std::path::MAIN_SEPARATOR)); .stdout_contains(format!("{MAIN_SEPARATOR}file\n"));
scene.ucmd().args(&["-e", "link_file/"]).fails_with_code(1); scene.ucmd().args(&["-e", "link_file/"]).fails_with_code(1);
scene scene
.ucmd() .ucmd()
.args(&["-e", "link_dir"]) .args(&["-e", "link_dir"])
.succeeds() .succeeds()
.stdout_contains(format!("{}dir\n", std::path::MAIN_SEPARATOR)); .stdout_contains(format!("{MAIN_SEPARATOR}dir\n"));
scene scene
.ucmd() .ucmd()
.args(&["-e", "link_dir/"]) .args(&["-e", "link_dir/"])
.succeeds() .succeeds()
.stdout_contains(format!("{}dir\n", std::path::MAIN_SEPARATOR)); .stdout_contains(format!("{MAIN_SEPARATOR}dir\n"));
scene.ucmd().args(&["-e", "link_no_dir"]).fails_with_code(1); scene.ucmd().args(&["-e", "link_no_dir"]).fails_with_code(1);
scene scene
.ucmd() .ucmd()
@ -432,32 +432,32 @@ fn test_realpath_trailing_slash() {
.ucmd() .ucmd()
.args(&["-m", "link_file"]) .args(&["-m", "link_file"])
.succeeds() .succeeds()
.stdout_contains(format!("{}file\n", std::path::MAIN_SEPARATOR)); .stdout_contains(format!("{MAIN_SEPARATOR}file\n"));
scene scene
.ucmd() .ucmd()
.args(&["-m", "link_file/"]) .args(&["-m", "link_file/"])
.succeeds() .succeeds()
.stdout_contains(format!("{}file\n", std::path::MAIN_SEPARATOR)); .stdout_contains(format!("{MAIN_SEPARATOR}file\n"));
scene scene
.ucmd() .ucmd()
.args(&["-m", "link_dir"]) .args(&["-m", "link_dir"])
.succeeds() .succeeds()
.stdout_contains(format!("{}dir\n", std::path::MAIN_SEPARATOR)); .stdout_contains(format!("{MAIN_SEPARATOR}dir\n"));
scene scene
.ucmd() .ucmd()
.args(&["-m", "link_dir/"]) .args(&["-m", "link_dir/"])
.succeeds() .succeeds()
.stdout_contains(format!("{}dir\n", std::path::MAIN_SEPARATOR)); .stdout_contains(format!("{MAIN_SEPARATOR}dir\n"));
scene scene
.ucmd() .ucmd()
.args(&["-m", "link_no_dir"]) .args(&["-m", "link_no_dir"])
.succeeds() .succeeds()
.stdout_contains(format!("{}no_dir\n", std::path::MAIN_SEPARATOR)); .stdout_contains(format!("{MAIN_SEPARATOR}no_dir\n"));
scene scene
.ucmd() .ucmd()
.args(&["-m", "link_no_dir/"]) .args(&["-m", "link_no_dir/"])
.succeeds() .succeeds()
.stdout_contains(format!("{}no_dir\n", std::path::MAIN_SEPARATOR)); .stdout_contains(format!("{MAIN_SEPARATOR}no_dir\n"));
} }
#[test] #[test]

View file

@ -333,8 +333,7 @@ fn test_rm_verbose_slash() {
at.touch(file_a); at.touch(file_a);
let file_a_normalized = &format!( let file_a_normalized = &format!(
"{}{}test_rm_verbose_slash_file_a", "{dir}{}test_rm_verbose_slash_file_a",
dir,
std::path::MAIN_SEPARATOR std::path::MAIN_SEPARATOR
); );

View file

@ -105,8 +105,7 @@ fn test_invalid_buffer_size() {
.arg("ext_sort.txt") .arg("ext_sort.txt")
.fails_with_code(2) .fails_with_code(2)
.stderr_only(format!( .stderr_only(format!(
"sort: --buffer-size argument '{}' too large\n", "sort: --buffer-size argument '{buffer_size}' too large\n"
buffer_size
)); ));
} }
} }

View file

@ -248,10 +248,7 @@ fn test_timestamp_format() {
assert_eq!( assert_eq!(
result, result,
format!("{expected}\n"), format!("{expected}\n"),
"Format '{}' failed.\nExpected: '{}'\nGot: '{}'", "Format '{format_str}' failed.\nExpected: '{expected}'\nGot: '{result}'",
format_str,
expected,
result,
); );
} }
} }

View file

@ -1801,12 +1801,12 @@ fn test_follow_name_remove() {
let expected_stdout = at.read(FOLLOW_NAME_SHORT_EXP); let expected_stdout = at.read(FOLLOW_NAME_SHORT_EXP);
let expected_stderr = [ let expected_stderr = [
format!( format!(
"{}: {}: No such file or directory\n{0}: no files remaining\n", "{}: {source_copy}: No such file or directory\n{0}: no files remaining\n",
ts.util_name, source_copy ts.util_name,
), ),
format!( format!(
"{}: {}: No such file or directory\n", "{}: {source_copy}: No such file or directory\n",
ts.util_name, source_copy ts.util_name,
), ),
]; ];
@ -1862,7 +1862,7 @@ fn test_follow_name_truncate1() {
let backup = "backup"; let backup = "backup";
let expected_stdout = at.read(FOLLOW_NAME_EXP); let expected_stdout = at.read(FOLLOW_NAME_EXP);
let expected_stderr = format!("{}: {}: file truncated\n", ts.util_name, source); let expected_stderr = format!("{}: {source}: file truncated\n", ts.util_name);
let args = ["--follow=name", source]; let args = ["--follow=name", source];
let mut p = ts.ucmd().args(&args).run_no_wait(); let mut p = ts.ucmd().args(&args).run_no_wait();
@ -1904,7 +1904,7 @@ fn test_follow_name_truncate2() {
at.touch(source); at.touch(source);
let expected_stdout = "x\nx\nx\nx\n"; let expected_stdout = "x\nx\nx\nx\n";
let expected_stderr = format!("{}: {}: file truncated\n", ts.util_name, source); let expected_stderr = format!("{}: {source}: file truncated\n", ts.util_name);
let args = ["--follow=name", source]; let args = ["--follow=name", source];
let mut p = ts.ucmd().args(&args).run_no_wait(); let mut p = ts.ucmd().args(&args).run_no_wait();
@ -2071,8 +2071,8 @@ fn test_follow_name_move_create1() {
#[cfg(target_os = "linux")] #[cfg(target_os = "linux")]
let expected_stderr = format!( let expected_stderr = format!(
"{}: {}: No such file or directory\n{0}: '{1}' has appeared; following new file\n", "{}: {source}: No such file or directory\n{0}: '{source}' has appeared; following new file\n",
ts.util_name, source ts.util_name,
); );
// NOTE: We are less strict if not on Linux (inotify backend). // NOTE: We are less strict if not on Linux (inotify backend).
@ -2081,7 +2081,7 @@ fn test_follow_name_move_create1() {
let expected_stdout = at.read(FOLLOW_NAME_SHORT_EXP); let expected_stdout = at.read(FOLLOW_NAME_SHORT_EXP);
#[cfg(not(target_os = "linux"))] #[cfg(not(target_os = "linux"))]
let expected_stderr = format!("{}: {}: No such file or directory\n", ts.util_name, source); let expected_stderr = format!("{}: {source}: No such file or directory\n", ts.util_name);
let delay = 500; let delay = 500;
let args = ["--follow=name", source]; let args = ["--follow=name", source];
@ -2205,10 +2205,10 @@ fn test_follow_name_move1() {
let expected_stdout = at.read(FOLLOW_NAME_SHORT_EXP); let expected_stdout = at.read(FOLLOW_NAME_SHORT_EXP);
let expected_stderr = [ let expected_stderr = [
format!("{}: {}: No such file or directory\n", ts.util_name, source), format!("{}: {source}: No such file or directory\n", ts.util_name),
format!( format!(
"{}: {}: No such file or directory\n{0}: no files remaining\n", "{}: {source}: No such file or directory\n{0}: no files remaining\n",
ts.util_name, source ts.util_name,
), ),
]; ];
@ -3558,15 +3558,11 @@ fn test_when_argument_file_is_non_existent_unix_socket_address_then_error() {
let expected_stderr = let expected_stderr =
format!("tail: cannot open '{socket}' for reading: No such device or address\n"); format!("tail: cannot open '{socket}' for reading: No such device or address\n");
#[cfg(target_os = "freebsd")] #[cfg(target_os = "freebsd")]
let expected_stderr = format!( let expected_stderr =
"tail: cannot open '{}' for reading: Operation not supported\n", format!("tail: cannot open '{socket}' for reading: Operation not supported\n",);
socket
);
#[cfg(target_os = "macos")] #[cfg(target_os = "macos")]
let expected_stderr = format!( let expected_stderr =
"tail: cannot open '{}' for reading: Operation not supported on socket\n", format!("tail: cannot open '{socket}' for reading: Operation not supported on socket\n",);
socket
);
ts.ucmd() ts.ucmd()
.arg(socket) .arg(socket)

View file

@ -243,8 +243,7 @@ mod linux_only {
); );
assert!( assert!(
result.stderr_str().contains(message), result.stderr_str().contains(message),
"Expected to see error message fragment {} in stderr, but did not.\n stderr = {}", "Expected to see error message fragment {message} in stderr, but did not.\n stderr = {}",
message,
std::str::from_utf8(result.stderr()).unwrap(), std::str::from_utf8(result.stderr()).unwrap(),
); );
} }
@ -274,9 +273,8 @@ mod linux_only {
let compare = at.read(name); let compare = at.read(name);
assert!( assert!(
compare.len() < contents.len(), compare.len() < contents.len(),
"Too many bytes ({}) written to {} (should be a short count from {})", "Too many bytes ({}) written to {name} (should be a short count from {})",
compare.len(), compare.len(),
name,
contents.len() contents.len()
); );
assert!( assert!(

View file

@ -824,8 +824,7 @@ fn test_touch_permission_denied_error_msg() {
let full_path = at.plus_as_string(path_str); let full_path = at.plus_as_string(path_str);
ucmd.arg(&full_path).fails().stderr_only(format!( ucmd.arg(&full_path).fails().stderr_only(format!(
"touch: cannot touch '{}': Permission denied\n", "touch: cannot touch '{full_path}': Permission denied\n",
&full_path
)); ));
} }

View file

@ -20,7 +20,7 @@ fn init() {
std::env::set_var("UUTESTS_BINARY_PATH", TESTS_BINARY); std::env::set_var("UUTESTS_BINARY_PATH", TESTS_BINARY);
} }
// Print for debugging // Print for debugging
eprintln!("Setting UUTESTS_BINARY_PATH={}", TESTS_BINARY); eprintln!("Setting UUTESTS_BINARY_PATH={TESTS_BINARY}");
} }
#[test] #[test]

View file

@ -85,7 +85,7 @@ macro_rules! unwrap_or_return {
match $e { match $e {
Ok(x) => x, Ok(x) => x,
Err(e) => { Err(e) => {
println!("test skipped: {}", e); println!("test skipped: {e}");
return; return;
} }
} }

View file

@ -216,8 +216,8 @@ impl CmdResult {
assert!( assert!(
predicate(&self.stdout), predicate(&self.stdout),
"Predicate for stdout as `bytes` evaluated to false.\nstdout='{:?}'\nstderr='{:?}'\n", "Predicate for stdout as `bytes` evaluated to false.\nstdout='{:?}'\nstderr='{:?}'\n",
&self.stdout, self.stdout,
&self.stderr self.stderr
); );
self self
} }
@ -246,8 +246,8 @@ impl CmdResult {
assert!( assert!(
predicate(&self.stderr), predicate(&self.stderr),
"Predicate for stderr as `bytes` evaluated to false.\nstdout='{:?}'\nstderr='{:?}'\n", "Predicate for stderr as `bytes` evaluated to false.\nstdout='{:?}'\nstderr='{:?}'\n",
&self.stdout, self.stdout,
&self.stderr self.stderr
); );
self self
} }
@ -306,8 +306,7 @@ impl CmdResult {
pub fn signal_is(&self, value: i32) -> &Self { pub fn signal_is(&self, value: i32) -> &Self {
let actual = self.signal().unwrap_or_else(|| { let actual = self.signal().unwrap_or_else(|| {
panic!( panic!(
"Expected process to be terminated by the '{}' signal, but exit status is: '{}'", "Expected process to be terminated by the '{value}' signal, but exit status is: '{}'",
value,
self.try_exit_status() self.try_exit_status()
.map_or("Not available".to_string(), |e| e.to_string()) .map_or("Not available".to_string(), |e| e.to_string())
) )
@ -337,8 +336,7 @@ impl CmdResult {
let actual = self.signal().unwrap_or_else(|| { let actual = self.signal().unwrap_or_else(|| {
panic!( panic!(
"Expected process to be terminated by the '{}' signal, but exit status is: '{}'", "Expected process to be terminated by the '{name}' signal, but exit status is: '{}'",
name,
self.try_exit_status() self.try_exit_status()
.map_or("Not available".to_string(), |e| e.to_string()) .map_or("Not available".to_string(), |e| e.to_string())
) )
@ -527,9 +525,8 @@ impl CmdResult {
pub fn stdout_is_any<T: AsRef<str> + std::fmt::Debug>(&self, expected: &[T]) -> &Self { pub fn stdout_is_any<T: AsRef<str> + std::fmt::Debug>(&self, expected: &[T]) -> &Self {
assert!( assert!(
expected.iter().any(|msg| self.stdout_str() == msg.as_ref()), expected.iter().any(|msg| self.stdout_str() == msg.as_ref()),
"stdout was {}\nExpected any of {:#?}", "stdout was {}\nExpected any of {expected:#?}",
self.stdout_str(), self.stdout_str(),
expected
); );
self self
} }
@ -1059,7 +1056,7 @@ impl AtPath {
pub fn make_file(&self, name: &str) -> File { pub fn make_file(&self, name: &str) -> File {
match File::create(self.plus(name)) { match File::create(self.plus(name)) {
Ok(f) => f, Ok(f) => f,
Err(e) => panic!("{}", e), Err(e) => panic!("{e}"),
} }
} }
@ -1121,7 +1118,7 @@ impl AtPath {
let original = original.replace('/', MAIN_SEPARATOR_STR); let original = original.replace('/', MAIN_SEPARATOR_STR);
log_info( log_info(
"symlink", "symlink",
format!("{},{}", &original, &self.plus_as_string(link)), format!("{original},{}", self.plus_as_string(link)),
); );
symlink_file(original, self.plus(link)).unwrap(); symlink_file(original, self.plus(link)).unwrap();
} }
@ -1143,7 +1140,7 @@ impl AtPath {
let original = original.replace('/', MAIN_SEPARATOR_STR); let original = original.replace('/', MAIN_SEPARATOR_STR);
log_info( log_info(
"symlink", "symlink",
format!("{},{}", &original, &self.plus_as_string(link)), format!("{original},{}", self.plus_as_string(link)),
); );
symlink_dir(original, self.plus(link)).unwrap(); symlink_dir(original, self.plus(link)).unwrap();
} }
@ -1176,14 +1173,14 @@ impl AtPath {
pub fn symlink_metadata(&self, path: &str) -> fs::Metadata { pub fn symlink_metadata(&self, path: &str) -> fs::Metadata {
match fs::symlink_metadata(self.plus(path)) { match fs::symlink_metadata(self.plus(path)) {
Ok(m) => m, Ok(m) => m,
Err(e) => panic!("{}", e), Err(e) => panic!("{e}"),
} }
} }
pub fn metadata(&self, path: &str) -> fs::Metadata { pub fn metadata(&self, path: &str) -> fs::Metadata {
match fs::metadata(self.plus(path)) { match fs::metadata(self.plus(path)) {
Ok(m) => m, Ok(m) => m,
Err(e) => panic!("{}", e), Err(e) => panic!("{e}"),
} }
} }
@ -1522,8 +1519,7 @@ impl UCommand {
pub fn pipe_in<T: Into<Vec<u8>>>(&mut self, input: T) -> &mut Self { pub fn pipe_in<T: Into<Vec<u8>>>(&mut self, input: T) -> &mut Self {
assert!( assert!(
self.bytes_into_stdin.is_none(), self.bytes_into_stdin.is_none(),
"{}", "{MULTIPLE_STDIN_MEANINGLESS}",
MULTIPLE_STDIN_MEANINGLESS
); );
self.set_stdin(Stdio::piped()); self.set_stdin(Stdio::piped());
self.bytes_into_stdin = Some(input.into()); self.bytes_into_stdin = Some(input.into());
@ -1894,7 +1890,7 @@ impl UCommand {
/// Spawns the command, feeds the stdin if any, and returns the /// Spawns the command, feeds the stdin if any, and returns the
/// child process immediately. /// child process immediately.
pub fn run_no_wait(&mut self) -> UChild { pub fn run_no_wait(&mut self) -> UChild {
assert!(!self.has_run, "{}", ALREADY_RUN); assert!(!self.has_run, "{ALREADY_RUN}");
self.has_run = true; self.has_run = true;
let (mut command, captured_stdout, captured_stderr, stdin_pty) = self.build(); let (mut command, captured_stdout, captured_stderr, stdin_pty) = self.build();
@ -2162,9 +2158,8 @@ impl<'a> UChildAssertion<'a> {
pub fn is_alive(&mut self) -> &mut Self { pub fn is_alive(&mut self) -> &mut Self {
match self.uchild.raw.try_wait() { match self.uchild.raw.try_wait() {
Ok(Some(status)) => panic!( Ok(Some(status)) => panic!(
"Assertion failed. Expected '{}' to be running but exited with status={}.\nstdout: {}\nstderr: {}", "Assertion failed. Expected '{}' to be running but exited with status={status}.\nstdout: {}\nstderr: {}",
uucore::util_name(), uucore::util_name(),
status,
self.uchild.stdout_all(), self.uchild.stdout_all(),
self.uchild.stderr_all() self.uchild.stderr_all()
), ),