[go: up one dir, main page]

macrotest 1.2.0

Test harness for macro expansion
Documentation
use diff::Result;

/// Prints the difference of the two snippets of expanded code.
pub(crate) fn message_different(name: &str, a: &[u8], b: &[u8]) {
    let a = String::from_utf8_lossy(a);
    let b = String::from_utf8_lossy(b);

    let changes = diff::lines(&a, &b);

    let mut lines_added = 0;
    let mut lines_removed = 0;
    for diff in &changes {
        match diff {
            Result::Left(_) => lines_added += 1,
            Result::Right(_) => lines_removed += 1,
            _ => (),
        }
    }

    eprintln!("{} - different!", name);

    eprintln!(
        "Diff [lines: {} added, {} removed]:",
        lines_added, lines_removed
    );
    eprintln!("--------------------------");

    for change in changes {
        match change {
            Result::Both(x, _) => {
                eprintln!(" {}", x);
            }
            Result::Left(x) => {
                eprintln!("+{}", x);
            }
            Result::Right(x) => {
                eprintln!("-{}", x);
            }
        }
    }

    eprintln!("--------------------------");
}

/// Prints an error from `cargo expand` invocation.
/// Makes some suggestions when possible.
pub(crate) fn message_expansion_error(msg: Vec<u8>) {
    let msg = String::from_utf8(msg);

    eprintln!("Expansion error:");
    if let Ok(msg) = msg {
        eprintln!("{}", msg);

        // No `cargo expand` subcommand installed, make a suggestion
        if msg.contains("no such subcommand: `expand`") {
            eprintln!("Perhaps, `cargo expand` is not installed?");
            eprintln!("Install it by running:");
            eprintln!();
            eprintln!("\tcargo install cargo-expand");
            eprintln!();
        }
    } else {
        eprintln!("<unprintable>");
    }
}