2015-11-16 05:25:01 +00:00
|
|
|
use common::util::*;
|
|
|
|
|
|
|
|
static UTIL_NAME: &'static str = "dirname";
|
2016-07-29 21:26:32 +00:00
|
|
|
fn new_ucmd() -> UCommand {
|
|
|
|
TestScenario::new(UTIL_NAME).ucmd()
|
|
|
|
}
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_path_with_trailing_slashes() {
|
|
|
|
let dir = "/root/alpha/beta/gamma/delta/epsilon/omega//";
|
2016-07-29 21:26:32 +00:00
|
|
|
let out = new_ucmd().arg(dir).run().stdout;
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
assert_eq!(out.trim_right(), "/root/alpha/beta/gamma/delta/epsilon");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_path_without_trailing_slashes() {
|
|
|
|
let dir = "/root/alpha/beta/gamma/delta/epsilon/omega";
|
2016-07-29 21:26:32 +00:00
|
|
|
let out = new_ucmd().arg(dir).run().stdout;
|
2015-11-16 05:25:01 +00:00
|
|
|
|
|
|
|
assert_eq!(out.trim_right(), "/root/alpha/beta/gamma/delta/epsilon");
|
|
|
|
}
|
2015-12-21 10:17:37 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_root() {
|
|
|
|
let dir = "/";
|
2016-07-29 21:26:32 +00:00
|
|
|
let out = new_ucmd().arg(dir).run().stdout;
|
2015-12-21 10:17:37 +00:00
|
|
|
|
|
|
|
assert_eq!(out.trim_right(), "/");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_pwd() {
|
|
|
|
let dir = ".";
|
2016-07-29 21:26:32 +00:00
|
|
|
let out = new_ucmd().arg(dir).run().stdout;
|
2015-12-21 10:17:37 +00:00
|
|
|
|
|
|
|
assert_eq!(out.trim_right(), ".");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_empty() {
|
|
|
|
let dir = "";
|
2016-07-29 21:26:32 +00:00
|
|
|
let out = new_ucmd().arg(dir).run().stdout;
|
2015-12-21 10:17:37 +00:00
|
|
|
|
|
|
|
assert_eq!(out.trim_right(), ".");
|
|
|
|
}
|