path_abs 0.5.1

Ergonomic paths and files in rust.
Documentation
/* Copyright (c) 2018 Garrett Berg, vitiral@gmail.com
 *
 * Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
 * http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
 * http://opensource.org/licenses/MIT>, at your option. This file may not be
 * copied, modified, or distributed except according to those terms.
 */
//! Test assumptions about windows
#![cfg_attr(not(windows), allow(dead_code))]

#[macro_use]
extern crate pretty_assertions;

use std::path::Path;
use std::process::Command;

macro_rules! expect_err {
    [$s:expr] => {{
        let p = Path::new($s);
        match p.canonicalize() {
            Ok(p) => {
                panic!("Got {:?} when canonicalizing {:?}, expected err", p, $s);
            }
            Err(err) => {
                println!("EXPECTED ERR Canonicalizing {:?} => {}", $s, err);
            }
        }
    }}
}

macro_rules! expect_path {
    [$expect:expr, $s:expr] => {{
        let expect = Path::new($expect);
        let p = Path::new($s);
        match p.canonicalize() {
            Ok(p) => {
                assert_eq!(expect, p);
                println!("EXPECTED OK Canonicalizing {:?} => {:?}", $s, p);
            }
            Err(err) => {
                panic!("Got {:?} when canonicalizing {:?}, expected {:?}", err, $s, $expect);
            }
        }
    }}
}

fn share() -> String {
    // http://www.tech-recipes.com/rx/2953/windows_list_shared_drives_folders_command_line/
    if cfg!(windows) {
        let shared = Command::new("wmic")
            .arg("share")
            .arg("get")
            .arg("caption,name,path")
            .output()
            .expect("could not `wmic share`")
            .stdout;
        let out = ::std::str::from_utf8(&shared).unwrap().trim().to_string();
        println!("### SHARED:\n{}\n###", out);
        out
    } else {
        "NONE SHARED".to_string()
    }
}

fn hostname() -> String {
    let hostname = Command::new("hostname")
        .output()
        .expect("could not get hostname")
        .stdout;
    let out = ::std::str::from_utf8(&hostname).unwrap().trim().to_string();
    println!("HOSTNAME: {}", out);
    out
}

// TODO: doesn't work, can't get coms
// fn coms() -> String {
//     let coms = Command::new("mode")
//         .output()
//         .expect("could not get `mode` comports")
//         .stdout;
//     let out = ::std::str::from_utf8(&coms).unwrap().trim().to_string();
//     println!("### COMS:\n{}\n###", out);
//     out
// }

// TODO: I don't know what is even a valid verbatum path, and I can't list it directly
// ERROR: "The filename, directory name, or volume label syntax is incorrect."
//
// #[cfg_attr(windows, test)]
// fn canonicalize_verbatim() {
//     // CURRENT DIR: C:\projects\path-abs
//     println!("CURRENT DIR: {}", ::std::env::current_dir().unwrap().display());
//
//     let verbatim_root = Path::new(r"\\?\");
//     let list: Vec<_> = ::std::fs::read_dir(verbatim_root).unwrap().collect();
//     println!("LIST VERBATIM: {:?}", list);
//
//     // TODO:
//     // EXPECTED ERR Canonicalizing "\\\\?\\projects" => The system cannot find the file specified.
//     // (os error 2)
//     expect_err!(r"\\?\projects");
// }

#[cfg_attr(windows, test)]
fn canonicalize_verbatim_unc() {
    // HOSTNAME: APPVYR-WIN
    // ### SHARED:
    // Caption        Name    Path
    // Remote Admin   ADMIN$  C:\windows
    // Default share  C$      C:\
    // Remote IPC     IPC$
    // ###

    // TODO: Only works on Windows hosts with the default administrative
    // file shares enabled.
    let _ = share(); // FIXME: just printing for now
    let p = format!(r"\\?\UNC\{}\C$", hostname());
    expect_path!(&p, &p);
}

#[cfg_attr(windows, test)]
fn canonicalize_verbatim_disk() {
    let with_root = r"\\?\C:\";
    expect_path!(with_root, with_root);

    // EXPECTED ERR Canonicalizing "\\\\?\\C:" => Incorrect function. (os error 1)
    expect_err!(r"\\?\C:")
}

// TODO: can't list COMS
// #[cfg_attr(windows, test)]
// fn canonicalize_device_ns() {
//     // TODO: EXPECTED ERR Canonicalizing "\\\\.\\com1" => The system cannot find the file
//     // specified. (os error 2)
//     let _ = coms();
//     expect_err!(r"\\.\COM1")
// }

#[cfg_attr(windows, test)]
fn canonicalize_unc() {
    // TODO: Only works on Windows hosts with the default administrative
    // file shares enabled.
    let h = hostname();
    let unc = format!(r"\\{}\C$", h);
    let verbatim = format!(r"\\?\UNC\{}\C$", h);
    let result = Path::new(&unc).canonicalize().unwrap();
    assert_eq!(Path::new(&verbatim), result);
}

#[cfg_attr(windows, test)]
fn canonicalize_disk() {
    expect_path!(r"\\?\C:\", r"C:\")
}